File Coverage

blib/lib/Paws/StorageGateway/CreateSnapshotOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::StorageGateway::CreateSnapshotOutput;
3 1     1   599 use Moose;
  1         3  
  1         8  
4             has SnapshotId => (is => 'ro', isa => 'Str');
5             has VolumeARN => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::StorageGateway::CreateSnapshotOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 SnapshotId => Str
19              
20             The snapshot ID that is used to refer to the snapshot in future
21             operations such as describing snapshots (Amazon Elastic Compute Cloud
22             API C<DescribeSnapshots>) or creating a volume from a snapshot
23             (CreateStorediSCSIVolume).
24              
25              
26             =head2 VolumeARN => Str
27              
28             The Amazon Resource Name (ARN) of the volume of which the snapshot was
29             taken.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;