commonMain.aws.sdk.kotlin.services.timestreamquery.model.SnsConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreamquery-jvm Show documentation
Show all versions of timestreamquery-jvm Show documentation
The AWS SDK for Kotlin client for Timestream Query
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.timestreamquery.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Details on SNS that are required to send the notification.
*/
public class SnsConfiguration private constructor(builder: Builder) {
/**
* SNS topic ARN that the scheduled query status notifications will be sent to.
*/
public val topicArn: kotlin.String = requireNotNull(builder.topicArn) { "A non-null value must be provided for topicArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.timestreamquery.model.SnsConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SnsConfiguration(")
append("topicArn=$topicArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = topicArn.hashCode()
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 SnsConfiguration
if (topicArn != other.topicArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.timestreamquery.model.SnsConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* SNS topic ARN that the scheduled query status notifications will be sent to.
*/
public var topicArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.timestreamquery.model.SnsConfiguration) : this() {
this.topicArn = x.topicArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.timestreamquery.model.SnsConfiguration = SnsConfiguration(this)
internal fun correctErrors(): Builder {
if (topicArn == null) topicArn = ""
return this
}
}
}