Interface ReportGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ReportGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.843Z")
@Stability(Stable)
public interface ReportGroupProps
extends software.amazon.jsii.JsiiSerializable
Construction properties for
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.services.codebuild.*; import software.amazon.awscdk.services.s3.*; import software.amazon.awscdk.core.*; Bucket bucket; ReportGroupProps reportGroupProps = ReportGroupProps.builder() .exportBucket(bucket) .removalPolicy(RemovalPolicy.DESTROY) .reportGroupName("reportGroupName") .zipExport(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forReportGroupProps
static final class
An implementation forReportGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ReportGroupProps.Builder
builder()
default IBucket
An optional S3 bucket to export the reports to.default RemovalPolicy
What to do when this resource is deleted from a stack.default String
The physical name of the report group.default Boolean
Whether to output the report files into the export bucket as-is, or create a ZIP from them before doing the export.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExportBucket
An optional S3 bucket to export the reports to.Default: - the reports will not be exported
-
getRemovalPolicy
What to do when this resource is deleted from a stack.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
-
getReportGroupName
The physical name of the report group.Default: - CloudFormation-generated name
-
getZipExport
Whether to output the report files into the export bucket as-is, or create a ZIP from them before doing the export.Ignored if
invalid @link
exportBucket
Default: - false (the files will not be ZIPped)
-
builder
- Returns:
- a
ReportGroupProps.Builder
ofReportGroupProps
-