commonMain.aws.sdk.kotlin.services.backup.model.CreateBackupVaultResponse.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 CreateBackupVaultResponse private constructor(builder: Builder) {
/**
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, `arn:aws:backup:us-east-1:123456789012:vault:aBackupVault`.
*/
public val backupVaultArn: kotlin.String? = builder.backupVaultArn
/**
* The name of a logical container where backups are stored. 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 a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of `CreationDate` is 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
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.CreateBackupVaultResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateBackupVaultResponse(")
append("backupVaultArn=$backupVaultArn,")
append("backupVaultName=$backupVaultName,")
append("creationDate=$creationDate")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = backupVaultArn?.hashCode() ?: 0
result = 31 * result + (backupVaultName?.hashCode() ?: 0)
result = 31 * result + (creationDate?.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 CreateBackupVaultResponse
if (backupVaultArn != other.backupVaultArn) return false
if (backupVaultName != other.backupVaultName) return false
if (creationDate != other.creationDate) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.CreateBackupVaultResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, `arn:aws:backup:us-east-1:123456789012:vault:aBackupVault`.
*/
public var backupVaultArn: kotlin.String? = null
/**
* The name of a logical container where backups are stored. 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 a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of `CreationDate` is 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
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.CreateBackupVaultResponse) : this() {
this.backupVaultArn = x.backupVaultArn
this.backupVaultName = x.backupVaultName
this.creationDate = x.creationDate
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.CreateBackupVaultResponse = CreateBackupVaultResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}