1
2package Paws::StorageGateway::DescribeTapeRecoveryPointsOutput {
3  use Moose;
4  has GatewayARN => (is => 'ro', isa => 'Str');
5  has Marker => (is => 'ro', isa => 'Str');
6  has TapeRecoveryPointInfos => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::TapeRecoveryPointInfo]');
7
8}
9
10### main pod documentation begin ###
11
12=head1 NAME
13
14Paws::StorageGateway::DescribeTapeRecoveryPointsOutput
15
16=head1 ATTRIBUTES
17
18=head2 GatewayARN => Str
19
20
21=head2 Marker => Str
22
23
24
25An opaque string that indicates the position at which the virtual tape
26recovery points that were listed for description ended.
27
28Use this marker in your next request to list the next set of virtual
29tape recovery points in the list. If there are no more recovery points
30to describe, this field does not appear in the response.
31
32
33
34
35
36
37
38
39
40=head2 TapeRecoveryPointInfos => ArrayRef[Paws::StorageGateway::TapeRecoveryPointInfo]
41
42
43
44An array of TapeRecoveryPointInfos that are available for the specified
45gateway.
46
47
48
49
50
51
52
53
54
55
56
57=cut
58
591;