commonMain.aws.sdk.kotlin.services.autoscaling.model.DeleteWarmPoolRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteWarmPoolRequest private constructor(builder: Builder) {
/**
* The name of the Auto Scaling group.
*/
public val autoScalingGroupName: kotlin.String? = builder.autoScalingGroupName
/**
* Specifies that the warm pool is to be deleted along with all of its associated instances, without waiting for all instances to be terminated. This parameter also deletes any outstanding lifecycle actions associated with the warm pool instances.
*/
public val forceDelete: kotlin.Boolean? = builder.forceDelete
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.DeleteWarmPoolRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteWarmPoolRequest(")
append("autoScalingGroupName=$autoScalingGroupName,")
append("forceDelete=$forceDelete")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = autoScalingGroupName?.hashCode() ?: 0
result = 31 * result + (forceDelete?.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 DeleteWarmPoolRequest
if (autoScalingGroupName != other.autoScalingGroupName) return false
if (forceDelete != other.forceDelete) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.autoscaling.model.DeleteWarmPoolRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the Auto Scaling group.
*/
public var autoScalingGroupName: kotlin.String? = null
/**
* Specifies that the warm pool is to be deleted along with all of its associated instances, without waiting for all instances to be terminated. This parameter also deletes any outstanding lifecycle actions associated with the warm pool instances.
*/
public var forceDelete: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.DeleteWarmPoolRequest) : this() {
this.autoScalingGroupName = x.autoScalingGroupName
this.forceDelete = x.forceDelete
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.DeleteWarmPoolRequest = DeleteWarmPoolRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}