public static interface CfnReportGroup.S3ReportExportConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnReportGroup.S3ReportExportConfigProperty.Builder
A builder for
CfnReportGroup.S3ReportExportConfigProperty |
static class |
CfnReportGroup.S3ReportExportConfigProperty.Jsii$Proxy
An implementation for
CfnReportGroup.S3ReportExportConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnReportGroup.S3ReportExportConfigProperty.Builder |
builder() |
java.lang.String |
getBucket()
The name of the S3 bucket where the raw data of a report are exported.
|
default java.lang.String |
getBucketOwner()
The AWS account identifier of the owner of the Amazon S3 bucket.
|
default java.lang.Object |
getEncryptionDisabled()
A boolean value that specifies if the results of a report are encrypted.
|
default java.lang.String |
getEncryptionKey()
The encryption key for the report's encrypted raw data.
|
default java.lang.String |
getPackaging()
The type of build output artifact to create.
|
default java.lang.String |
getPath()
The path to the exported report's raw data results.
|
java.lang.String getBucket()
default java.lang.String getBucketOwner()
This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.
default java.lang.Object getEncryptionDisabled()
default java.lang.String getEncryptionKey()
default java.lang.String getPackaging()
NONE
: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.ZIP
: CodeBuild creates a ZIP file with the raw data in the output bucket.default java.lang.String getPath()
static CfnReportGroup.S3ReportExportConfigProperty.Builder builder()