line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::GameLift::RequestUploadCredentialsOutput; |
3
|
1
|
|
|
1
|
|
364
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has StorageLocation => (is => 'ro', isa => 'Paws::GameLift::S3Location'); |
5
|
|
|
|
|
|
|
has UploadCredentials => (is => 'ro', isa => 'Paws::GameLift::AwsCredentials'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::GameLift::RequestUploadCredentialsOutput |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 StorageLocation => L<Paws::GameLift::S3Location> |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Amazon S3 path and key, identifying where the game build files are |
21
|
|
|
|
|
|
|
stored. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 UploadCredentials => L<Paws::GameLift::AwsCredentials> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
AWS credentials required when uploading a game build to the storage |
27
|
|
|
|
|
|
|
location. These credentials have a limited lifespan and are valid only |
28
|
|
|
|
|
|
|
for the build they were issued for. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |