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

Class: Aws::RDS::Types::DescribeExportTasksMessage

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

Overview

Note:

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

{
  export_task_identifier: "String",
  source_arn: "String",
  filters: [
    {
      name: "String", # required
      values: ["String"], # required
    },
  ],
  marker: "String",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#export_task_identifierString

The identifier of the snapshot export task to be described.

Returns:

  • (String)

    The identifier of the snapshot export task to be described.

#filtersArray<Types::Filter>

Filters specify one or more snapshot exports to describe. The filters are specified as name-value pairs that define what to include in the output. Filter names and values are case-sensitive.

Supported filters include the following:

  • export-task-identifier - An identifier for the snapshot export task.

  • s3-bucket - The Amazon S3 bucket the snapshot is exported to.

  • source-arn - The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3

  • status - The status of the export task. Must be lowercase, for example, complete.

Returns:

  • (Array<Types::Filter>)

    Filters specify one or more snapshot exports to describe.

#markerString

An optional pagination token provided by a previous DescribeExportTasks request. If you specify this parameter, the response includes only records beyond the marker, up to the value specified by the MaxRecords parameter.

Returns:

  • (String)

    An optional pagination token provided by a previous DescribeExportTasks request.

#max_recordsInteger

The maximum number of records to include in the response. If more records exist than the specified value, a pagination token called a marker is included in the response. You can use the marker in a later DescribeExportTasks request to retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

Returns:

  • (Integer)

    The maximum number of records to include in the response.

#source_arnString

The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3.