commonMain.aws.sdk.kotlin.services.autoscaling.model.DeleteAutoScalingGroupRequest.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 DeleteAutoScalingGroupRequest private constructor(builder: Builder) {
/**
* The name of the Auto Scaling group.
*/
public val autoScalingGroupName: kotlin.String? = builder.autoScalingGroupName
/**
* Specifies that the group is to be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This action also deletes any outstanding lifecycle actions associated with the group.
*/
public val forceDelete: kotlin.Boolean? = builder.forceDelete
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.DeleteAutoScalingGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteAutoScalingGroupRequest(")
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 DeleteAutoScalingGroupRequest
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.DeleteAutoScalingGroupRequest = 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 group is to be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This action also deletes any outstanding lifecycle actions associated with the group.
*/
public var forceDelete: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.DeleteAutoScalingGroupRequest) : this() {
this.autoScalingGroupName = x.autoScalingGroupName
this.forceDelete = x.forceDelete
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.DeleteAutoScalingGroupRequest = DeleteAutoScalingGroupRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}