commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationRequest.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 UpdateServiceNetworkVpcAssociationRequest private constructor(builder: Builder) {
/**
* The IDs of the security groups.
*/
public val securityGroupIds: List = requireNotNull(builder.securityGroupIds) { "A non-null value must be provided for securityGroupIds" }
/**
* The ID or Amazon Resource Name (ARN) of the association.
*/
public val serviceNetworkVpcAssociationIdentifier: kotlin.String = requireNotNull(builder.serviceNetworkVpcAssociationIdentifier) { "A non-null value must be provided for serviceNetworkVpcAssociationIdentifier" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateServiceNetworkVpcAssociationRequest(")
append("securityGroupIds=$securityGroupIds,")
append("serviceNetworkVpcAssociationIdentifier=$serviceNetworkVpcAssociationIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = securityGroupIds.hashCode()
result = 31 * result + (serviceNetworkVpcAssociationIdentifier.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 UpdateServiceNetworkVpcAssociationRequest
if (securityGroupIds != other.securityGroupIds) return false
if (serviceNetworkVpcAssociationIdentifier != other.serviceNetworkVpcAssociationIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The IDs of the security groups.
*/
public var securityGroupIds: List? = null
/**
* The ID or Amazon Resource Name (ARN) of the association.
*/
public var serviceNetworkVpcAssociationIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationRequest) : this() {
this.securityGroupIds = x.securityGroupIds
this.serviceNetworkVpcAssociationIdentifier = x.serviceNetworkVpcAssociationIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateServiceNetworkVpcAssociationRequest = UpdateServiceNetworkVpcAssociationRequest(this)
internal fun correctErrors(): Builder {
if (securityGroupIds == null) securityGroupIds = emptyList()
if (serviceNetworkVpcAssociationIdentifier == null) serviceNetworkVpcAssociationIdentifier = ""
return this
}
}
}