@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:04.478Z") @Stability(value=Experimental) public interface ReportGroupProps extends software.amazon.jsii.JsiiSerializable
ReportGroup.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.codebuild.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
ReportGroupProps reportGroupProps = ReportGroupProps.builder()
.exportBucket(bucket)
.removalPolicy(RemovalPolicy.DESTROY)
.reportGroupName("reportGroupName")
.zipExport(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ReportGroupProps.Builder
A builder for
ReportGroupProps |
static class |
ReportGroupProps.Jsii$Proxy
An implementation for
ReportGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static ReportGroupProps.Builder |
builder() |
default IBucket |
getExportBucket()
(experimental) An optional S3 bucket to export the reports to.
|
default RemovalPolicy |
getRemovalPolicy()
(experimental) What to do when this resource is deleted from a stack.
|
default String |
getReportGroupName()
(experimental) The physical name of the report group.
|
default Boolean |
getZipExport()
(experimental) Whether to output the report files into the export bucket as-is, or create a ZIP from them before doing the export.
|
@Stability(value=Experimental) @Nullable default IBucket getExportBucket()
Default: - the reports will not be exported
@Stability(value=Experimental) @Nullable default RemovalPolicy getRemovalPolicy()
As CodeBuild does not allow deleting a ResourceGroup that has reports inside of it, this is set to retain the resource by default.
Default: RemovalPolicy.RETAIN
@Stability(value=Experimental) @Nullable default String getReportGroupName()
Default: - CloudFormation-generated name
@Stability(value=Experimental) @Nullable default Boolean getZipExport()
Ignored if {@link exportBucket} has not been provided.
Default: - false (the files will not be ZIPped)
@Stability(value=Experimental) static ReportGroupProps.Builder builder()
ReportGroupProps.Builder of ReportGroupPropsCopyright © 2022. All rights reserved.