commonMain.aws.sdk.kotlin.services.resiliencehub.model.BatchUpdateRecommendationStatusResponse.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 BatchUpdateRecommendationStatusResponse 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" }
/**
* A list of items with error details about each item, which could not be included or excluded.
*/
public val failedEntries: List = requireNotNull(builder.failedEntries) { "A non-null value must be provided for failedEntries" }
/**
* A list of items that were included or excluded.
*/
public val successfulEntries: List = requireNotNull(builder.successfulEntries) { "A non-null value must be provided for successfulEntries" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.BatchUpdateRecommendationStatusResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchUpdateRecommendationStatusResponse(")
append("appArn=$appArn,")
append("failedEntries=$failedEntries,")
append("successfulEntries=$successfulEntries")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appArn.hashCode()
result = 31 * result + (failedEntries.hashCode())
result = 31 * result + (successfulEntries.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 BatchUpdateRecommendationStatusResponse
if (appArn != other.appArn) return false
if (failedEntries != other.failedEntries) return false
if (successfulEntries != other.successfulEntries) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.BatchUpdateRecommendationStatusResponse = 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
/**
* A list of items with error details about each item, which could not be included or excluded.
*/
public var failedEntries: List? = null
/**
* A list of items that were included or excluded.
*/
public var successfulEntries: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.BatchUpdateRecommendationStatusResponse) : this() {
this.appArn = x.appArn
this.failedEntries = x.failedEntries
this.successfulEntries = x.successfulEntries
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.BatchUpdateRecommendationStatusResponse = BatchUpdateRecommendationStatusResponse(this)
internal fun correctErrors(): Builder {
if (appArn == null) appArn = ""
if (failedEntries == null) failedEntries = emptyList()
if (successfulEntries == null) successfulEntries = emptyList()
return this
}
}
}