File Coverage

blib/lib/Paws/GameLift/CreateBuildOutput.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::GameLift::CreateBuildOutput;
3 1     1   371 use Moose;
  1         2  
  1         7  
4             has Build => (is => 'ro', isa => 'Paws::GameLift::Build');
5             has StorageLocation => (is => 'ro', isa => 'Paws::GameLift::S3Location');
6             has UploadCredentials => (is => 'ro', isa => 'Paws::GameLift::AwsCredentials');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::GameLift::CreateBuildOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Build => L<Paws::GameLift::Build>
20              
21             The newly created build record, including a unique build ID and status.
22              
23              
24             =head2 StorageLocation => L<Paws::GameLift::S3Location>
25              
26             Amazon S3 location specified in the request.
27              
28              
29             =head2 UploadCredentials => L<Paws::GameLift::AwsCredentials>
30              
31             This element is not currently in use.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;