@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.441Z") @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()
`AWS::CodeBuild::ReportGroup.DeleteReports`.
|
Object |
getExportConfig()
`AWS::CodeBuild::ReportGroup.ExportConfig`.
|
default String |
getName()
`AWS::CodeBuild::ReportGroup.Name`.
|
default List<CfnTag> |
getTags()
`AWS::CodeBuild::ReportGroup.Tags`.
|
String |
getType()
`AWS::CodeBuild::ReportGroup.Type`.
|
@Stability(value=Stable) @Nullable default Object getDeleteReports()
@Stability(value=Stable) @NotNull Object getExportConfig()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) static CfnReportGroupProps.Builder builder()
CfnReportGroupProps.Builder of CfnReportGroupPropsCopyright © 2021. All rights reserved.