commonMain.aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateResponse.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
public class DeleteRecommendationTemplateResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) for a recommendation template.
*/
public val recommendationTemplateArn: kotlin.String = requireNotNull(builder.recommendationTemplateArn) { "A non-null value must be provided for recommendationTemplateArn" }
/**
* Status of the action.
*/
public val status: aws.sdk.kotlin.services.resiliencehub.model.RecommendationTemplateStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteRecommendationTemplateResponse(")
append("recommendationTemplateArn=$recommendationTemplateArn,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = recommendationTemplateArn.hashCode()
result = 31 * result + (status.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 DeleteRecommendationTemplateResponse
if (recommendationTemplateArn != other.recommendationTemplateArn) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The Amazon Resource Name (ARN) for a recommendation template.
*/
public var recommendationTemplateArn: kotlin.String? = null
/**
* Status of the action.
*/
public var status: aws.sdk.kotlin.services.resiliencehub.model.RecommendationTemplateStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateResponse) : this() {
this.recommendationTemplateArn = x.recommendationTemplateArn
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateResponse = DeleteRecommendationTemplateResponse(this)
internal fun correctErrors(): Builder {
if (recommendationTemplateArn == null) recommendationTemplateArn = ""
if (status == null) status = RecommendationTemplateStatus.SdkUnknown("no value provided")
return this
}
}
}