Class: Aws::StorageGateway::Types::DescribeTapeArchivesInput

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

Overview

Note:

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

{
  tape_arns: ["TapeARN"],
  marker: "Marker",
  limit: 1,
}

DescribeTapeArchivesInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

Specifies that the number of virtual tapes described be limited to the specified number.

Returns:

  • (Integer)


3501
3502
3503
3504
3505
3506
3507
# File 'lib/aws-sdk-storagegateway/types.rb', line 3501

class DescribeTapeArchivesInput < Struct.new(
  :tape_arns,
  :marker,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#markerString

An opaque string that indicates the position at which to begin describing virtual tapes.

Returns:

  • (String)


3501
3502
3503
3504
3505
3506
3507
# File 'lib/aws-sdk-storagegateway/types.rb', line 3501

class DescribeTapeArchivesInput < Struct.new(
  :tape_arns,
  :marker,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#tape_arnsArray<String>

Specifies one or more unique Amazon Resource Names (ARNs) that represent the virtual tapes you want to describe.

Returns:

  • (Array<String>)


3501
3502
3503
3504
3505
3506
3507
# File 'lib/aws-sdk-storagegateway/types.rb', line 3501

class DescribeTapeArchivesInput < Struct.new(
  :tape_arns,
  :marker,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end