commonMain.aws.sdk.kotlin.services.backup.model.CreateLogicallyAirGappedBackupVaultResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.backup.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class CreateLogicallyAirGappedBackupVaultResponse private constructor(builder: Builder) {
/**
* This is the ARN (Amazon Resource Name) of the vault being created.
*/
public val backupVaultArn: kotlin.String? = builder.backupVaultArn
/**
* The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created. They consist of lowercase letters, numbers, and hyphens.
*/
public val backupVaultName: kotlin.String? = builder.backupVaultName
/**
* The date and time when the vault was created.
*
* This value is in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*/
public val creationDate: aws.smithy.kotlin.runtime.time.Instant? = builder.creationDate
/**
* This is the current state of the vault.
*/
public val vaultState: aws.sdk.kotlin.services.backup.model.VaultState? = builder.vaultState
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.CreateLogicallyAirGappedBackupVaultResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateLogicallyAirGappedBackupVaultResponse(")
append("backupVaultArn=$backupVaultArn,")
append("backupVaultName=$backupVaultName,")
append("creationDate=$creationDate,")
append("vaultState=$vaultState")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = backupVaultArn?.hashCode() ?: 0
result = 31 * result + (backupVaultName?.hashCode() ?: 0)
result = 31 * result + (creationDate?.hashCode() ?: 0)
result = 31 * result + (vaultState?.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 CreateLogicallyAirGappedBackupVaultResponse
if (backupVaultArn != other.backupVaultArn) return false
if (backupVaultName != other.backupVaultName) return false
if (creationDate != other.creationDate) return false
if (vaultState != other.vaultState) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.CreateLogicallyAirGappedBackupVaultResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* This is the ARN (Amazon Resource Name) of the vault being created.
*/
public var backupVaultArn: kotlin.String? = null
/**
* The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created. They consist of lowercase letters, numbers, and hyphens.
*/
public var backupVaultName: kotlin.String? = null
/**
* The date and time when the vault was created.
*
* This value is in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*/
public var creationDate: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* This is the current state of the vault.
*/
public var vaultState: aws.sdk.kotlin.services.backup.model.VaultState? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.CreateLogicallyAirGappedBackupVaultResponse) : this() {
this.backupVaultArn = x.backupVaultArn
this.backupVaultName = x.backupVaultName
this.creationDate = x.creationDate
this.vaultState = x.vaultState
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.CreateLogicallyAirGappedBackupVaultResponse = CreateLogicallyAirGappedBackupVaultResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}