io.burkard.cdk.services.appflow.cfnFlow.DestinationFlowConfigProperty.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 DestinationFlowConfigProperty {
def apply(
destinationConnectorProperties: software.amazon.awscdk.services.appflow.CfnFlow.DestinationConnectorPropertiesProperty,
connectorType: String,
connectorProfileName: Option[String] = None,
apiVersion: Option[String] = None
): software.amazon.awscdk.services.appflow.CfnFlow.DestinationFlowConfigProperty =
(new software.amazon.awscdk.services.appflow.CfnFlow.DestinationFlowConfigProperty.Builder)
.destinationConnectorProperties(destinationConnectorProperties)
.connectorType(connectorType)
.connectorProfileName(connectorProfileName.orNull)
.apiVersion(apiVersion.orNull)
.build()
}