File Coverage

blib/lib/Cfn/Resource/AWS/EKS/FargateProfile.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod 0 2 0.0
total 36 38 94.7


line stmt bran cond sub pod time code
1             # AWS::EKS::FargateProfile generated from spec 20.1.0
2 1     1   743 use Moose::Util::TypeConstraints;
  1         4  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::EKS::FargateProfile',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::EKS::FargateProfile->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::EKS::FargateProfile {
9 1     1   2256 use Moose;
  1         2  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::EKS::FargateProfile', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ 'Arn' ]
15             }
16             sub supported_regions {
17 1     1 0 1073 [ 'af-south-1','ap-northeast-1','ap-southeast-1','ap-southeast-2','eu-central-1','eu-south-1','eu-west-1','us-east-1','us-east-2','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::EKS::FargateProfile::Label',
23             as 'Cfn::Value',
24             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
25             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
26              
27             coerce 'ArrayOfCfn::Resource::Properties::AWS::EKS::FargateProfile::Label',
28             from 'HashRef',
29             via {
30             if (my $f = Cfn::TypeLibrary::try_function($_)) {
31             return $f
32             } else {
33             die 'Only accepts functions';
34             }
35             },
36             from 'ArrayRef',
37             via {
38             Cfn::Value::Array->new(Value => [
39             map {
40             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::EKS::FargateProfile::Label')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::EKS::FargateProfile::Label',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::EKS::FargateProfile::Label',
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::EKS::FargateProfile::Label->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::EKS::FargateProfile::Label {
59 1     1   7513 use Moose;
  1         4  
  1         4  
60 1     1   6684 use MooseX::StrictConstructor;
  1         3  
  1         10  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
64             has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::EKS::FargateProfile::Selector',
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::EKS::FargateProfile::Selector',
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::EKS::FargateProfile::Selector')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::EKS::FargateProfile::Selector',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::EKS::FargateProfile::Selector',
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::EKS::FargateProfile::Selector->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::EKS::FargateProfile::Selector {
103 1     1   3897 use Moose;
  1         3  
  1         4  
104 1     1   6693 use MooseX::StrictConstructor;
  1         7  
  1         6  
105             extends 'Cfn::Value::TypedValue';
106            
107             has Labels => (isa => 'ArrayOfCfn::Resource::Properties::AWS::EKS::FargateProfile::Label', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
108             has Namespace => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
109             }
110              
111             package Cfn::Resource::Properties::AWS::EKS::FargateProfile {
112 1     1   3292 use Moose;
  1         3  
  1         7  
113 1     1   6493 use MooseX::StrictConstructor;
  1         2  
  1         5  
114             extends 'Cfn::Resource::Properties';
115            
116             has ClusterName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
117             has FargateProfileName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
118             has PodExecutionRoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
119             has Selectors => (isa => 'ArrayOfCfn::Resource::Properties::AWS::EKS::FargateProfile::Selector', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
120             has Subnets => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
121             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             }
123              
124             1;
125             ### main pod documentation begin ###
126              
127             =encoding UTF-8
128              
129             =head1 NAME
130              
131             Cfn::Resource::AWS::EKS::FargateProfile - Cfn resource for AWS::EKS::FargateProfile
132              
133             =head1 DESCRIPTION
134              
135             This module implements a Perl module that represents the CloudFormation object AWS::EKS::FargateProfile.
136              
137             See L<Cfn> for more information on how to use it.
138              
139             =head1 AUTHOR
140              
141             Jose Luis Martinez
142             CAPSiDE
143             jlmartinez@capside.com
144              
145             =head1 COPYRIGHT and LICENSE
146              
147             Copyright (c) 2013 by CAPSiDE
148             This code is distributed under the Apache 2 License. The full text of the
149             license can be found in the LICENSE file included with this module.
150              
151             =cut