Class: Aws::StorageGateway::Types::ListTapesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ListTapesOutput
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
A JSON object containing the following fields:
ListTapesOutput$Marker
ListTapesOutput$VolumeInfos
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#marker ⇒ String
A string that indicates the position at which to begin returning the next list of tapes.
-
#tape_infos ⇒ Array<Types::TapeInfo>
An array of TapeInfo objects, where each object describes a single tape.
Instance Attribute Details
#marker ⇒ String
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
5067 5068 5069 5070 5071 5072 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 5067 class ListTapesOutput < Struct.new( :tape_infos, :marker) SENSITIVE = [] include Aws::Structure end |
#tape_infos ⇒ Array<Types::TapeInfo>
An array of TapeInfo objects, where each object describes a single
tape. If there are no tapes in the tape library or VTS, then the
TapeInfos
is an empty array.
5067 5068 5069 5070 5071 5072 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 5067 class ListTapesOutput < Struct.new( :tape_infos, :marker) SENSITIVE = [] include Aws::Structure end |