File Coverage

blib/lib/Cfn/Resource/AWS/AppStream/ImageBuilder.pm
Criterion Covered Total %
statement 32 32 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod 0 2 0.0
total 44 46 95.6


line stmt bran cond sub pod time code
1             # AWS::AppStream::ImageBuilder generated from spec 20.1.0
2 1     1   642 use Moose::Util::TypeConstraints;
  1         6  
  1         12  
3              
4             coerce 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::AppStream::ImageBuilder->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::AppStream::ImageBuilder {
9 1     1   2050 use Moose;
  1         7  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ 'StreamingUrl' ]
15             }
16             sub supported_regions {
17 1     1 0 1168 [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','eu-central-1','eu-west-1','us-east-1','us-gov-west-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::VpcConfig',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::VpcConfig',
27             from 'HashRef',
28             via {
29             if (my $f = Cfn::TypeLibrary::try_function($_)) {
30             return $f
31             } else {
32             return Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::VpcConfig->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::VpcConfig {
37 1     1   7350 use Moose;
  1         11  
  1         6  
38 1     1   6745 use MooseX::StrictConstructor;
  1         3  
  1         10  
39             extends 'Cfn::Value::TypedValue';
40            
41             has SecurityGroupIds => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has SubnetIds => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             }
44              
45             subtype 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::DomainJoinInfo',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::DomainJoinInfo',
49             from 'HashRef',
50             via {
51             if (my $f = Cfn::TypeLibrary::try_function($_)) {
52             return $f
53             } else {
54             return Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::DomainJoinInfo->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::DomainJoinInfo {
59 1     1   3619 use Moose;
  1         5  
  1         6  
60 1     1   6696 use MooseX::StrictConstructor;
  1         4  
  1         6  
61             extends 'Cfn::Value::TypedValue';
62            
63             has DirectoryName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has OrganizationalUnitDistinguishedName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint',
67             as 'Cfn::Value',
68             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
69             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
70              
71             coerce 'ArrayOfCfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint',
72             from 'HashRef',
73             via {
74             if (my $f = Cfn::TypeLibrary::try_function($_)) {
75             return $f
76             } else {
77             die 'Only accepts functions';
78             }
79             },
80             from 'ArrayRef',
81             via {
82             Cfn::Value::Array->new(Value => [
83             map {
84             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint',
93             from 'HashRef',
94             via {
95             if (my $f = Cfn::TypeLibrary::try_function($_)) {
96             return $f
97             } else {
98             return Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::AccessEndpoint->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::AppStream::ImageBuilder::AccessEndpoint {
103 1     1   3593 use Moose;
  1         3  
  1         6  
104 1     1   6704 use MooseX::StrictConstructor;
  1         2  
  1         6  
105             extends 'Cfn::Value::TypedValue';
106            
107             has EndpointType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             has VpceId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             }
110              
111             package Cfn::Resource::Properties::AWS::AppStream::ImageBuilder {
112 1     1   3629 use Moose;
  1         4  
  1         6  
113 1     1   6694 use MooseX::StrictConstructor;
  1         2  
  1         9  
114             extends 'Cfn::Resource::Properties';
115            
116             has AccessEndpoints => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppStream::ImageBuilder::AccessEndpoint', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
117             has AppstreamAgentVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
118             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
119             has DisplayName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
120             has DomainJoinInfo => (isa => 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::DomainJoinInfo', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
121             has EnableDefaultInternetAccess => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             has IamRoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
123             has ImageArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
124             has ImageName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
125             has InstanceType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
126             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
127             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
128             has VpcConfig => (isa => 'Cfn::Resource::Properties::AWS::AppStream::ImageBuilder::VpcConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
129             }
130              
131             1;
132             ### main pod documentation begin ###
133              
134             =encoding UTF-8
135              
136             =head1 NAME
137              
138             Cfn::Resource::AWS::AppStream::ImageBuilder - Cfn resource for AWS::AppStream::ImageBuilder
139              
140             =head1 DESCRIPTION
141              
142             This module implements a Perl module that represents the CloudFormation object AWS::AppStream::ImageBuilder.
143              
144             See L<Cfn> for more information on how to use it.
145              
146             =head1 AUTHOR
147              
148             Jose Luis Martinez
149             CAPSiDE
150             jlmartinez@capside.com
151              
152             =head1 COPYRIGHT and LICENSE
153              
154             Copyright (c) 2013 by CAPSiDE
155             This code is distributed under the Apache 2 License. The full text of the
156             license can be found in the LICENSE file included with this module.
157              
158             =cut