commonMain.aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetIngestionJobRequest private constructor(builder: Builder) {
/**
* The unique identifier of the data source for the data ingestion job you want to get information on.
*/
public val dataSourceId: kotlin.String? = builder.dataSourceId
/**
* The unique identifier of the data ingestion job you want to get information on.
*/
public val ingestionJobId: kotlin.String? = builder.ingestionJobId
/**
* The unique identifier of the knowledge base for the data ingestion job you want to get information on.
*/
public val knowledgeBaseId: kotlin.String? = builder.knowledgeBaseId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetIngestionJobRequest(")
append("dataSourceId=$dataSourceId,")
append("ingestionJobId=$ingestionJobId,")
append("knowledgeBaseId=$knowledgeBaseId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dataSourceId?.hashCode() ?: 0
result = 31 * result + (ingestionJobId?.hashCode() ?: 0)
result = 31 * result + (knowledgeBaseId?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as GetIngestionJobRequest
if (dataSourceId != other.dataSourceId) return false
if (ingestionJobId != other.ingestionJobId) return false
if (knowledgeBaseId != other.knowledgeBaseId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the data source for the data ingestion job you want to get information on.
*/
public var dataSourceId: kotlin.String? = null
/**
* The unique identifier of the data ingestion job you want to get information on.
*/
public var ingestionJobId: kotlin.String? = null
/**
* The unique identifier of the knowledge base for the data ingestion job you want to get information on.
*/
public var knowledgeBaseId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest) : this() {
this.dataSourceId = x.dataSourceId
this.ingestionJobId = x.ingestionJobId
this.knowledgeBaseId = x.knowledgeBaseId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest = GetIngestionJobRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}