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

commonMain.aws.sdk.kotlin.services.firehose.model.SnowflakeRoleConfiguration.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.firehose.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Optionally configure a Snowflake role. Otherwise the default user role will be used.
 */
public class SnowflakeRoleConfiguration private constructor(builder: Builder) {
    /**
     * Enable Snowflake role
     */
    public val enabled: kotlin.Boolean? = builder.enabled
    /**
     * The Snowflake role you wish to configure
     */
    public val snowflakeRole: kotlin.String? = builder.snowflakeRole

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

    override fun toString(): kotlin.String = buildString {
        append("SnowflakeRoleConfiguration(")
        append("enabled=$enabled,")
        append("snowflakeRole=*** Sensitive Data Redacted ***")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = enabled?.hashCode() ?: 0
        result = 31 * result + (snowflakeRole?.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 SnowflakeRoleConfiguration

        if (enabled != other.enabled) return false
        if (snowflakeRole != other.snowflakeRole) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Enable Snowflake role
         */
        public var enabled: kotlin.Boolean? = null
        /**
         * The Snowflake role you wish to configure
         */
        public var snowflakeRole: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.firehose.model.SnowflakeRoleConfiguration) : this() {
            this.enabled = x.enabled
            this.snowflakeRole = x.snowflakeRole
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy