File Coverage

blib/lib/Paws/AppStream/Fleet.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::AppStream::Fleet;
2 1     1   479 use Moose;
  1         3  
  1         7  
3             has Arn => (is => 'ro', isa => 'Str', required => 1);
4             has ComputeCapacityStatus => (is => 'ro', isa => 'Paws::AppStream::ComputeCapacityStatus', required => 1);
5             has CreatedTime => (is => 'ro', isa => 'Str');
6             has Description => (is => 'ro', isa => 'Str');
7             has DisconnectTimeoutInSeconds => (is => 'ro', isa => 'Int');
8             has DisplayName => (is => 'ro', isa => 'Str');
9             has DomainJoinInfo => (is => 'ro', isa => 'Paws::AppStream::DomainJoinInfo');
10             has EnableDefaultInternetAccess => (is => 'ro', isa => 'Bool');
11             has FleetErrors => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::FleetError]');
12             has FleetType => (is => 'ro', isa => 'Str');
13             has ImageName => (is => 'ro', isa => 'Str', required => 1);
14             has InstanceType => (is => 'ro', isa => 'Str', required => 1);
15             has MaxUserDurationInSeconds => (is => 'ro', isa => 'Int');
16             has Name => (is => 'ro', isa => 'Str', required => 1);
17             has State => (is => 'ro', isa => 'Str', required => 1);
18             has VpcConfig => (is => 'ro', isa => 'Paws::AppStream::VpcConfig');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::AppStream::Fleet
26              
27             =head1 USAGE
28              
29             This class represents one of two things:
30              
31             =head3 Arguments in a call to a service
32              
33             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
34             Each attribute should be used as a named argument in the calls that expect this type of object.
35              
36             As an example, if Att1 is expected to be a Paws::AppStream::Fleet object:
37              
38             $service_obj->Method(Att1 => { Arn => $value, ..., VpcConfig => $value });
39              
40             =head3 Results returned from an API call
41              
42             Use accessors for each attribute. If Att1 is expected to be an Paws::AppStream::Fleet object:
43              
44             $result = $service_obj->Method(...);
45             $result->Att1->Arn
46              
47             =head1 DESCRIPTION
48              
49             Contains the parameters for a fleet.
50              
51             =head1 ATTRIBUTES
52              
53              
54             =head2 B<REQUIRED> Arn => Str
55              
56             The ARN for the fleet.
57              
58              
59             =head2 B<REQUIRED> ComputeCapacityStatus => L<Paws::AppStream::ComputeCapacityStatus>
60              
61             The capacity status for the fleet.
62              
63              
64             =head2 CreatedTime => Str
65              
66             The time the fleet was created.
67              
68              
69             =head2 Description => Str
70              
71             The description displayed to end users.
72              
73              
74             =head2 DisconnectTimeoutInSeconds => Int
75              
76             The time after disconnection when a session is considered to have
77             ended, in seconds. If a user who was disconnected reconnects within
78             this time interval, the user is connected to their previous session.
79             Specify a value between 60 and 57600.
80              
81              
82             =head2 DisplayName => Str
83              
84             The fleet name displayed to end users.
85              
86              
87             =head2 DomainJoinInfo => L<Paws::AppStream::DomainJoinInfo>
88              
89             The information needed for streaming instances to join a domain.
90              
91              
92             =head2 EnableDefaultInternetAccess => Bool
93              
94             Indicates whether default internet access is enabled for the fleet.
95              
96              
97             =head2 FleetErrors => ArrayRef[L<Paws::AppStream::FleetError>]
98              
99             The fleet errors.
100              
101              
102             =head2 FleetType => Str
103              
104            
105              
106              
107             =head2 B<REQUIRED> ImageName => Str
108              
109             The image used by the fleet.
110              
111              
112             =head2 B<REQUIRED> InstanceType => Str
113              
114             The instance type to use when launching fleet instances.
115              
116              
117             =head2 MaxUserDurationInSeconds => Int
118              
119             The maximum time that a streaming session can run, in seconds. Specify
120             a value between 600 and 57600.
121              
122              
123             =head2 B<REQUIRED> Name => Str
124              
125             The name of the fleet.
126              
127              
128             =head2 B<REQUIRED> State => Str
129              
130             The current state for the fleet.
131              
132              
133             =head2 VpcConfig => L<Paws::AppStream::VpcConfig>
134              
135             The VPC configuration for the fleet.
136              
137              
138              
139             =head1 SEE ALSO
140              
141             This class forms part of L<Paws>, describing an object used in L<Paws::AppStream>
142              
143             =head1 BUGS and CONTRIBUTIONS
144              
145             The source code is located here: https://github.com/pplu/aws-sdk-perl
146              
147             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
148              
149             =cut
150