Class: Aws::CodeBuild::Types::ReportExportConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#export_config_typeString

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.

Returns:

  • (String)


4931
4932
4933
4934
4935
4936
# File 'lib/aws-sdk-codebuild/types.rb', line 4931

class ReportExportConfig < Struct.new(
  :export_config_type,
  :s3_destination)
  SENSITIVE = []
  include Aws::Structure
end

#s3_destinationTypes::S3ReportExportConfig

A ‘S3ReportExportConfig` object that contains information about the S3 bucket where the run of a report is exported.



4931
4932
4933
4934
4935
4936
# File 'lib/aws-sdk-codebuild/types.rb', line 4931

class ReportExportConfig < Struct.new(
  :export_config_type,
  :s3_destination)
  SENSITIVE = []
  include Aws::Structure
end