File Coverage

blib/lib/Paws/AppStream/CreateImageBuilder.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::AppStream::CreateImageBuilder;
3 1     1   391 use Moose;
  1         3  
  1         7  
4             has Description => (is => 'ro', isa => 'Str');
5             has DisplayName => (is => 'ro', isa => 'Str');
6             has DomainJoinInfo => (is => 'ro', isa => 'Paws::AppStream::DomainJoinInfo');
7             has EnableDefaultInternetAccess => (is => 'ro', isa => 'Bool');
8             has ImageName => (is => 'ro', isa => 'Str', required => 1);
9             has InstanceType => (is => 'ro', isa => 'Str', required => 1);
10             has Name => (is => 'ro', isa => 'Str', required => 1);
11             has VpcConfig => (is => 'ro', isa => 'Paws::AppStream::VpcConfig');
12              
13 1     1   6246 use MooseX::ClassAttribute;
  1         4  
  1         8  
14              
15             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateImageBuilder');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AppStream::CreateImageBuilderResult');
17             class_has _result_key => (isa => 'Str', is => 'ro');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::AppStream::CreateImageBuilder - Arguments for method CreateImageBuilder on Paws::AppStream
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method CreateImageBuilder on the
29             Amazon AppStream service. Use the attributes of this class
30             as arguments to method CreateImageBuilder.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateImageBuilder.
33              
34             As an example:
35              
36             $service_obj->CreateImageBuilder(Att1 => $value1, Att2 => $value2, ...);
37              
38             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.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 Description => Str
44              
45              
46              
47              
48              
49             =head2 DisplayName => Str
50              
51              
52              
53              
54              
55             =head2 DomainJoinInfo => L<Paws::AppStream::DomainJoinInfo>
56              
57              
58              
59              
60              
61             =head2 EnableDefaultInternetAccess => Bool
62              
63              
64              
65              
66              
67             =head2 B<REQUIRED> ImageName => Str
68              
69              
70              
71              
72              
73             =head2 B<REQUIRED> InstanceType => Str
74              
75              
76              
77              
78              
79             =head2 B<REQUIRED> Name => Str
80              
81              
82              
83              
84              
85             =head2 VpcConfig => L<Paws::AppStream::VpcConfig>
86              
87              
88              
89              
90              
91              
92             =head1 SEE ALSO
93              
94             This class forms part of L<Paws>, documenting arguments for method CreateImageBuilder in L<Paws::AppStream>
95              
96             =head1 BUGS and CONTRIBUTIONS
97              
98             The source code is located here: https://github.com/pplu/aws-sdk-perl
99              
100             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
101              
102             =cut
103