Class: Aws::StorageGateway::Types::ListTapePoolsInput

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 ListTapePoolsInput data as a hash:

{
  pool_arns: ["PoolARN"],
  marker: "Marker",
  limit: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

An optional number limit for the tape pools in the list returned by this call.

Returns:

  • (Integer)


4578
4579
4580
4581
4582
4583
4584
# File 'lib/aws-sdk-storagegateway/types.rb', line 4578

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

#markerString

A string that indicates the position at which to begin the returned list of tape pools.

Returns:

  • (String)


4578
4579
4580
4581
4582
4583
4584
# File 'lib/aws-sdk-storagegateway/types.rb', line 4578

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

#pool_arnsArray<String>

The Amazon Resource Name (ARN) of each of the custom tape pools you want to list. If you don’t specify a custom tape pool ARN, the response lists all custom tape pools.

Returns:

  • (Array<String>)


4578
4579
4580
4581
4582
4583
4584
# File 'lib/aws-sdk-storagegateway/types.rb', line 4578

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