commonMain.aws.sdk.kotlin.services.resiliencehub.model.DeleteAppAssessmentResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resiliencehub-jvm Show documentation
Show all versions of resiliencehub-jvm Show documentation
The AWS SDK for Kotlin client for resiliencehub
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.resiliencehub.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteAppAssessmentResponse private constructor(builder: Builder) {
/**
* Amazon Resource Name (ARN) of the assessment. The format for this ARN is: arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`. For more information about ARNs, see [ Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *Amazon Web Services General Reference* guide.
*/
public val assessmentArn: kotlin.String = requireNotNull(builder.assessmentArn) { "A non-null value must be provided for assessmentArn" }
/**
* The current status of the assessment for the resiliency policy.
*/
public val assessmentStatus: aws.sdk.kotlin.services.resiliencehub.model.AssessmentStatus = requireNotNull(builder.assessmentStatus) { "A non-null value must be provided for assessmentStatus" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.DeleteAppAssessmentResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteAppAssessmentResponse(")
append("assessmentArn=$assessmentArn,")
append("assessmentStatus=$assessmentStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = assessmentArn.hashCode()
result = 31 * result + (assessmentStatus.hashCode())
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 DeleteAppAssessmentResponse
if (assessmentArn != other.assessmentArn) return false
if (assessmentStatus != other.assessmentStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.DeleteAppAssessmentResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Amazon Resource Name (ARN) of the assessment. The format for this ARN is: arn:`partition`:resiliencehub:`region`:`account`:app-assessment/`app-id`. For more information about ARNs, see [ Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *Amazon Web Services General Reference* guide.
*/
public var assessmentArn: kotlin.String? = null
/**
* The current status of the assessment for the resiliency policy.
*/
public var assessmentStatus: aws.sdk.kotlin.services.resiliencehub.model.AssessmentStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.DeleteAppAssessmentResponse) : this() {
this.assessmentArn = x.assessmentArn
this.assessmentStatus = x.assessmentStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.DeleteAppAssessmentResponse = DeleteAppAssessmentResponse(this)
internal fun correctErrors(): Builder {
if (assessmentArn == null) assessmentArn = ""
if (assessmentStatus == null) assessmentStatus = AssessmentStatus.SdkUnknown("no value provided")
return this
}
}
}