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

io.burkard.cdk.services.pinpointemail.cfnIdentity.MailFromAttributesProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.pinpointemail.cfnIdentity

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object MailFromAttributesProperty {

  def apply(
    behaviorOnMxFailure: Option[String] = None,
    mailFromDomain: Option[String] = None
  ): software.amazon.awscdk.services.pinpointemail.CfnIdentity.MailFromAttributesProperty =
    (new software.amazon.awscdk.services.pinpointemail.CfnIdentity.MailFromAttributesProperty.Builder)
      .behaviorOnMxFailure(behaviorOnMxFailure.orNull)
      .mailFromDomain(mailFromDomain.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy