All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.bedrockagent.model.GetIngestionJobRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// 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 in the ingestion job.
     */
    public val dataSourceId: kotlin.String? = builder.dataSourceId
    /**
     * The unique identifier of the ingestion job.
     */
    public val ingestionJobId: kotlin.String? = builder.ingestionJobId
    /**
     * The unique identifier of the knowledge base for which the ingestion job applies.
     */
    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 in the ingestion job.
         */
        public var dataSourceId: kotlin.String? = null
        /**
         * The unique identifier of the ingestion job.
         */
        public var ingestionJobId: kotlin.String? = null
        /**
         * The unique identifier of the knowledge base for which the ingestion job applies.
         */
        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
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy