![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ses.kotlin.outputs.ConfigurationSetTrackingOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ses.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* An object that defines the open and click tracking options for emails that you send using the configuration set.
* @property customRedirectDomain The domain to use for tracking open and click events.
*/
public data class ConfigurationSetTrackingOptions(
public val customRedirectDomain: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ses.outputs.ConfigurationSetTrackingOptions): ConfigurationSetTrackingOptions = ConfigurationSetTrackingOptions(
customRedirectDomain = javaType.customRedirectDomain().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy