commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateTargetGroupRequest.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 UpdateTargetGroupRequest private constructor(builder: Builder) {
/**
* The health check configuration.
*/
public val healthCheck: aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig? = builder.healthCheck
/**
* The ID or Amazon Resource Name (ARN) of the target group.
*/
public val targetGroupIdentifier: kotlin.String = requireNotNull(builder.targetGroupIdentifier) { "A non-null value must be provided for targetGroupIdentifier" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.UpdateTargetGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateTargetGroupRequest(")
append("healthCheck=$healthCheck,")
append("targetGroupIdentifier=$targetGroupIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = healthCheck?.hashCode() ?: 0
result = 31 * result + (targetGroupIdentifier.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 UpdateTargetGroupRequest
if (healthCheck != other.healthCheck) return false
if (targetGroupIdentifier != other.targetGroupIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateTargetGroupRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The health check configuration.
*/
public var healthCheck: aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig? = null
/**
* The ID or Amazon Resource Name (ARN) of the target group.
*/
public var targetGroupIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.UpdateTargetGroupRequest) : this() {
this.healthCheck = x.healthCheck
this.targetGroupIdentifier = x.targetGroupIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateTargetGroupRequest = UpdateTargetGroupRequest(this)
/**
* construct an [aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig] inside the given [block]
*/
public fun healthCheck(block: aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig.Builder.() -> kotlin.Unit) {
this.healthCheck = aws.sdk.kotlin.services.vpclattice.model.HealthCheckConfig.invoke(block)
}
internal fun correctErrors(): Builder {
if (targetGroupIdentifier == null) targetGroupIdentifier = ""
return this
}
}
}