Interface CfnReportGroup.S3ReportExportConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReportGroup.S3ReportExportConfigProperty.Jsii$Proxy
Enclosing class:
CfnReportGroup

@Stability(Stable) public static interface CfnReportGroup.S3ReportExportConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about the S3 bucket where the raw data of a report are exported.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codebuild.*;
 S3ReportExportConfigProperty s3ReportExportConfigProperty = S3ReportExportConfigProperty.builder()
         .bucket("bucket")
         // the properties below are optional
         .bucketOwner("bucketOwner")
         .encryptionDisabled(false)
         .encryptionKey("encryptionKey")
         .packaging("packaging")
         .path("path")
         .build();
 

See Also: