@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.365Z") @Stability(value=Stable) public class ReportGroup extends Resource implements IReportGroup
Example:
Source source;
// create a new ReportGroup
ReportGroup reportGroup = new ReportGroup(this, "ReportGroup");
Project project = Project.Builder.create(this, "Project")
.source(source)
.buildSpec(BuildSpec.fromObject(Map.of(
// ...
"reports", Map.of(
reportGroup.getReportGroupArn(), Map.of(
"files", "**/*",
"base-directory", "build/test-results")))))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
ReportGroup.Builder
A fluent builder for
ReportGroup. |
software.amazon.jsii.JsiiObject.InitializationModeIReportGroup.Jsii$Default, IReportGroup.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
|
ReportGroup(software.constructs.Construct scope,
String id) |
|
ReportGroup(software.constructs.Construct scope,
String id,
ReportGroupProps props) |
protected |
ReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
ReportGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
static IReportGroup |
fromReportGroupName(software.constructs.Construct scope,
String id,
String reportGroupName)
Reference an existing ReportGroup, defined outside of the CDK code, by name.
|
protected IBucket |
getExportBucket() |
String |
getReportGroupArn()
The ARN of the ReportGroup.
|
String |
getReportGroupName()
The name of the ReportGroup.
|
protected ReportGroupType |
getType() |
Grant |
grantWrite(IGrantable identity)
Grants the given entity permissions to write (that is, upload reports to) this report group.
|
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResourcejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitapplyRemovalPolicy, getEnv, getStackprotected ReportGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected ReportGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public ReportGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@Nullable
ReportGroupProps props)
scope - This parameter is required.id - This parameter is required.props - @Stability(value=Stable)
public ReportGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id)
scope - This parameter is required.id - This parameter is required.@Stability(value=Stable) @NotNull public static IReportGroup fromReportGroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String reportGroupName)
scope - This parameter is required.id - This parameter is required.reportGroupName - This parameter is required.@Stability(value=Stable) @NotNull public Grant grantWrite(@NotNull IGrantable identity)
grantWrite in interface IReportGroupidentity - This parameter is required.@Stability(value=Stable) @NotNull public String getReportGroupArn()
getReportGroupArn in interface IReportGroup@Stability(value=Stable) @NotNull public String getReportGroupName()
getReportGroupName in interface IReportGroup@Stability(value=Stable) @Nullable protected IBucket getExportBucket()
@Stability(value=Stable) @Nullable protected ReportGroupType getType()
Copyright © 2022. All rights reserved.