commonMain.aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkVpcAssociationResponse.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
import aws.smithy.kotlin.runtime.time.Instant
public class GetServiceNetworkVpcAssociationResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the association.
*/
public val arn: kotlin.String? = builder.arn
/**
* The date and time that the association was created, specified in ISO-8601 format.
*/
public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
/**
* The account that created the association.
*/
public val createdBy: kotlin.String? = builder.createdBy
/**
* The failure code.
*/
public val failureCode: kotlin.String? = builder.failureCode
/**
* The failure message.
*/
public val failureMessage: kotlin.String? = builder.failureMessage
/**
* The ID of the specified association between the service network and the VPC.
*/
public val id: kotlin.String? = builder.id
/**
* The date and time that the association was last updated, specified in ISO-8601 format.
*/
public val lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedAt
/**
* The IDs of the security groups.
*/
public val securityGroupIds: List? = builder.securityGroupIds
/**
* The Amazon Resource Name (ARN) of the service network.
*/
public val serviceNetworkArn: kotlin.String? = builder.serviceNetworkArn
/**
* The ID of the service network.
*/
public val serviceNetworkId: kotlin.String? = builder.serviceNetworkId
/**
* The name of the service network.
*/
public val serviceNetworkName: kotlin.String? = builder.serviceNetworkName
/**
* The status of the association.
*/
public val status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkVpcAssociationStatus? = builder.status
/**
* The ID of the VPC.
*/
public val vpcId: kotlin.String? = builder.vpcId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkVpcAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetServiceNetworkVpcAssociationResponse(")
append("arn=$arn,")
append("createdAt=$createdAt,")
append("createdBy=$createdBy,")
append("failureCode=$failureCode,")
append("failureMessage=$failureMessage,")
append("id=$id,")
append("lastUpdatedAt=$lastUpdatedAt,")
append("securityGroupIds=$securityGroupIds,")
append("serviceNetworkArn=$serviceNetworkArn,")
append("serviceNetworkId=$serviceNetworkId,")
append("serviceNetworkName=$serviceNetworkName,")
append("status=$status,")
append("vpcId=$vpcId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (createdAt?.hashCode() ?: 0)
result = 31 * result + (createdBy?.hashCode() ?: 0)
result = 31 * result + (failureCode?.hashCode() ?: 0)
result = 31 * result + (failureMessage?.hashCode() ?: 0)
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (lastUpdatedAt?.hashCode() ?: 0)
result = 31 * result + (securityGroupIds?.hashCode() ?: 0)
result = 31 * result + (serviceNetworkArn?.hashCode() ?: 0)
result = 31 * result + (serviceNetworkId?.hashCode() ?: 0)
result = 31 * result + (serviceNetworkName?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (vpcId?.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 GetServiceNetworkVpcAssociationResponse
if (arn != other.arn) return false
if (createdAt != other.createdAt) return false
if (createdBy != other.createdBy) return false
if (failureCode != other.failureCode) return false
if (failureMessage != other.failureMessage) return false
if (id != other.id) return false
if (lastUpdatedAt != other.lastUpdatedAt) return false
if (securityGroupIds != other.securityGroupIds) return false
if (serviceNetworkArn != other.serviceNetworkArn) return false
if (serviceNetworkId != other.serviceNetworkId) return false
if (serviceNetworkName != other.serviceNetworkName) return false
if (status != other.status) return false
if (vpcId != other.vpcId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkVpcAssociationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the association.
*/
public var arn: kotlin.String? = null
/**
* The date and time that the association was created, specified in ISO-8601 format.
*/
public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The account that created the association.
*/
public var createdBy: kotlin.String? = null
/**
* The failure code.
*/
public var failureCode: kotlin.String? = null
/**
* The failure message.
*/
public var failureMessage: kotlin.String? = null
/**
* The ID of the specified association between the service network and the VPC.
*/
public var id: kotlin.String? = null
/**
* The date and time that the association was last updated, specified in ISO-8601 format.
*/
public var lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The IDs of the security groups.
*/
public var securityGroupIds: List? = null
/**
* The Amazon Resource Name (ARN) of the service network.
*/
public var serviceNetworkArn: kotlin.String? = null
/**
* The ID of the service network.
*/
public var serviceNetworkId: kotlin.String? = null
/**
* The name of the service network.
*/
public var serviceNetworkName: kotlin.String? = null
/**
* The status of the association.
*/
public var status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkVpcAssociationStatus? = null
/**
* The ID of the VPC.
*/
public var vpcId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkVpcAssociationResponse) : this() {
this.arn = x.arn
this.createdAt = x.createdAt
this.createdBy = x.createdBy
this.failureCode = x.failureCode
this.failureMessage = x.failureMessage
this.id = x.id
this.lastUpdatedAt = x.lastUpdatedAt
this.securityGroupIds = x.securityGroupIds
this.serviceNetworkArn = x.serviceNetworkArn
this.serviceNetworkId = x.serviceNetworkId
this.serviceNetworkName = x.serviceNetworkName
this.status = x.status
this.vpcId = x.vpcId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkVpcAssociationResponse = GetServiceNetworkVpcAssociationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}