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.
5317 5318 5319 5320 5321 5322 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5317 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.
5317 5318 5319 5320 5321 5322 |
# File 'lib/aws-sdk-codebuild/types.rb', line 5317 class ReportExportConfig < Struct.new( :export_config_type, :s3_destination) SENSITIVE = [] include Aws::Structure end |