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

io.burkard.cdk.services.codebuild.ReportExportConfigProperty.scala Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
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