commonMain.aws.sdk.kotlin.services.resiliencehub.model.StartAppAssessmentRequest.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 StartAppAssessmentRequest private constructor(builder: Builder) {
/**
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:`partition`:resiliencehub:`region`:`account`:app/`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 appArn: kotlin.String = requireNotNull(builder.appArn) { "A non-null value must be provided for appArn" }
/**
* The version of the application.
*/
public val appVersion: kotlin.String = requireNotNull(builder.appVersion) { "A non-null value must be provided for appVersion" }
/**
* The name for the assessment.
*/
public val assessmentName: kotlin.String = requireNotNull(builder.assessmentName) { "A non-null value must be provided for assessmentName" }
/**
* 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
/**
* Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.
*/
public val tags: Map? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.StartAppAssessmentRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartAppAssessmentRequest(")
append("appArn=$appArn,")
append("appVersion=$appVersion,")
append("assessmentName=$assessmentName,")
append("clientToken=$clientToken,")
append("tags=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appArn.hashCode()
result = 31 * result + (appVersion.hashCode())
result = 31 * result + (assessmentName.hashCode())
result = 31 * result + (clientToken?.hashCode() ?: 0)
result = 31 * result + (tags?.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 StartAppAssessmentRequest
if (appArn != other.appArn) return false
if (appVersion != other.appVersion) return false
if (assessmentName != other.assessmentName) return false
if (clientToken != other.clientToken) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.StartAppAssessmentRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:`partition`:resiliencehub:`region`:`account`:app/`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 appArn: kotlin.String? = null
/**
* The version of the application.
*/
public var appVersion: kotlin.String? = null
/**
* The name for the assessment.
*/
public var assessmentName: kotlin.String? = null
/**
* 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
/**
* Tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.
*/
public var tags: Map? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.StartAppAssessmentRequest) : this() {
this.appArn = x.appArn
this.appVersion = x.appVersion
this.assessmentName = x.assessmentName
this.clientToken = x.clientToken
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.StartAppAssessmentRequest = StartAppAssessmentRequest(this)
internal fun correctErrors(): Builder {
if (appArn == null) appArn = ""
if (appVersion == null) appVersion = ""
if (assessmentName == null) assessmentName = ""
return this
}
}
}