commonMain.aws.sdk.kotlin.services.backup.model.GetBackupSelectionRequest.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
public class GetBackupSelectionRequest private constructor(builder: Builder) {
/**
* Uniquely identifies a backup plan.
*/
public val backupPlanId: kotlin.String? = builder.backupPlanId
/**
* 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.GetBackupSelectionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetBackupSelectionRequest(")
append("backupPlanId=$backupPlanId,")
append("selectionId=$selectionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = backupPlanId?.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 GetBackupSelectionRequest
if (backupPlanId != other.backupPlanId) return false
if (selectionId != other.selectionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.GetBackupSelectionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Uniquely identifies a backup plan.
*/
public var backupPlanId: 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.GetBackupSelectionRequest) : this() {
this.backupPlanId = x.backupPlanId
this.selectionId = x.selectionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.GetBackupSelectionRequest = GetBackupSelectionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}