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

commonMain.aws.sdk.kotlin.services.dynamodb.model.UpdateContributorInsightsResponse.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.dynamodb.model



public class UpdateContributorInsightsResponse private constructor(builder: Builder) {
    /**
     * The status of contributor insights
     */
    public val contributorInsightsStatus: aws.sdk.kotlin.services.dynamodb.model.ContributorInsightsStatus? = builder.contributorInsightsStatus
    /**
     * The name of the global secondary index, if applicable.
     */
    public val indexName: kotlin.String? = builder.indexName
    /**
     * The name of the table.
     */
    public val tableName: kotlin.String? = builder.tableName

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.dynamodb.model.UpdateContributorInsightsResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UpdateContributorInsightsResponse(")
        append("contributorInsightsStatus=$contributorInsightsStatus,")
        append("indexName=$indexName,")
        append("tableName=$tableName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = contributorInsightsStatus?.hashCode() ?: 0
        result = 31 * result + (indexName?.hashCode() ?: 0)
        result = 31 * result + (tableName?.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 UpdateContributorInsightsResponse

        if (contributorInsightsStatus != other.contributorInsightsStatus) return false
        if (indexName != other.indexName) return false
        if (tableName != other.tableName) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dynamodb.model.UpdateContributorInsightsResponse = Builder(this).apply(block).build()

    public class Builder {
        /**
         * The status of contributor insights
         */
        public var contributorInsightsStatus: aws.sdk.kotlin.services.dynamodb.model.ContributorInsightsStatus? = null
        /**
         * The name of the global secondary index, if applicable.
         */
        public var indexName: kotlin.String? = null
        /**
         * The name of the table.
         */
        public var tableName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.dynamodb.model.UpdateContributorInsightsResponse) : this() {
            this.contributorInsightsStatus = x.contributorInsightsStatus
            this.indexName = x.indexName
            this.tableName = x.tableName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.dynamodb.model.UpdateContributorInsightsResponse = UpdateContributorInsightsResponse(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy