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

commonMain.aws.sdk.kotlin.services.redshift.model.DescribeDataSharesForConsumerRequest.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 DescribeDataSharesForConsumerRequest private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the consumer namespace that returns in the list of datashares.
     */
    public val consumerArn: kotlin.String? = builder.consumerArn
    /**
     * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForConsumer request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
     */
    public val marker: kotlin.String? = builder.marker
    /**
     * The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
     */
    public val maxRecords: kotlin.Int? = builder.maxRecords
    /**
     * An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon Redshift returns the list of datashares that have the specified status.
     */
    public val status: aws.sdk.kotlin.services.redshift.model.DataShareStatusForConsumer? = builder.status

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeDataSharesForConsumerRequest(")
        append("consumerArn=$consumerArn,")
        append("marker=$marker,")
        append("maxRecords=$maxRecords,")
        append("status=$status")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = consumerArn?.hashCode() ?: 0
        result = 31 * result + (marker?.hashCode() ?: 0)
        result = 31 * result + (maxRecords ?: 0)
        result = 31 * result + (status?.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 DescribeDataSharesForConsumerRequest

        if (consumerArn != other.consumerArn) return false
        if (marker != other.marker) return false
        if (maxRecords != other.maxRecords) return false
        if (status != other.status) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the consumer namespace that returns in the list of datashares.
         */
        public var consumerArn: kotlin.String? = null
        /**
         * An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeDataSharesForConsumer request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
         */
        public var marker: kotlin.String? = null
        /**
         * The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
         */
        public var maxRecords: kotlin.Int? = null
        /**
         * An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon Redshift returns the list of datashares that have the specified status.
         */
        public var status: aws.sdk.kotlin.services.redshift.model.DataShareStatusForConsumer? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeDataSharesForConsumerRequest) : this() {
            this.consumerArn = x.consumerArn
            this.marker = x.marker
            this.maxRecords = x.maxRecords
            this.status = x.status
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy