commonMain.aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetDeliveryOptionsRequest.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 associate a configuration set with a dedicated IP pool.
*/
public class PutConfigurationSetDeliveryOptionsRequest private constructor(builder: Builder) {
/**
* The name of the configuration set that you want to associate with a dedicated IP pool.
*/
public val configurationSetName: kotlin.String? = builder.configurationSetName
/**
* The name of the dedicated IP pool that you want to associate with the configuration set.
*/
public val sendingPoolName: kotlin.String? = builder.sendingPoolName
/**
* Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is `Require`, messages are only delivered if a TLS connection can be established. If the value is `Optional`, messages can be delivered in plain text if a TLS connection can't be established.
*/
public val tlsPolicy: aws.sdk.kotlin.services.pinpointemail.model.TlsPolicy? = builder.tlsPolicy
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetDeliveryOptionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutConfigurationSetDeliveryOptionsRequest(")
append("configurationSetName=$configurationSetName,")
append("sendingPoolName=$sendingPoolName,")
append("tlsPolicy=$tlsPolicy")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = configurationSetName?.hashCode() ?: 0
result = 31 * result + (sendingPoolName?.hashCode() ?: 0)
result = 31 * result + (tlsPolicy?.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 PutConfigurationSetDeliveryOptionsRequest
if (configurationSetName != other.configurationSetName) return false
if (sendingPoolName != other.sendingPoolName) return false
if (tlsPolicy != other.tlsPolicy) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetDeliveryOptionsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the configuration set that you want to associate with a dedicated IP pool.
*/
public var configurationSetName: kotlin.String? = null
/**
* The name of the dedicated IP pool that you want to associate with the configuration set.
*/
public var sendingPoolName: kotlin.String? = null
/**
* Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is `Require`, messages are only delivered if a TLS connection can be established. If the value is `Optional`, messages can be delivered in plain text if a TLS connection can't be established.
*/
public var tlsPolicy: aws.sdk.kotlin.services.pinpointemail.model.TlsPolicy? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetDeliveryOptionsRequest) : this() {
this.configurationSetName = x.configurationSetName
this.sendingPoolName = x.sendingPoolName
this.tlsPolicy = x.tlsPolicy
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetDeliveryOptionsRequest = PutConfigurationSetDeliveryOptionsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}