commonMain.aws.sdk.kotlin.services.pinpointemail.model.PinpointDestination.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointemail-jvm Show documentation
Show all versions of pinpointemail-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint Email
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointemail.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object that defines a Amazon Pinpoint destination for email events. You can use Amazon Pinpoint events to create attributes in Amazon Pinpoint projects. You can use these attributes to create segments for your campaigns.
*/
public class PinpointDestination private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the Amazon Pinpoint project that you want to send email events to.
*/
public val applicationArn: kotlin.String? = builder.applicationArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointemail.model.PinpointDestination = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PinpointDestination(")
append("applicationArn=$applicationArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = applicationArn?.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 PinpointDestination
if (applicationArn != other.applicationArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointemail.model.PinpointDestination = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the Amazon Pinpoint project that you want to send email events to.
*/
public var applicationArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointemail.model.PinpointDestination) : this() {
this.applicationArn = x.applicationArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.PinpointDestination = PinpointDestination(this)
internal fun correctErrors(): Builder {
return this
}
}
}