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

io.burkard.cdk.services.customerprofiles.cfnIntegration.TriggerConfigProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.customerprofiles.cfnIntegration

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

  def apply(
    triggerType: String,
    triggerProperties: Option[software.amazon.awscdk.services.customerprofiles.CfnIntegration.TriggerPropertiesProperty] = None
  ): software.amazon.awscdk.services.customerprofiles.CfnIntegration.TriggerConfigProperty =
    (new software.amazon.awscdk.services.customerprofiles.CfnIntegration.TriggerConfigProperty.Builder)
      .triggerType(triggerType)
      .triggerProperties(triggerProperties.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy