File Coverage

blib/lib/Paws/GameLift/Alias.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             package Paws::GameLift::Alias;
2 1     1   633 use Moose;
  1         4  
  1         12  
3             has AliasArn => (is => 'ro', isa => 'Str');
4             has AliasId => (is => 'ro', isa => 'Str');
5             has CreationTime => (is => 'ro', isa => 'Str');
6             has Description => (is => 'ro', isa => 'Str');
7             has LastUpdatedTime => (is => 'ro', isa => 'Str');
8             has Name => (is => 'ro', isa => 'Str');
9             has RoutingStrategy => (is => 'ro', isa => 'Paws::GameLift::RoutingStrategy');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::GameLift::Alias
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::GameLift::Alias object:
28              
29             $service_obj->Method(Att1 => { AliasArn => $value, ..., RoutingStrategy => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::GameLift::Alias object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->AliasArn
37              
38             =head1 DESCRIPTION
39              
40             Properties describing a fleet alias.
41              
42             Alias-related operations include:
43              
44             =over
45              
46             =item *
47              
48             CreateAlias
49              
50             =item *
51              
52             ListAliases
53              
54             =item *
55              
56             DescribeAlias
57              
58             =item *
59              
60             UpdateAlias
61              
62             =item *
63              
64             DeleteAlias
65              
66             =item *
67              
68             ResolveAlias
69              
70             =back
71              
72              
73             =head1 ATTRIBUTES
74              
75              
76             =head2 AliasArn => Str
77              
78             Unique identifier for an alias; alias ARNs are unique across all
79             regions.
80              
81              
82             =head2 AliasId => Str
83              
84             Unique identifier for an alias; alias IDs are unique within a region.
85              
86              
87             =head2 CreationTime => Str
88              
89             Time stamp indicating when this data object was created. Format is a
90             number expressed in Unix time as milliseconds (for example
91             "1469498468.057").
92              
93              
94             =head2 Description => Str
95              
96             Human-readable description of an alias.
97              
98              
99             =head2 LastUpdatedTime => Str
100              
101             Time stamp indicating when this data object was last modified. Format
102             is a number expressed in Unix time as milliseconds (for example
103             "1469498468.057").
104              
105              
106             =head2 Name => Str
107              
108             Descriptive label that is associated with an alias. Alias names do not
109             need to be unique.
110              
111              
112             =head2 RoutingStrategy => L<Paws::GameLift::RoutingStrategy>
113              
114             Alias configuration for the alias, including routing type and settings.
115              
116              
117              
118             =head1 SEE ALSO
119              
120             This class forms part of L<Paws>, describing an object used in L<Paws::GameLift>
121              
122             =head1 BUGS and CONTRIBUTIONS
123              
124             The source code is located here: https://github.com/pplu/aws-sdk-perl
125              
126             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
127              
128             =cut
129