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

Class: Aws::CodeBuild::Types::UpdateReportGroupInput

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

Overview

Note:

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

{
  arn: "NonEmptyString", # required
  export_config: {
    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,
    },
  },
  tags: [
    {
      key: "KeyInput",
      value: "ValueInput",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The ARN of the report group to update.

Returns:

  • (String)

    The ARN of the report group to update.

#export_configTypes::ReportExportConfig

Used to specify an updated export type. Valid values are:

  • S3: The report results are exported to an S3 bucket.

  • NO_EXPORT: The report results are not exported.

Returns:

#tagsArray<Types::Tag>

An updated list of tag key and value pairs associated with this report group.

These tags are available for use by AWS services that support AWS CodeBuild report group tags.

Returns:

  • (Array<Types::Tag>)

    An updated list of tag key and value pairs associated with this report group.