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

commonMain.aws.sdk.kotlin.services.iotfleetwise.model.GetEncryptionConfigurationResponse.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
import aws.smithy.kotlin.runtime.time.Instant

public class GetEncryptionConfigurationResponse private constructor(builder: Builder) {
    /**
     * The time when encryption was configured in seconds since epoch (January 1, 1970 at midnight UTC time).
     */
    public val creationTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationTime
    /**
     * 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 a 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 error message that describes why encryption settings couldn't be configured, if applicable.
     */
    public val errorMessage: kotlin.String? = builder.errorMessage
    /**
     * The ID of the KMS key that is used for encryption.
     */
    public val kmsKeyId: kotlin.String? = builder.kmsKeyId
    /**
     * The time when encryption was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
     */
    public val lastModificationTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModificationTime

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

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

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

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

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The time when encryption was configured in seconds since epoch (January 1, 1970 at midnight UTC time).
         */
        public var creationTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * 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 a 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 error message that describes why encryption settings couldn't be configured, if applicable.
         */
        public var errorMessage: kotlin.String? = null
        /**
         * The ID of the KMS key that is used for encryption.
         */
        public var kmsKeyId: kotlin.String? = null
        /**
         * The time when encryption was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
         */
        public var lastModificationTime: aws.smithy.kotlin.runtime.time.Instant? = null

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

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.iotfleetwise.model.GetEncryptionConfigurationResponse = GetEncryptionConfigurationResponse(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