File Coverage

blib/lib/Paws/GameLift/PlacedPlayerSession.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::PlacedPlayerSession;
2 1     1   420 use Moose;
  1         3  
  1         7  
3             has PlayerId => (is => 'ro', isa => 'Str');
4             has PlayerSessionId => (is => 'ro', isa => 'Str');
5             1;
6              
7             ### main pod documentation begin ###
8              
9             =head1 NAME
10              
11             Paws::GameLift::PlacedPlayerSession
12              
13             =head1 USAGE
14              
15             This class represents one of two things:
16              
17             =head3 Arguments in a call to a service
18              
19             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
20             Each attribute should be used as a named argument in the calls that expect this type of object.
21              
22             As an example, if Att1 is expected to be a Paws::GameLift::PlacedPlayerSession object:
23              
24             $service_obj->Method(Att1 => { PlayerId => $value, ..., PlayerSessionId => $value });
25              
26             =head3 Results returned from an API call
27              
28             Use accessors for each attribute. If Att1 is expected to be an Paws::GameLift::PlacedPlayerSession object:
29              
30             $result = $service_obj->Method(...);
31             $result->Att1->PlayerId
32              
33             =head1 DESCRIPTION
34              
35             Information about a player session that was created as part of a
36             StartGameSessionPlacement request. This object contains only the player
37             ID and player session ID. To retrieve full details on a player session,
38             call DescribePlayerSessions with the player session ID.
39              
40             Player-session-related operations include:
41              
42             =over
43              
44             =item *
45              
46             CreatePlayerSession
47              
48             =item *
49              
50             CreatePlayerSessions
51              
52             =item *
53              
54             DescribePlayerSessions
55              
56             =item *
57              
58             Game session placements
59              
60             =over
61              
62             =item *
63              
64             StartGameSessionPlacement
65              
66             =item *
67              
68             DescribeGameSessionPlacement
69              
70             =item *
71              
72             StopGameSessionPlacement
73              
74             =back
75              
76             =back
77              
78              
79             =head1 ATTRIBUTES
80              
81              
82             =head2 PlayerId => Str
83              
84             Unique identifier for a player that is associated with this player
85             session.
86              
87              
88             =head2 PlayerSessionId => Str
89              
90             Unique identifier for a player session.
91              
92              
93              
94             =head1 SEE ALSO
95              
96             This class forms part of L<Paws>, describing an object used in L<Paws::GameLift>
97              
98             =head1 BUGS and CONTRIBUTIONS
99              
100             The source code is located here: https://github.com/pplu/aws-sdk-perl
101              
102             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
103              
104             =cut
105