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

commonMain.aws.sdk.kotlin.services.iotfleetwise.model.PutEncryptionConfigurationResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.iotfleetwise.model

import aws.smithy.kotlin.runtime.SdkDsl

public class PutEncryptionConfigurationResponse private constructor(builder: Builder) {
    /**
     * The encryption status.
     */
    public val encryptionStatus: aws.sdk.kotlin.services.iotfleetwise.model.EncryptionStatus = requireNotNull(builder.encryptionStatus) { "A non-null value must be provided for encryptionStatus" }
    /**
     * The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use an KMS key that you own and manage. Set to `FLEETWISE_DEFAULT_ENCRYPTION` to use an Amazon Web Services managed key that is owned by the Amazon Web Services IoT FleetWise service account.
     */
    public val encryptionType: aws.sdk.kotlin.services.iotfleetwise.model.EncryptionType = requireNotNull(builder.encryptionType) { "A non-null value must be provided for encryptionType" }
    /**
     * The ID of the KMS key that is used for encryption.
     */
    public val kmsKeyId: kotlin.String? = builder.kmsKeyId

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

    override fun toString(): kotlin.String = buildString {
        append("PutEncryptionConfigurationResponse(")
        append("encryptionStatus=$encryptionStatus,")
        append("encryptionType=$encryptionType,")
        append("kmsKeyId=$kmsKeyId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = encryptionStatus.hashCode()
        result = 31 * result + (encryptionType.hashCode())
        result = 31 * result + (kmsKeyId?.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 PutEncryptionConfigurationResponse

        if (encryptionStatus != other.encryptionStatus) return false
        if (encryptionType != other.encryptionType) return false
        if (kmsKeyId != other.kmsKeyId) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The encryption status.
         */
        public var encryptionStatus: aws.sdk.kotlin.services.iotfleetwise.model.EncryptionStatus? = null
        /**
         * The type of encryption. Set to `KMS_BASED_ENCRYPTION` to use an KMS key that you own and manage. Set to `FLEETWISE_DEFAULT_ENCRYPTION` to use an Amazon Web Services managed key that is owned by the Amazon Web Services IoT FleetWise service account.
         */
        public var encryptionType: aws.sdk.kotlin.services.iotfleetwise.model.EncryptionType? = null
        /**
         * The ID of the KMS key that is used for encryption.
         */
        public var kmsKeyId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.PutEncryptionConfigurationResponse) : this() {
            this.encryptionStatus = x.encryptionStatus
            this.encryptionType = x.encryptionType
            this.kmsKeyId = x.kmsKeyId
        }

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

        internal fun correctErrors(): Builder {
            if (encryptionStatus == null) encryptionStatus = EncryptionStatus.SdkUnknown("no value provided")
            if (encryptionType == null) encryptionType = EncryptionType.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy