commonMain.aws.sdk.kotlin.services.vpclattice.model.GetTargetGroupResponse.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 GetTargetGroupResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the target group.
*/
public val arn: kotlin.String? = builder.arn
/**
* The target group configuration.
*/
public val config: aws.sdk.kotlin.services.vpclattice.model.TargetGroupConfig? = builder.config
/**
* The date and time that the target group was created, specified in ISO-8601 format.
*/
public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
/**
* The failure code.
*/
public val failureCode: kotlin.String? = builder.failureCode
/**
* The failure message.
*/
public val failureMessage: kotlin.String? = builder.failureMessage
/**
* The ID of the target group.
*/
public val id: kotlin.String? = builder.id
/**
* The date and time that the target group was last updated, specified in ISO-8601 format.
*/
public val lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedAt
/**
* The name of the target group.
*/
public val name: kotlin.String? = builder.name
/**
* The Amazon Resource Names (ARNs) of the service.
*/
public val serviceArns: List? = builder.serviceArns
/**
* The status.
*/
public val status: aws.sdk.kotlin.services.vpclattice.model.TargetGroupStatus? = builder.status
/**
* The target group type.
*/
public val type: aws.sdk.kotlin.services.vpclattice.model.TargetGroupType? = builder.type
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.GetTargetGroupResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetTargetGroupResponse(")
append("arn=$arn,")
append("config=$config,")
append("createdAt=$createdAt,")
append("failureCode=$failureCode,")
append("failureMessage=$failureMessage,")
append("id=$id,")
append("lastUpdatedAt=$lastUpdatedAt,")
append("name=$name,")
append("serviceArns=$serviceArns,")
append("status=$status,")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (config?.hashCode() ?: 0)
result = 31 * result + (createdAt?.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 + (name?.hashCode() ?: 0)
result = 31 * result + (serviceArns?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (type?.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 GetTargetGroupResponse
if (arn != other.arn) return false
if (config != other.config) return false
if (createdAt != other.createdAt) 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 (name != other.name) return false
if (serviceArns != other.serviceArns) return false
if (status != other.status) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.GetTargetGroupResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the target group.
*/
public var arn: kotlin.String? = null
/**
* The target group configuration.
*/
public var config: aws.sdk.kotlin.services.vpclattice.model.TargetGroupConfig? = null
/**
* The date and time that the target group was created, specified in ISO-8601 format.
*/
public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The failure code.
*/
public var failureCode: kotlin.String? = null
/**
* The failure message.
*/
public var failureMessage: kotlin.String? = null
/**
* The ID of the target group.
*/
public var id: kotlin.String? = null
/**
* The date and time that the target group was last updated, specified in ISO-8601 format.
*/
public var lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the target group.
*/
public var name: kotlin.String? = null
/**
* The Amazon Resource Names (ARNs) of the service.
*/
public var serviceArns: List? = null
/**
* The status.
*/
public var status: aws.sdk.kotlin.services.vpclattice.model.TargetGroupStatus? = null
/**
* The target group type.
*/
public var type: aws.sdk.kotlin.services.vpclattice.model.TargetGroupType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.GetTargetGroupResponse) : this() {
this.arn = x.arn
this.config = x.config
this.createdAt = x.createdAt
this.failureCode = x.failureCode
this.failureMessage = x.failureMessage
this.id = x.id
this.lastUpdatedAt = x.lastUpdatedAt
this.name = x.name
this.serviceArns = x.serviceArns
this.status = x.status
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.GetTargetGroupResponse = GetTargetGroupResponse(this)
/**
* construct an [aws.sdk.kotlin.services.vpclattice.model.TargetGroupConfig] inside the given [block]
*/
public fun config(block: aws.sdk.kotlin.services.vpclattice.model.TargetGroupConfig.Builder.() -> kotlin.Unit) {
this.config = aws.sdk.kotlin.services.vpclattice.model.TargetGroupConfig.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}