Class: Aws::CodeBuild::Types::DeleteReportGroupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::DeleteReportGroupInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the report group to delete.
-
#delete_reports ⇒ Boolean
If ‘true`, deletes any reports that belong to a report group before deleting the report group.
Instance Attribute Details
#arn ⇒ String
The ARN of the report group to delete.
2006 2007 2008 2009 2010 2011 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2006 class DeleteReportGroupInput < Struct.new( :arn, :delete_reports) SENSITIVE = [] include Aws::Structure end |
#delete_reports ⇒ Boolean
If ‘true`, deletes any reports that belong to a report group before deleting the report group.
If ‘false`, you must delete any reports in the report group. Use
- ListReportsForReportGroup][1
-
to get the reports in a report group.
Use [DeleteReport] to delete the reports. If you call ‘DeleteReportGroup` for a report group that contains one or more reports, an exception is thrown.
[1]: docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html [2]: docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
2006 2007 2008 2009 2010 2011 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2006 class DeleteReportGroupInput < Struct.new( :arn, :delete_reports) SENSITIVE = [] include Aws::Structure end |