Interface IReportGroup
The interface representing the ReportGroup resource - either an existing one, imported using the ReportGroup.fromReportGroupName
method, or a new one, created with the ReportGroup
class.
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IReportGroup : IResource
Syntax (vb)
Public Interface IReportGroup
Inherits IResource, IConstruct, IDependable
Synopsis
Properties
ReportGroupArn | The ARN of the ReportGroup. |
ReportGroupName | The name of the ReportGroup. |
Methods
GrantWrite(IGrantable) | Grants the given entity permissions to write (that is, upload reports to) this report group. |
Properties
ReportGroupArn
The ARN of the ReportGroup.
string ReportGroupArn { get; }
Property Value
System.String
Remarks
Attribute: true
ReportGroupName
The name of the ReportGroup.
string ReportGroupName { get; }
Property Value
System.String
Remarks
Attribute: true
Methods
GrantWrite(IGrantable)
Grants the given entity permissions to write (that is, upload reports to) this report group.
Grant GrantWrite(IGrantable identity)
Parameters
- identity IGrantable
Returns