commonMain.aws.sdk.kotlin.services.apprunner.model.DeleteObservabilityConfigurationRequest.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 DeleteObservabilityConfigurationRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the App Runner observability configuration that you want to delete.
*
* The ARN can be a full observability 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 observabilityConfigurationArn: kotlin.String? = builder.observabilityConfigurationArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.apprunner.model.DeleteObservabilityConfigurationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteObservabilityConfigurationRequest(")
append("observabilityConfigurationArn=$observabilityConfigurationArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = observabilityConfigurationArn?.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 DeleteObservabilityConfigurationRequest
if (observabilityConfigurationArn != other.observabilityConfigurationArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.apprunner.model.DeleteObservabilityConfigurationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the App Runner observability configuration that you want to delete.
*
* The ARN can be a full observability 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 observabilityConfigurationArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.apprunner.model.DeleteObservabilityConfigurationRequest) : this() {
this.observabilityConfigurationArn = x.observabilityConfigurationArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.apprunner.model.DeleteObservabilityConfigurationRequest = DeleteObservabilityConfigurationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}