@Stability(value=Stable)
public static interface CfnReportGroup.S3ReportExportConfigProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getBucket()
The name of the S3 bucket where the raw data of a report are exported.
|
default String |
getBucketOwner()
The AWS account identifier of the owner of the Amazon S3 bucket.
|
default Object |
getEncryptionDisabled()
A boolean value that specifies if the results of a report are encrypted.
|
default String |
getEncryptionKey()
The encryption key for the report's encrypted raw data.
|
default String |
getPackaging()
The type of build output artifact to create.
|
default String |
getPath()
The path to the exported report's raw data results.
|
@Stability(value=Stable) @NotNull String getBucket()
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default Object getEncryptionDisabled()
@Stability(value=Stable) @Nullable default String getEncryptionKey()
@Stability(value=Stable) @Nullable default 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.@Stability(value=Stable) @Nullable default String getPath()
@Stability(value=Stable) static CfnReportGroup.S3ReportExportConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.