commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateServiceNetworkVpcAssociationResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the association.
*/
public val arn: kotlin.String? = builder.arn
/**
* The account that created the association.
*/
public val createdBy: kotlin.String? = builder.createdBy
/**
* The ID of the association.
*/
public val id: kotlin.String? = builder.id
/**
* The IDs of the security groups.
*/
public val securityGroupIds: List? = builder.securityGroupIds
/**
* The status. You can retry the operation if the status is `DELETE_FAILED`. However, if you retry it while the status is `DELETE_IN_PROGRESS`, there is no change in the status.
*/
public val status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkVpcAssociationStatus? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateServiceNetworkVpcAssociationResponse(")
append("arn=$arn,")
append("createdBy=$createdBy,")
append("id=$id,")
append("securityGroupIds=$securityGroupIds,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (createdBy?.hashCode() ?: 0)
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (securityGroupIds?.hashCode() ?: 0)
result = 31 * result + (status?.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 UpdateServiceNetworkVpcAssociationResponse
if (arn != other.arn) return false
if (createdBy != other.createdBy) return false
if (id != other.id) return false
if (securityGroupIds != other.securityGroupIds) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the association.
*/
public var arn: kotlin.String? = null
/**
* The account that created the association.
*/
public var createdBy: kotlin.String? = null
/**
* The ID of the association.
*/
public var id: kotlin.String? = null
/**
* The IDs of the security groups.
*/
public var securityGroupIds: List? = null
/**
* The status. You can retry the operation if the status is `DELETE_FAILED`. However, if you retry it while the status is `DELETE_IN_PROGRESS`, there is no change in the status.
*/
public var status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkVpcAssociationStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationResponse) : this() {
this.arn = x.arn
this.createdBy = x.createdBy
this.id = x.id
this.securityGroupIds = x.securityGroupIds
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationResponse = UpdateServiceNetworkVpcAssociationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}