commonMain.aws.sdk.kotlin.services.autoscaling.model.NotificationConfiguration.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
/**
* Describes a notification.
*/
public class NotificationConfiguration private constructor(builder: Builder) {
/**
* The name of the Auto Scaling group.
*/
public val autoScalingGroupName: kotlin.String? = builder.autoScalingGroupName
/**
* One of the following event notification types:
* + `autoscaling:EC2_INSTANCE_LAUNCH`
* + `autoscaling:EC2_INSTANCE_LAUNCH_ERROR`
* + `autoscaling:EC2_INSTANCE_TERMINATE`
* + `autoscaling:EC2_INSTANCE_TERMINATE_ERROR`
* + `autoscaling:TEST_NOTIFICATION`
*/
public val notificationType: kotlin.String? = builder.notificationType
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic.
*/
public val topicArn: kotlin.String? = builder.topicArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.NotificationConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("NotificationConfiguration(")
append("autoScalingGroupName=$autoScalingGroupName,")
append("notificationType=$notificationType,")
append("topicArn=$topicArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = autoScalingGroupName?.hashCode() ?: 0
result = 31 * result + (notificationType?.hashCode() ?: 0)
result = 31 * result + (topicArn?.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 NotificationConfiguration
if (autoScalingGroupName != other.autoScalingGroupName) return false
if (notificationType != other.notificationType) return false
if (topicArn != other.topicArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.autoscaling.model.NotificationConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the Auto Scaling group.
*/
public var autoScalingGroupName: kotlin.String? = null
/**
* One of the following event notification types:
* + `autoscaling:EC2_INSTANCE_LAUNCH`
* + `autoscaling:EC2_INSTANCE_LAUNCH_ERROR`
* + `autoscaling:EC2_INSTANCE_TERMINATE`
* + `autoscaling:EC2_INSTANCE_TERMINATE_ERROR`
* + `autoscaling:TEST_NOTIFICATION`
*/
public var notificationType: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic.
*/
public var topicArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.NotificationConfiguration) : this() {
this.autoScalingGroupName = x.autoScalingGroupName
this.notificationType = x.notificationType
this.topicArn = x.topicArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.NotificationConfiguration = NotificationConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}