io.burkard.cdk.services.codebuild.ReportExportConfigProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.codebuild
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ReportExportConfigProperty {
def apply(
exportConfigType: String,
s3Destination: Option[software.amazon.awscdk.services.codebuild.CfnReportGroup.S3ReportExportConfigProperty] = None
): software.amazon.awscdk.services.codebuild.CfnReportGroup.ReportExportConfigProperty =
(new software.amazon.awscdk.services.codebuild.CfnReportGroup.ReportExportConfigProperty.Builder)
.exportConfigType(exportConfigType)
.s3Destination(s3Destination.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy