commonMain.aws.sdk.kotlin.services.pinpointemail.model.CreateConfigurationSetEventDestinationRequest.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
/**
* A request to add an event destination to a configuration set.
*/
public class CreateConfigurationSetEventDestinationRequest private constructor(builder: Builder) {
/**
* The name of the configuration set that you want to add an event destination to.
*/
public val configurationSetName: kotlin.String? = builder.configurationSetName
/**
* An object that defines the event destination.
*/
public val eventDestination: aws.sdk.kotlin.services.pinpointemail.model.EventDestinationDefinition? = builder.eventDestination
/**
* A name that identifies the event destination within the configuration set.
*/
public val eventDestinationName: kotlin.String? = builder.eventDestinationName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointemail.model.CreateConfigurationSetEventDestinationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateConfigurationSetEventDestinationRequest(")
append("configurationSetName=$configurationSetName,")
append("eventDestination=$eventDestination,")
append("eventDestinationName=$eventDestinationName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = configurationSetName?.hashCode() ?: 0
result = 31 * result + (eventDestination?.hashCode() ?: 0)
result = 31 * result + (eventDestinationName?.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 CreateConfigurationSetEventDestinationRequest
if (configurationSetName != other.configurationSetName) return false
if (eventDestination != other.eventDestination) return false
if (eventDestinationName != other.eventDestinationName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointemail.model.CreateConfigurationSetEventDestinationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the configuration set that you want to add an event destination to.
*/
public var configurationSetName: kotlin.String? = null
/**
* An object that defines the event destination.
*/
public var eventDestination: aws.sdk.kotlin.services.pinpointemail.model.EventDestinationDefinition? = null
/**
* A name that identifies the event destination within the configuration set.
*/
public var eventDestinationName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointemail.model.CreateConfigurationSetEventDestinationRequest) : this() {
this.configurationSetName = x.configurationSetName
this.eventDestination = x.eventDestination
this.eventDestinationName = x.eventDestinationName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.CreateConfigurationSetEventDestinationRequest = CreateConfigurationSetEventDestinationRequest(this)
/**
* construct an [aws.sdk.kotlin.services.pinpointemail.model.EventDestinationDefinition] inside the given [block]
*/
public fun eventDestination(block: aws.sdk.kotlin.services.pinpointemail.model.EventDestinationDefinition.Builder.() -> kotlin.Unit) {
this.eventDestination = aws.sdk.kotlin.services.pinpointemail.model.EventDestinationDefinition.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}