commonMain.aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateRequest.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 DeleteRecommendationTemplateRequest private constructor(builder: Builder) {
/**
* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* 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" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteRecommendationTemplateRequest(")
append("clientToken=$clientToken,")
append("recommendationTemplateArn=$recommendationTemplateArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (recommendationTemplateArn.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 DeleteRecommendationTemplateRequest
if (clientToken != other.clientToken) return false
if (recommendationTemplateArn != other.recommendationTemplateArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateRequest = Builder(this).apply(block).build()
public class Builder {
/**
* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
*/
public var clientToken: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) for a recommendation template.
*/
public var recommendationTemplateArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateRequest) : this() {
this.clientToken = x.clientToken
this.recommendationTemplateArn = x.recommendationTemplateArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.DeleteRecommendationTemplateRequest = DeleteRecommendationTemplateRequest(this)
internal fun correctErrors(): Builder {
if (recommendationTemplateArn == null) recommendationTemplateArn = ""
return this
}
}
}