Class: Aws::CodeBuild::Types::DeleteReportGroupInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codebuild/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The ARN of the report group to delete.

Returns:

  • (String)


1947
1948
1949
1950
1951
1952
# File 'lib/aws-sdk-codebuild/types.rb', line 1947

class DeleteReportGroupInput < Struct.new(
  :arn,
  :delete_reports)
  SENSITIVE = []
  include Aws::Structure
end

#delete_reportsBoolean

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

Returns:

  • (Boolean)


1947
1948
1949
1950
1951
1952
# File 'lib/aws-sdk-codebuild/types.rb', line 1947

class DeleteReportGroupInput < Struct.new(
  :arn,
  :delete_reports)
  SENSITIVE = []
  include Aws::Structure
end