File Coverage

blib/lib/Cfn/Resource/AWS/ECS/CapacityProvider.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::ECS::CapacityProvider generated from spec 18.4.0
2 1     1   774 use Moose::Util::TypeConstraints;
  1         3  
  1         13  
3              
4             coerce 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::ECS::CapacityProvider->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::ECS::CapacityProvider {
9 1     1   2291 use Moose;
  1         2  
  1         9  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1329 [ 'ap-east-1','ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-north-1','cn-northwest-1','eu-central-1','eu-north-1','eu-west-1','eu-west-2','eu-west-3','me-south-1','sa-east-1','us-east-1','us-east-2','us-gov-east-1','us-gov-west-1','us-west-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::ManagedScaling',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::ManagedScaling',
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::ECS::CapacityProvider::ManagedScaling->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::ECS::CapacityProvider::ManagedScaling {
37 1     1   7754 use Moose;
  1         2  
  1         11  
38 1     1   6774 use MooseX::StrictConstructor;
  1         2  
  1         10  
39             extends 'Cfn::Value::TypedValue';
40            
41             has MaximumScalingStepSize => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
42             has MinimumScalingStepSize => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
43             has Status => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
44             has TargetCapacity => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
45             }
46              
47             subtype 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::AutoScalingGroupProvider',
48             as 'Cfn::Value';
49              
50             coerce 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::AutoScalingGroupProvider',
51             from 'HashRef',
52             via {
53             if (my $f = Cfn::TypeLibrary::try_function($_)) {
54             return $f
55             } else {
56             return Cfn::Resource::Properties::Object::AWS::ECS::CapacityProvider::AutoScalingGroupProvider->new( %$_ );
57             }
58             };
59              
60             package Cfn::Resource::Properties::Object::AWS::ECS::CapacityProvider::AutoScalingGroupProvider {
61 1     1   3802 use Moose;
  1         3  
  1         12  
62 1     1   6694 use MooseX::StrictConstructor;
  1         2  
  1         7  
63             extends 'Cfn::Value::TypedValue';
64            
65             has AutoScalingGroupArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
66             has ManagedScaling => (isa => 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::ManagedScaling', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
67             has ManagedTerminationProtection => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
68             }
69              
70             package Cfn::Resource::Properties::AWS::ECS::CapacityProvider {
71 1     1   3354 use Moose;
  1         2  
  1         7  
72 1     1   6693 use MooseX::StrictConstructor;
  1         6  
  1         8  
73             extends 'Cfn::Resource::Properties';
74            
75             has AutoScalingGroupProvider => (isa => 'Cfn::Resource::Properties::AWS::ECS::CapacityProvider::AutoScalingGroupProvider', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
76             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
77             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
78             }
79              
80             1;
81             ### main pod documentation begin ###
82              
83             =encoding UTF-8
84              
85             =head1 NAME
86              
87             Cfn::Resource::AWS::ECS::CapacityProvider - Cfn resource for AWS::ECS::CapacityProvider
88              
89             =head1 DESCRIPTION
90              
91             This module implements a Perl module that represents the CloudFormation object AWS::ECS::CapacityProvider.
92              
93             See L<Cfn> for more information on how to use it.
94              
95             =head1 AUTHOR
96              
97             Jose Luis Martinez
98             CAPSiDE
99             jlmartinez@capside.com
100              
101             =head1 COPYRIGHT and LICENSE
102              
103             Copyright (c) 2013 by CAPSiDE
104             This code is distributed under the Apache 2 License. The full text of the
105             license can be found in the LICENSE file included with this module.
106              
107             =cut