File Coverage

blib/lib/Paws/GameLift/ListBuilds.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::GameLift::ListBuilds;
3 1     1   446 use Moose;
  1         2  
  1         7  
4             has Limit => (is => 'ro', isa => 'Int');
5             has NextToken => (is => 'ro', isa => 'Str');
6             has Status => (is => 'ro', isa => 'Str');
7              
8 1     1   6199 use MooseX::ClassAttribute;
  1         3  
  1         9  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListBuilds');
11             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::GameLift::ListBuildsOutput');
12             class_has _result_key => (isa => 'Str', is => 'ro');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::GameLift::ListBuilds - Arguments for method ListBuilds on Paws::GameLift
20              
21             =head1 DESCRIPTION
22              
23             This class represents the parameters used for calling the method ListBuilds on the
24             Amazon GameLift service. Use the attributes of this class
25             as arguments to method ListBuilds.
26              
27             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListBuilds.
28              
29             As an example:
30              
31             $service_obj->ListBuilds(Att1 => $value1, Att2 => $value2, ...);
32              
33             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34              
35             =head1 ATTRIBUTES
36              
37              
38             =head2 Limit => Int
39              
40             Maximum number of results to return. Use this parameter with
41             C<NextToken> to get results as a set of sequential pages.
42              
43              
44              
45             =head2 NextToken => Str
46              
47             Token that indicates the start of the next sequential page of results.
48             Use the token that is returned with a previous call to this action. To
49             specify the start of the result set, do not specify a value.
50              
51              
52              
53             =head2 Status => Str
54              
55             Build status to filter results by. To retrieve all builds, leave this
56             parameter empty.
57              
58             Possible build statuses include the following:
59              
60             =over
61              
62             =item *
63              
64             B<INITIALIZED> E<ndash> A new build has been defined, but no files have
65             been uploaded. You cannot create fleets for builds that are in this
66             status. When a build is successfully created, the build status is set
67             to this value.
68              
69             =item *
70              
71             B<READY> E<ndash> The game build has been successfully uploaded. You
72             can now create new fleets for this build.
73              
74             =item *
75              
76             B<FAILED> E<ndash> The game build upload failed. You cannot create new
77             fleets for this build.
78              
79             =back
80              
81              
82             Valid values are: C<"INITIALIZED">, C<"READY">, C<"FAILED">
83              
84              
85             =head1 SEE ALSO
86              
87             This class forms part of L<Paws>, documenting arguments for method ListBuilds in L<Paws::GameLift>
88              
89             =head1 BUGS and CONTRIBUTIONS
90              
91             The source code is located here: https://github.com/pplu/aws-sdk-perl
92              
93             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
94              
95             =cut
96