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

commonMain.aws.sdk.kotlin.services.cloudfront.model.CreateFieldLevelEncryptionConfigRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.cloudfront.model

import aws.smithy.kotlin.runtime.SdkDsl

public class CreateFieldLevelEncryptionConfigRequest private constructor(builder: Builder) {
    /**
     * The request to create a new field-level encryption configuration.
     */
    public val fieldLevelEncryptionConfig: aws.sdk.kotlin.services.cloudfront.model.FieldLevelEncryptionConfig? = builder.fieldLevelEncryptionConfig

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

    override fun toString(): kotlin.String = buildString {
        append("CreateFieldLevelEncryptionConfigRequest(")
        append("fieldLevelEncryptionConfig=$fieldLevelEncryptionConfig")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = fieldLevelEncryptionConfig?.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 CreateFieldLevelEncryptionConfigRequest

        if (fieldLevelEncryptionConfig != other.fieldLevelEncryptionConfig) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The request to create a new field-level encryption configuration.
         */
        public var fieldLevelEncryptionConfig: aws.sdk.kotlin.services.cloudfront.model.FieldLevelEncryptionConfig? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cloudfront.model.CreateFieldLevelEncryptionConfigRequest) : this() {
            this.fieldLevelEncryptionConfig = x.fieldLevelEncryptionConfig
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.cloudfront.model.FieldLevelEncryptionConfig] inside the given [block]
         */
        public fun fieldLevelEncryptionConfig(block: aws.sdk.kotlin.services.cloudfront.model.FieldLevelEncryptionConfig.Builder.() -> kotlin.Unit) {
            this.fieldLevelEncryptionConfig = aws.sdk.kotlin.services.cloudfront.model.FieldLevelEncryptionConfig.invoke(block)
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy