File Coverage

blib/lib/Paws/AppStream/ImageBuilder.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::ImageBuilder;
2 1     1   401 use Moose;
  1         3  
  1         8  
3             has Arn => (is => 'ro', isa => 'Str');
4             has CreatedTime => (is => 'ro', isa => 'Str');
5             has Description => (is => 'ro', isa => 'Str');
6             has DisplayName => (is => 'ro', isa => 'Str');
7             has DomainJoinInfo => (is => 'ro', isa => 'Paws::AppStream::DomainJoinInfo');
8             has EnableDefaultInternetAccess => (is => 'ro', isa => 'Bool');
9             has ImageArn => (is => 'ro', isa => 'Str');
10             has ImageBuilderErrors => (is => 'ro', isa => 'ArrayRef[Paws::AppStream::ResourceError]');
11             has InstanceType => (is => 'ro', isa => 'Str');
12             has Name => (is => 'ro', isa => 'Str', required => 1);
13             has Platform => (is => 'ro', isa => 'Str');
14             has State => (is => 'ro', isa => 'Str');
15             has StateChangeReason => (is => 'ro', isa => 'Paws::AppStream::ImageBuilderStateChangeReason');
16             has VpcConfig => (is => 'ro', isa => 'Paws::AppStream::VpcConfig');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::AppStream::ImageBuilder
24              
25             =head1 USAGE
26              
27             This class represents one of two things:
28              
29             =head3 Arguments in a call to a service
30              
31             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
32             Each attribute should be used as a named argument in the calls that expect this type of object.
33              
34             As an example, if Att1 is expected to be a Paws::AppStream::ImageBuilder object:
35              
36             $service_obj->Method(Att1 => { Arn => $value, ..., VpcConfig => $value });
37              
38             =head3 Results returned from an API call
39              
40             Use accessors for each attribute. If Att1 is expected to be an Paws::AppStream::ImageBuilder object:
41              
42             $result = $service_obj->Method(...);
43             $result->Att1->Arn
44              
45             =head1 DESCRIPTION
46              
47             This class has no description
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 Arn => Str
53              
54            
55              
56              
57             =head2 CreatedTime => Str
58              
59            
60              
61              
62             =head2 Description => Str
63              
64            
65              
66              
67             =head2 DisplayName => Str
68              
69            
70              
71              
72             =head2 DomainJoinInfo => L<Paws::AppStream::DomainJoinInfo>
73              
74            
75              
76              
77             =head2 EnableDefaultInternetAccess => Bool
78              
79            
80              
81              
82             =head2 ImageArn => Str
83              
84            
85              
86              
87             =head2 ImageBuilderErrors => ArrayRef[L<Paws::AppStream::ResourceError>]
88              
89            
90              
91              
92             =head2 InstanceType => Str
93              
94            
95              
96              
97             =head2 B<REQUIRED> Name => Str
98              
99            
100              
101              
102             =head2 Platform => Str
103              
104            
105              
106              
107             =head2 State => Str
108              
109            
110              
111              
112             =head2 StateChangeReason => L<Paws::AppStream::ImageBuilderStateChangeReason>
113              
114            
115              
116              
117             =head2 VpcConfig => L<Paws::AppStream::VpcConfig>
118              
119            
120              
121              
122              
123             =head1 SEE ALSO
124              
125             This class forms part of L<Paws>, describing an object used in L<Paws::AppStream>
126              
127             =head1 BUGS and CONTRIBUTIONS
128              
129             The source code is located here: https://github.com/pplu/aws-sdk-perl
130              
131             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
132              
133             =cut
134