commonMain.aws.sdk.kotlin.services.backup.model.GetBackupSelectionResponse.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 GetBackupSelectionResponse private constructor(builder: Builder) {
/**
* Uniquely identifies a backup plan.
*/
public val backupPlanId: kotlin.String? = builder.backupPlanId
/**
* Specifies the body of a request to assign a set of resources to a backup plan.
*/
public val backupSelection: aws.sdk.kotlin.services.backup.model.BackupSelection? = builder.backupSelection
/**
* The date and time a backup selection 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
/**
* A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.
*/
public val creatorRequestId: kotlin.String? = builder.creatorRequestId
/**
* Uniquely identifies the body of a request to assign a set of resources to a backup plan.
*/
public val selectionId: kotlin.String? = builder.selectionId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.GetBackupSelectionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetBackupSelectionResponse(")
append("backupPlanId=$backupPlanId,")
append("backupSelection=$backupSelection,")
append("creationDate=$creationDate,")
append("creatorRequestId=$creatorRequestId,")
append("selectionId=$selectionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = backupPlanId?.hashCode() ?: 0
result = 31 * result + (backupSelection?.hashCode() ?: 0)
result = 31 * result + (creationDate?.hashCode() ?: 0)
result = 31 * result + (creatorRequestId?.hashCode() ?: 0)
result = 31 * result + (selectionId?.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 GetBackupSelectionResponse
if (backupPlanId != other.backupPlanId) return false
if (backupSelection != other.backupSelection) return false
if (creationDate != other.creationDate) return false
if (creatorRequestId != other.creatorRequestId) return false
if (selectionId != other.selectionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.GetBackupSelectionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Uniquely identifies a backup plan.
*/
public var backupPlanId: kotlin.String? = null
/**
* Specifies the body of a request to assign a set of resources to a backup plan.
*/
public var backupSelection: aws.sdk.kotlin.services.backup.model.BackupSelection? = null
/**
* The date and time a backup selection 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
/**
* A unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.
*/
public var creatorRequestId: kotlin.String? = null
/**
* Uniquely identifies the body of a request to assign a set of resources to a backup plan.
*/
public var selectionId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.GetBackupSelectionResponse) : this() {
this.backupPlanId = x.backupPlanId
this.backupSelection = x.backupSelection
this.creationDate = x.creationDate
this.creatorRequestId = x.creatorRequestId
this.selectionId = x.selectionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.GetBackupSelectionResponse = GetBackupSelectionResponse(this)
/**
* construct an [aws.sdk.kotlin.services.backup.model.BackupSelection] inside the given [block]
*/
public fun backupSelection(block: aws.sdk.kotlin.services.backup.model.BackupSelection.Builder.() -> kotlin.Unit) {
this.backupSelection = aws.sdk.kotlin.services.backup.model.BackupSelection.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}