Class CfnReportGroup
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.codebuild.CfnReportGroup
- All Implemented Interfaces:
IEnvironmentAware,IInspectable,ITaggable,IReportGroupRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:00.618Z")
@Stability(Stable)
public class CfnReportGroup
extends CfnResource
implements IInspectable, IReportGroupRef, ITaggable
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnReportGroup.static interfaceInformation about the location where the run of a report is exported.static interfaceInformation about the S3 bucket where the raw data of a report are exported.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.codebuild.IReportGroupRef
IReportGroupRef.Jsii$Default, IReportGroupRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnReportGroup(software.amazon.jsii.JsiiObjectRef objRef) CfnReportGroup(software.constructs.Construct scope, String id, CfnReportGroupProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe ARN of the AWS CodeBuild report group, such asarn:aws:codebuild:region:123456789012:report-group/myReportGroupName.When deleting a report group, specifies if reports within the report group should be deleted.Information about the destination where the raw data of thisReportGroupis exported.getName()The name of theReportGroup.A reference to a ReportGroup resource.getTags()Tag Manager which manages the tags for this resource.A list of tag key and value pairs associated with this report group.getType()The type of theReportGroup.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetDeleteReports(Boolean value) When deleting a report group, specifies if reports within the report group should be deleted.voidsetDeleteReports(IResolvable value) When deleting a report group, specifies if reports within the report group should be deleted.voidsetExportConfig(IResolvable value) Information about the destination where the raw data of thisReportGroupis exported.voidInformation about the destination where the raw data of thisReportGroupis exported.voidThe name of theReportGroup.voidsetTagsRaw(List<CfnTag> value) A list of tag key and value pairs associated with this report group.voidThe type of theReportGroup.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnReportGroup
protected CfnReportGroup(software.amazon.jsii.JsiiObjectRef objRef) -
CfnReportGroup
protected CfnReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnReportGroup
@Stability(Stable) public CfnReportGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnReportGroupProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The ARN of the AWS CodeBuild report group, such asarn:aws:codebuild:region:123456789012:report-group/myReportGroupName. -
getAttrId
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getReportGroupRef
A reference to a ReportGroup resource.- Specified by:
getReportGroupRefin interfaceIReportGroupRef
-
getTags
Tag Manager which manages the tags for this resource. -
getExportConfig
Information about the destination where the raw data of thisReportGroupis exported.Returns union: either
IResolvableorCfnReportGroup.ReportExportConfigProperty -
setExportConfig
Information about the destination where the raw data of thisReportGroupis exported. -
setExportConfig
@Stability(Stable) public void setExportConfig(@NotNull CfnReportGroup.ReportExportConfigProperty value) Information about the destination where the raw data of thisReportGroupis exported. -
getType
The type of theReportGroup.This can be one of the following values:.
-
setType
The type of theReportGroup.This can be one of the following values:.
-
getDeleteReports
When deleting a report group, specifies if reports within the report group should be deleted.Returns union: either
BooleanorIResolvable -
setDeleteReports
When deleting a report group, specifies if reports within the report group should be deleted. -
setDeleteReports
When deleting a report group, specifies if reports within the report group should be deleted. -
getName
The name of theReportGroup. -
setName
The name of theReportGroup. -
getTagsRaw
A list of tag key and value pairs associated with this report group. -
setTagsRaw
A list of tag key and value pairs associated with this report group.
-