commonMain.aws.sdk.kotlin.services.backup.model.GetRestoreJobMetadataResponse.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 GetRestoreJobMetadataResponse private constructor(builder: Builder) {
/**
* This contains the metadata of the specified backup job.
*/
public val metadata: Map? = builder.metadata
/**
* This is a unique identifier of a restore job within Backup.
*/
public val restoreJobId: kotlin.String? = builder.restoreJobId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.GetRestoreJobMetadataResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetRestoreJobMetadataResponse(")
append("metadata=*** Sensitive Data Redacted ***,")
append("restoreJobId=$restoreJobId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = metadata?.hashCode() ?: 0
result = 31 * result + (restoreJobId?.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 GetRestoreJobMetadataResponse
if (metadata != other.metadata) return false
if (restoreJobId != other.restoreJobId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.GetRestoreJobMetadataResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* This contains the metadata of the specified backup job.
*/
public var metadata: Map? = null
/**
* This is a unique identifier of a restore job within Backup.
*/
public var restoreJobId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.GetRestoreJobMetadataResponse) : this() {
this.metadata = x.metadata
this.restoreJobId = x.restoreJobId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.GetRestoreJobMetadataResponse = GetRestoreJobMetadataResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}