@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.325Z") @Stability(value=Stable) public class CfnReportGroup extends CfnResource implements IInspectable
Represents a report group. A report group contains a collection of reports.
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.*;
CfnReportGroup cfnReportGroup = CfnReportGroup.Builder.create(this, "MyCfnReportGroup")
.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 | Class and Description |
|---|---|
static class |
CfnReportGroup.Builder
A fluent builder for
CfnReportGroup. |
static interface |
CfnReportGroup.ReportExportConfigProperty
Information about the location where the run of a report is exported.
|
static interface |
CfnReportGroup.S3ReportExportConfigProperty
Information about the S3 bucket where the raw data of a report are exported.
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnReportGroup(software.constructs.Construct scope,
String id,
CfnReportGroupProps props)
Create a new `AWS::CodeBuild::ReportGroup`.
|
protected |
CfnReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnReportGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn()
The ARN of the AWS CodeBuild report group, such as `arn:aws:codebuild:region:123456789012:report-group/myReportGroupName` .
|
protected Map<String,Object> |
getCfnProperties() |
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.
|
String |
getName()
The name of the `ReportGroup` .
|
TagManager |
getTags()
A list of tag key and value pairs associated with this report group.
|
String |
getType()
The type of the `ReportGroup` .
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDeleteReports(Boolean value)
When deleting a report group, specifies if reports within the report group should be deleted.
|
void |
setDeleteReports(IResolvable value)
When deleting a report group, specifies if reports within the report group should be deleted.
|
void |
setExportConfig(CfnReportGroup.ReportExportConfigProperty value)
Information about the destination where the raw data of this `ReportGroup` is exported.
|
void |
setExportConfig(IResolvable value)
Information about the destination where the raw data of this `ReportGroup` is exported.
|
void |
setName(String value)
The name of the `ReportGroup` .
|
void |
setType(String value)
The type of the `ReportGroup` .
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnReportGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnReportGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnReportGroupProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
These tags are available for use by AWS services that support AWS CodeBuild report group tags.
@Stability(value=Stable) @NotNull public Object getExportConfig()
@Stability(value=Stable)
public void setExportConfig(@NotNull
CfnReportGroup.ReportExportConfigProperty value)
@Stability(value=Stable)
public void setExportConfig(@NotNull
IResolvable value)
@Stability(value=Stable) @NotNull public String getType()
@Stability(value=Stable)
public void setType(@NotNull
String value)
@Stability(value=Stable) @Nullable public Object getDeleteReports()
@Stability(value=Stable)
public void setDeleteReports(@Nullable
Boolean value)
@Stability(value=Stable)
public void setDeleteReports(@Nullable
IResolvable value)
@Stability(value=Stable) @Nullable public String getName()
@Stability(value=Stable)
public void setName(@Nullable
String value)
Copyright © 2022. All rights reserved.