io.burkard.cdk.services.appflow.cfnFlow.CustomConnectorSourcePropertiesProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.appflow.cfnFlow
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CustomConnectorSourcePropertiesProperty {
def apply(
entityName: String,
customProperties: Option[AnyRef] = None
): software.amazon.awscdk.services.appflow.CfnFlow.CustomConnectorSourcePropertiesProperty =
(new software.amazon.awscdk.services.appflow.CfnFlow.CustomConnectorSourcePropertiesProperty.Builder)
.entityName(entityName)
.customProperties(customProperties.orNull)
.build()
}