io.burkard.cdk.services.ssm.cfnAssociation.S3OutputLocationProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.ssm.cfnAssociation
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object S3OutputLocationProperty {
def apply(
outputS3Region: Option[String] = None,
outputS3BucketName: Option[String] = None,
outputS3KeyPrefix: Option[String] = None
): software.amazon.awscdk.services.ssm.CfnAssociation.S3OutputLocationProperty =
(new software.amazon.awscdk.services.ssm.CfnAssociation.S3OutputLocationProperty.Builder)
.outputS3Region(outputS3Region.orNull)
.outputS3BucketName(outputS3BucketName.orNull)
.outputS3KeyPrefix(outputS3KeyPrefix.orNull)
.build()
}