commonMain.aws.sdk.kotlin.services.resiliencehub.model.ResolveAppVersionResourcesResponse.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 ResolveAppVersionResourcesResponse 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 identifier for a specific resolution.
*/
public val resolutionId: kotlin.String = requireNotNull(builder.resolutionId) { "A non-null value must be provided for resolutionId" }
/**
* Status of the action.
*/
public val status: aws.sdk.kotlin.services.resiliencehub.model.ResourceResolutionStatusType = 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.ResolveAppVersionResourcesResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResolveAppVersionResourcesResponse(")
append("appArn=$appArn,")
append("appVersion=$appVersion,")
append("resolutionId=$resolutionId,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appArn.hashCode()
result = 31 * result + (appVersion.hashCode())
result = 31 * result + (resolutionId.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 ResolveAppVersionResourcesResponse
if (appArn != other.appArn) return false
if (appVersion != other.appVersion) return false
if (resolutionId != other.resolutionId) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.ResolveAppVersionResourcesResponse = Builder(this).apply(block).build()
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 identifier for a specific resolution.
*/
public var resolutionId: kotlin.String? = null
/**
* Status of the action.
*/
public var status: aws.sdk.kotlin.services.resiliencehub.model.ResourceResolutionStatusType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.ResolveAppVersionResourcesResponse) : this() {
this.appArn = x.appArn
this.appVersion = x.appVersion
this.resolutionId = x.resolutionId
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.ResolveAppVersionResourcesResponse = ResolveAppVersionResourcesResponse(this)
internal fun correctErrors(): Builder {
if (appArn == null) appArn = ""
if (appVersion == null) appVersion = ""
if (resolutionId == null) resolutionId = ""
if (status == null) status = ResourceResolutionStatusType.SdkUnknown("no value provided")
return this
}
}
}