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

commonMain.aws.sdk.kotlin.services.redshift.model.RejectDataShareResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.redshift.model

import aws.smithy.kotlin.runtime.SdkDsl

public class RejectDataShareResponse private constructor(builder: Builder) {
    /**
     * A value that specifies whether the datashare can be shared to a publicly accessible cluster.
     */
    public val allowPubliclyAccessibleConsumers: kotlin.Boolean? = builder.allowPubliclyAccessibleConsumers
    /**
     * The Amazon Resource Name (ARN) of the datashare that the consumer is to use.
     */
    public val dataShareArn: kotlin.String? = builder.dataShareArn
    /**
     * A value that specifies when the datashare has an association between producer and data consumers.
     */
    public val dataShareAssociations: List? = builder.dataShareAssociations
    /**
     * The identifier of a datashare to show its managing entity.
     */
    public val managedBy: kotlin.String? = builder.managedBy
    /**
     * The Amazon Resource Name (ARN) of the producer namespace.
     */
    public val producerArn: kotlin.String? = builder.producerArn

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

    override fun toString(): kotlin.String = buildString {
        append("RejectDataShareResponse(")
        append("allowPubliclyAccessibleConsumers=$allowPubliclyAccessibleConsumers,")
        append("dataShareArn=$dataShareArn,")
        append("dataShareAssociations=$dataShareAssociations,")
        append("managedBy=$managedBy,")
        append("producerArn=$producerArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = allowPubliclyAccessibleConsumers?.hashCode() ?: 0
        result = 31 * result + (dataShareArn?.hashCode() ?: 0)
        result = 31 * result + (dataShareAssociations?.hashCode() ?: 0)
        result = 31 * result + (managedBy?.hashCode() ?: 0)
        result = 31 * result + (producerArn?.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 RejectDataShareResponse

        if (allowPubliclyAccessibleConsumers != other.allowPubliclyAccessibleConsumers) return false
        if (dataShareArn != other.dataShareArn) return false
        if (dataShareAssociations != other.dataShareAssociations) return false
        if (managedBy != other.managedBy) return false
        if (producerArn != other.producerArn) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A value that specifies whether the datashare can be shared to a publicly accessible cluster.
         */
        public var allowPubliclyAccessibleConsumers: kotlin.Boolean? = null
        /**
         * The Amazon Resource Name (ARN) of the datashare that the consumer is to use.
         */
        public var dataShareArn: kotlin.String? = null
        /**
         * A value that specifies when the datashare has an association between producer and data consumers.
         */
        public var dataShareAssociations: List? = null
        /**
         * The identifier of a datashare to show its managing entity.
         */
        public var managedBy: kotlin.String? = null
        /**
         * The Amazon Resource Name (ARN) of the producer namespace.
         */
        public var producerArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.RejectDataShareResponse) : this() {
            this.allowPubliclyAccessibleConsumers = x.allowPubliclyAccessibleConsumers
            this.dataShareArn = x.dataShareArn
            this.dataShareAssociations = x.dataShareAssociations
            this.managedBy = x.managedBy
            this.producerArn = x.producerArn
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy