commonMain.aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkServiceAssociationResponse.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 GetServiceNetworkServiceAssociationResponse 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 custom domain name of the service.
*/
public val customDomainName: kotlin.String? = builder.customDomainName
/**
* The DNS name of the service.
*/
public val dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = builder.dnsEntry
/**
* The failure code.
*/
public val failureCode: kotlin.String? = builder.failureCode
/**
* The failure message.
*/
public val failureMessage: kotlin.String? = builder.failureMessage
/**
* The ID of the service network and service association.
*/
public val id: kotlin.String? = builder.id
/**
* The Amazon Resource Name (ARN) of the service.
*/
public val serviceArn: kotlin.String? = builder.serviceArn
/**
* The ID of the service.
*/
public val serviceId: kotlin.String? = builder.serviceId
/**
* The name of the service.
*/
public val serviceName: kotlin.String? = builder.serviceName
/**
* 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.ServiceNetworkServiceAssociationStatus? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkServiceAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetServiceNetworkServiceAssociationResponse(")
append("arn=$arn,")
append("createdAt=$createdAt,")
append("createdBy=$createdBy,")
append("customDomainName=$customDomainName,")
append("dnsEntry=$dnsEntry,")
append("failureCode=$failureCode,")
append("failureMessage=$failureMessage,")
append("id=$id,")
append("serviceArn=$serviceArn,")
append("serviceId=$serviceId,")
append("serviceName=$serviceName,")
append("serviceNetworkArn=$serviceNetworkArn,")
append("serviceNetworkId=$serviceNetworkId,")
append("serviceNetworkName=$serviceNetworkName,")
append("status=$status")
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 + (customDomainName?.hashCode() ?: 0)
result = 31 * result + (dnsEntry?.hashCode() ?: 0)
result = 31 * result + (failureCode?.hashCode() ?: 0)
result = 31 * result + (failureMessage?.hashCode() ?: 0)
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (serviceArn?.hashCode() ?: 0)
result = 31 * result + (serviceId?.hashCode() ?: 0)
result = 31 * result + (serviceName?.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)
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 GetServiceNetworkServiceAssociationResponse
if (arn != other.arn) return false
if (createdAt != other.createdAt) return false
if (createdBy != other.createdBy) return false
if (customDomainName != other.customDomainName) return false
if (dnsEntry != other.dnsEntry) return false
if (failureCode != other.failureCode) return false
if (failureMessage != other.failureMessage) return false
if (id != other.id) return false
if (serviceArn != other.serviceArn) return false
if (serviceId != other.serviceId) return false
if (serviceName != other.serviceName) 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
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkServiceAssociationResponse = 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 custom domain name of the service.
*/
public var customDomainName: kotlin.String? = null
/**
* The DNS name of the service.
*/
public var dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = null
/**
* The failure code.
*/
public var failureCode: kotlin.String? = null
/**
* The failure message.
*/
public var failureMessage: kotlin.String? = null
/**
* The ID of the service network and service association.
*/
public var id: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the service.
*/
public var serviceArn: kotlin.String? = null
/**
* The ID of the service.
*/
public var serviceId: kotlin.String? = null
/**
* The name of the service.
*/
public var serviceName: kotlin.String? = 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.ServiceNetworkServiceAssociationStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkServiceAssociationResponse) : this() {
this.arn = x.arn
this.createdAt = x.createdAt
this.createdBy = x.createdBy
this.customDomainName = x.customDomainName
this.dnsEntry = x.dnsEntry
this.failureCode = x.failureCode
this.failureMessage = x.failureMessage
this.id = x.id
this.serviceArn = x.serviceArn
this.serviceId = x.serviceId
this.serviceName = x.serviceName
this.serviceNetworkArn = x.serviceNetworkArn
this.serviceNetworkId = x.serviceNetworkId
this.serviceNetworkName = x.serviceNetworkName
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.GetServiceNetworkServiceAssociationResponse = GetServiceNetworkServiceAssociationResponse(this)
/**
* construct an [aws.sdk.kotlin.services.vpclattice.model.DnsEntry] inside the given [block]
*/
public fun dnsEntry(block: aws.sdk.kotlin.services.vpclattice.model.DnsEntry.Builder.() -> kotlin.Unit) {
this.dnsEntry = aws.sdk.kotlin.services.vpclattice.model.DnsEntry.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}