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

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

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

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



/**
 * Represents a Contributor Insights summary entry.
 */
public class ContributorInsightsSummary private constructor(builder: Builder) {
    /**
     * Describes the current status for contributor insights for the given table and index, if applicable.
     */
    public val contributorInsightsStatus: aws.sdk.kotlin.services.dynamodb.model.ContributorInsightsStatus? = builder.contributorInsightsStatus
    /**
     * Name of the index associated with the summary, if any.
     */
    public val indexName: kotlin.String? = builder.indexName
    /**
     * Name of the table associated with the summary.
     */
    public val tableName: kotlin.String? = builder.tableName

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

    override fun toString(): kotlin.String = buildString {
        append("ContributorInsightsSummary(")
        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 ContributorInsightsSummary

        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.ContributorInsightsSummary = Builder(this).apply(block).build()

    public class Builder {
        /**
         * Describes the current status for contributor insights for the given table and index, if applicable.
         */
        public var contributorInsightsStatus: aws.sdk.kotlin.services.dynamodb.model.ContributorInsightsStatus? = null
        /**
         * Name of the index associated with the summary, if any.
         */
        public var indexName: kotlin.String? = null
        /**
         * Name of the table associated with the summary.
         */
        public var tableName: kotlin.String? = null

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy