Class: Aws::FSx::Types::DescribeBackupsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fsx/types.rb

Overview

Note:

When making an API call, you may pass DescribeBackupsRequest data as a hash:

{
  backup_ids: ["BackupId"],
  filters: [
    {
      name: "file-system-id", # accepts file-system-id, backup-type
      values: ["FilterValue"],
    },
  ],
  max_results: 1,
  next_token: "NextToken",
}

The request object for ‘DescribeBackups` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#backup_idsArray<String>

(Optional) IDs of the backups you want to retrieve (String). This overrides any filters. If any IDs are not found, BackupNotFound will be thrown.

Returns:

  • (Array<String>)


747
748
749
750
751
752
753
# File 'lib/aws-sdk-fsx/types.rb', line 747

class DescribeBackupsRequest < Struct.new(
  :backup_ids,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#filtersArray<Types::Filter>

(Optional) Filters structure. Supported names are file-system-id and backup-type.

Returns:



747
748
749
750
751
752
753
# File 'lib/aws-sdk-fsx/types.rb', line 747

class DescribeBackupsRequest < Struct.new(
  :backup_ids,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

(Optional) Maximum number of backups to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the ‘MaxResults` parameter specified in the request and the service’s internal maximum number of items per page.

Returns:

  • (Integer)


747
748
749
750
751
752
753
# File 'lib/aws-sdk-fsx/types.rb', line 747

class DescribeBackupsRequest < Struct.new(
  :backup_ids,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

(Optional) Opaque pagination token returned from a previous ‘DescribeBackups` operation (String). If a token present, the action continues the list from where the returning call left off.

Returns:

  • (String)


747
748
749
750
751
752
753
# File 'lib/aws-sdk-fsx/types.rb', line 747

class DescribeBackupsRequest < Struct.new(
  :backup_ids,
  :filters,
  :max_results,
  :next_token)
  include Aws::Structure
end