@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.327Z") @Stability(value=Stable) public interface CfnReportGroupProps 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.*;
CfnReportGroupProps cfnReportGroupProps = CfnReportGroupProps.builder()
.exportConfig(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())
.type("type")
// the properties below are optional
.deleteReports(false)
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnReportGroupProps.Builder
A builder for
CfnReportGroupProps |
static class |
CfnReportGroupProps.Jsii$Proxy
An implementation for
CfnReportGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnReportGroupProps.Builder |
builder() |
default Object |
getDeleteReports()
When deleting a report group, specifies if reports within the report group should be deleted.
|
Object |
getExportConfig()
Information about the destination where the raw data of this `ReportGroup` is exported.
|
default String |
getName()
The name of the `ReportGroup` .
|
default List<CfnTag> |
getTags()
A list of tag key and value pairs associated with this report group.
|
String |
getType()
The type of the `ReportGroup` .
|
@Stability(value=Stable) @NotNull Object getExportConfig()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getDeleteReports()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
These tags are available for use by AWS services that support AWS CodeBuild report group tags.
@Stability(value=Stable) static CfnReportGroupProps.Builder builder()
CfnReportGroupProps.Builder of CfnReportGroupPropsCopyright © 2022. All rights reserved.