You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ReportExportConfig as input to an Aws::Client method, you can use a vanilla Hash:

{
  export_config_type: "S3", # accepts S3, NO_EXPORT
  s3_destination: {
    bucket: "NonEmptyString",
    path: "String",
    packaging: "ZIP", # accepts ZIP, NONE
    encryption_key: "NonEmptyString",
    encryption_disabled: false,
  },
}

Information about the location where the run of a report is exported.

Returned by:

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.

    Possible values:

    • S3
    • NO_EXPORT

Returns:

  • (String)

    The export configuration type.

#s3_destinationTypes::S3ReportExportConfig

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

Returns:

  • (Types::S3ReportExportConfig)

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