Class: Aws::CodeBuild::Types::ReportExportConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ReportExportConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about the location where the run of a report is exported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#export_config_type ⇒ String
The export configuration type.
-
#s3_destination ⇒ Types::S3ReportExportConfig
A ‘S3ReportExportConfig` object that contains information about the S3 bucket where the run of a report is exported.
Instance Attribute Details
#export_config_type ⇒ String
The export configuration type. Valid values are:
-
‘S3`: The report results are exported to an S3 bucket.
-
‘NO_EXPORT`: The report results are not exported.
4353 4354 4355 4356 4357 4358 |
# File 'lib/aws-sdk-codebuild/types.rb', line 4353 class ReportExportConfig < Struct.new( :export_config_type, :s3_destination) SENSITIVE = [] include Aws::Structure end |
#s3_destination ⇒ Types::S3ReportExportConfig
A ‘S3ReportExportConfig` object that contains information about the S3 bucket where the run of a report is exported.
4353 4354 4355 4356 4357 4358 |
# File 'lib/aws-sdk-codebuild/types.rb', line 4353 class ReportExportConfig < Struct.new( :export_config_type, :s3_destination) SENSITIVE = [] include Aws::Structure end |