All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.pinpointemail.model.DeliveryOptions.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.pinpointemail.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Used to associate a configuration set with a dedicated IP pool.
 */
public class DeliveryOptions private constructor(builder: Builder) {
    /**
     * 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.DeliveryOptions = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("DeliveryOptions(")
        append("sendingPoolName=$sendingPoolName,")
        append("tlsPolicy=$tlsPolicy")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var 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 DeliveryOptions

        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.DeliveryOptions = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * 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.DeliveryOptions) : this() {
            this.sendingPoolName = x.sendingPoolName
            this.tlsPolicy = x.tlsPolicy
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.DeliveryOptions = DeliveryOptions(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy