Class: Aws::CodeBuild::Types::ReportGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ReportGroup
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the
ReportGroup
. -
#created ⇒ Time
The date and time this
ReportGroup
was created. -
#export_config ⇒ Types::ReportExportConfig
Information about the destination where the raw data of this
ReportGroup
is exported. -
#last_modified ⇒ Time
The date and time this
ReportGroup
was last modified. -
#name ⇒ String
The name of the
ReportGroup
. -
#status ⇒ String
The status of the report group.
-
#tags ⇒ Array<Types::Tag>
A list of tag key and value pairs associated with this report group.
-
#type ⇒ String
The type of the
ReportGroup
.
Instance Attribute Details
#arn ⇒ String
The ARN of the ReportGroup
.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#created ⇒ Time
The date and time this ReportGroup
was created.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#export_config ⇒ Types::ReportExportConfig
Information about the destination where the raw data of this
ReportGroup
is exported.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
The date and time this ReportGroup
was last modified.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the ReportGroup
.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the report group. This property is read-only.
This can be one of the following values:
- ACTIVE
The report group is active.
- DELETING
The report group is in the process of being deleted.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tag key and value pairs associated with this report group.
These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the ReportGroup
. This can be one of the following
values:
- CODE_COVERAGE
The report group contains code coverage reports.
- TEST
The report group contains test reports.
5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5414 class ReportGroup < Struct.new( :arn, :name, :type, :export_config, :created, :last_modified, :tags, :status) SENSITIVE = [] include Aws::Structure end |