1
2package Paws::EC2::ImportSnapshotResult {
3  use Moose;
4  has Description => (is => 'ro', isa => 'Str', xmlname => 'description', traits => ['Unwrapped',]);
5  has ImportTaskId => (is => 'ro', isa => 'Str', xmlname => 'importTaskId', traits => ['Unwrapped',]);
6  has SnapshotTaskDetail => (is => 'ro', isa => 'Paws::EC2::SnapshotTaskDetail', xmlname => 'snapshotTaskDetail', traits => ['Unwrapped',]);
7
8}
91;
10
11### main pod documentation begin ###
12
13=head1 NAME
14
15Paws::EC2::ImportSnapshotResult
16
17=head1 ATTRIBUTES
18
19=head2 Description => Str
20
21
22
23A description of the import snapshot task.
24
25
26
27
28
29
30
31
32
33=head2 ImportTaskId => Str
34
35
36
37The ID of the import snapshot task.
38
39
40
41
42
43
44
45
46
47=head2 SnapshotTaskDetail => Paws::EC2::SnapshotTaskDetail
48
49
50
51Information about the import snapshot task.
52
53
54
55
56
57
58
59
60
61
62
63=cut
64
65