File Coverage

blib/lib/Paws/MobileHub/ExportProjectResult.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::MobileHub::ExportProjectResult;
3 1     1   523 use Moose;
  1         2  
  1         8  
4             has DownloadUrl => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'downloadUrl');
5             has ShareUrl => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'shareUrl');
6             has SnapshotId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'snapshotId');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::MobileHub::ExportProjectResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DownloadUrl => Str
21              
22             URL which can be used to download the exported project configuation
23             file(s).
24              
25              
26             =head2 ShareUrl => Str
27              
28             URL which can be shared to allow other AWS users to create their own
29             project in AWS Mobile Hub with the same configuration as the specified
30             project. This URL pertains to a snapshot in time of the project
31             configuration that is created when this API is called. If you want to
32             share additional changes to your project configuration, then you will
33             need to create and share a new snapshot by calling this method again.
34              
35              
36             =head2 SnapshotId => Str
37              
38             Unique identifier for the exported snapshot of the project
39             configuration. This snapshot identifier is included in the share URL.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46