commonMain.aws.sdk.kotlin.services.apprunner.model.DeleteAutoScalingConfigurationRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apprunner-jvm Show documentation
Show all versions of apprunner-jvm Show documentation
The AWS SDK for Kotlin client for AppRunner
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.apprunner.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteAutoScalingConfigurationRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.
*
* The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either `.../name ` or `.../name/revision `. If a revision isn't specified, the latest active revision is deleted.
*/
public val autoScalingConfigurationArn: kotlin.String? = builder.autoScalingConfigurationArn
/**
* Set to `true` to delete all of the revisions associated with the `AutoScalingConfigurationArn` parameter value.
*
* When `DeleteAllRevisions` is set to `true`, the only valid value for the Amazon Resource Name (ARN) is a partial ARN ending with: `.../name`.
*/
public val deleteAllRevisions: kotlin.Boolean? = builder.deleteAllRevisions
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.apprunner.model.DeleteAutoScalingConfigurationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteAutoScalingConfigurationRequest(")
append("autoScalingConfigurationArn=$autoScalingConfigurationArn,")
append("deleteAllRevisions=$deleteAllRevisions")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = autoScalingConfigurationArn?.hashCode() ?: 0
result = 31 * result + (deleteAllRevisions?.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 DeleteAutoScalingConfigurationRequest
if (autoScalingConfigurationArn != other.autoScalingConfigurationArn) return false
if (deleteAllRevisions != other.deleteAllRevisions) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.apprunner.model.DeleteAutoScalingConfigurationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.
*
* The ARN can be a full auto scaling configuration ARN, or a partial ARN ending with either `.../name ` or `.../name/revision `. If a revision isn't specified, the latest active revision is deleted.
*/
public var autoScalingConfigurationArn: kotlin.String? = null
/**
* Set to `true` to delete all of the revisions associated with the `AutoScalingConfigurationArn` parameter value.
*
* When `DeleteAllRevisions` is set to `true`, the only valid value for the Amazon Resource Name (ARN) is a partial ARN ending with: `.../name`.
*/
public var deleteAllRevisions: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.apprunner.model.DeleteAutoScalingConfigurationRequest) : this() {
this.autoScalingConfigurationArn = x.autoScalingConfigurationArn
this.deleteAllRevisions = x.deleteAllRevisions
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.apprunner.model.DeleteAutoScalingConfigurationRequest = DeleteAutoScalingConfigurationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}