Class: Aws::CodeBuild::Types::ReportExportConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ReportExportConfig
- Defined in:
- gems/aws-sdk-codebuild/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.
5048 5049 5050 5051 5052 5053 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5048 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.
5048 5049 5050 5051 5052 5053 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 5048 class ReportExportConfig < Struct.new( :export_config_type, :s3_destination) SENSITIVE = [] include Aws::Structure end |