@Stability(value=Stable)
public static interface CfnReportGroup.ReportExportConfigProperty
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.*; ReportExportConfigProperty reportExportConfigProperty = ReportExportConfigProperty.builder() .exportConfigType("exportConfigType") // the properties below are optional .s3Destination(S3ReportExportConfigProperty.builder() .bucket("bucket") // the properties below are optional .bucketOwner("bucketOwner") .encryptionDisabled(false) .encryptionKey("encryptionKey") .packaging("packaging") .path("path") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnReportGroup.ReportExportConfigProperty.Builder
A builder for
CfnReportGroup.ReportExportConfigProperty |
static class |
CfnReportGroup.ReportExportConfigProperty.Jsii$Proxy
An implementation for
CfnReportGroup.ReportExportConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnReportGroup.ReportExportConfigProperty.Builder |
builder() |
String |
getExportConfigType()
The export configuration type.
|
default Object |
getS3Destination()
A `S3ReportExportConfig` object that contains information about the S3 bucket where the run of a report is exported.
|
@Stability(value=Stable) @NotNull String getExportConfigType()
S3
: The report results are exported to an S3 bucket.NO_EXPORT
: The report results are not exported.@Stability(value=Stable) @Nullable default Object getS3Destination()
@Stability(value=Stable) static CfnReportGroup.ReportExportConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.