io.burkard.cdk.services.pinpointemail.CfnConfigurationSetEventDestinationProps.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.pinpointemail
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CfnConfigurationSetEventDestinationProps {
def apply(
configurationSetName: String,
eventDestinationName: String,
eventDestination: Option[software.amazon.awscdk.services.pinpointemail.CfnConfigurationSetEventDestination.EventDestinationProperty] = None
): software.amazon.awscdk.services.pinpointemail.CfnConfigurationSetEventDestinationProps =
(new software.amazon.awscdk.services.pinpointemail.CfnConfigurationSetEventDestinationProps.Builder)
.configurationSetName(configurationSetName)
.eventDestinationName(eventDestinationName)
.eventDestination(eventDestination.orNull)
.build()
}