commonMain.aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkVpcAssociationSummary.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
/**
* Summary information about an association between a service network and a VPC.
*/
public class ServiceNetworkVpcAssociationSummary 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 ID of the association.
*/
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 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.
*/
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.ServiceNetworkVpcAssociationSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ServiceNetworkVpcAssociationSummary(")
append("arn=$arn,")
append("createdAt=$createdAt,")
append("createdBy=$createdBy,")
append("id=$id,")
append("lastUpdatedAt=$lastUpdatedAt,")
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 + (id?.hashCode() ?: 0)
result = 31 * result + (lastUpdatedAt?.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 ServiceNetworkVpcAssociationSummary
if (arn != other.arn) return false
if (createdAt != other.createdAt) return false
if (createdBy != other.createdBy) return false
if (id != other.id) return false
if (lastUpdatedAt != other.lastUpdatedAt) 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.ServiceNetworkVpcAssociationSummary = 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 ID of the association.
*/
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 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.
*/
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.ServiceNetworkVpcAssociationSummary) : this() {
this.arn = x.arn
this.createdAt = x.createdAt
this.createdBy = x.createdBy
this.id = x.id
this.lastUpdatedAt = x.lastUpdatedAt
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.ServiceNetworkVpcAssociationSummary = ServiceNetworkVpcAssociationSummary(this)
internal fun correctErrors(): Builder {
return this
}
}
}