File Coverage

blib/lib/Cfn/Resource/AWS/WAF/WebACL.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::WAF::WebACL generated from spec 5.3.0
2 2     2   1172 use Moose::Util::TypeConstraints;
  2         7  
  2         16  
3              
4             coerce 'Cfn::Resource::Properties::AWS::WAF::WebACL',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::WAF::WebACL->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::WAF::WebACL {
9 2     2   4155 use Moose;
  2         5  
  2         17  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::WAF::WebACL', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 995 [ 'ap-east-1','ap-northeast-1','ap-northeast-2','ap-northeast-3','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::WAF::WebACL::WafAction',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::WAF::WebACL::WafAction',
27             from 'HashRef',
28             via {
29             if (my $f = Cfn::TypeLibrary::try_function($_)) {
30             return $f
31             } else {
32             return Cfn::Resource::Properties::AWS::WAF::WebACL::WafActionValue->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::AWS::WAF::WebACL::WafActionValue {
37 2     2   14163 use Moose;
  2         5  
  2         8  
38 2     2   13136 use MooseX::StrictConstructor;
  2         6  
  2         20  
39             extends 'Cfn::Value::TypedValue';
40            
41             has Type => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             }
43             subtype 'ArrayOfCfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule',
44             as 'Cfn::Value',
45             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
46             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
47              
48             coerce 'ArrayOfCfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule',
49             from 'HashRef',
50             via {
51             if (my $f = Cfn::TypeLibrary::try_function($_)) {
52             return $f
53             } else {
54             die 'Only accepts functions';
55             }
56             },
57             from 'ArrayRef',
58             via {
59             Cfn::Value::Array->new(Value => [
60             map {
61             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule')->coerce($_)
62             } @$_
63             ]);
64             };
65              
66             subtype 'Cfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule',
67             as 'Cfn::Value';
68              
69             coerce 'Cfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule',
70             from 'HashRef',
71             via {
72             if (my $f = Cfn::TypeLibrary::try_function($_)) {
73             return $f
74             } else {
75             return Cfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRuleValue->new( %$_ );
76             }
77             };
78              
79             package Cfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRuleValue {
80 2     2   7404 use Moose;
  2         15  
  2         15  
81 2     2   13057 use MooseX::StrictConstructor;
  2         5  
  2         9  
82             extends 'Cfn::Value::TypedValue';
83            
84             has Action => (isa => 'Cfn::Resource::Properties::AWS::WAF::WebACL::WafAction', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
85             has Priority => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
86             has RuleId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             }
88              
89             package Cfn::Resource::Properties::AWS::WAF::WebACL {
90 2     2   6533 use Moose;
  2         7  
  2         18  
91 2     2   13048 use MooseX::StrictConstructor;
  2         6  
  2         11  
92             extends 'Cfn::Resource::Properties';
93            
94             has DefaultAction => (isa => 'Cfn::Resource::Properties::AWS::WAF::WebACL::WafAction', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
95             has MetricName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
96             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
97             has Rules => (isa => 'ArrayOfCfn::Resource::Properties::AWS::WAF::WebACL::ActivatedRule', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
98             }
99              
100             1;