Interface CfnReportGroup.ReportExportConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReportGroup.ReportExportConfigProperty.Jsii$Proxy
- Enclosing class:
CfnReportGroup
@Stability(Stable)
public static interface CfnReportGroup.ReportExportConfigProperty
extends software.amazon.jsii.JsiiSerializable
Information about the location where the run of a report is 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.*;
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReportGroup.ReportExportConfigPropertystatic final classAn implementation forCfnReportGroup.ReportExportConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExportConfigType
The export configuration type. Valid values are:.S3: The report results are exported to an S3 bucket.NO_EXPORT: The report results are not exported.
- See Also:
-
getS3Destination
AS3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.Returns union: either
IResolvableorCfnReportGroup.S3ReportExportConfigProperty- See Also:
-
builder
-