commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateEventDestinationResponse private constructor(builder: Builder) {
/**
* The ARN of the configuration set.
*/
public val configurationSetArn: kotlin.String? = builder.configurationSetArn
/**
* The name of the configuration set.
*/
public val configurationSetName: kotlin.String? = builder.configurationSetName
/**
* The details of the destination where events are logged.
*/
public val eventDestination: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination? = builder.eventDestination
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateEventDestinationResponse(")
append("configurationSetArn=$configurationSetArn,")
append("configurationSetName=$configurationSetName,")
append("eventDestination=$eventDestination")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = configurationSetArn?.hashCode() ?: 0
result = 31 * result + (configurationSetName?.hashCode() ?: 0)
result = 31 * result + (eventDestination?.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 CreateEventDestinationResponse
if (configurationSetArn != other.configurationSetArn) return false
if (configurationSetName != other.configurationSetName) return false
if (eventDestination != other.eventDestination) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the configuration set.
*/
public var configurationSetArn: kotlin.String? = null
/**
* The name of the configuration set.
*/
public var configurationSetName: kotlin.String? = null
/**
* The details of the destination where events are logged.
*/
public var eventDestination: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationResponse) : this() {
this.configurationSetArn = x.configurationSetArn
this.configurationSetName = x.configurationSetName
this.eventDestination = x.eventDestination
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationResponse = CreateEventDestinationResponse(this)
/**
* construct an [aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination] inside the given [block]
*/
public fun eventDestination(block: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination.Builder.() -> kotlin.Unit) {
this.eventDestination = aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}