File Coverage

blib/lib/Cfn/Resource/AWS/WAFRegional/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::WAFRegional::WebACL generated from spec 18.4.0
2 1     1   664 use Moose::Util::TypeConstraints;
  1         4  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::WAFRegional::WebACL->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::WAFRegional::WebACL {
9 1     1   2220 use Moose;
  1         3  
  1         10  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1044 [ 'ap-northeast-1','ap-northeast-2','ap-southeast-1','ap-southeast-2','eu-central-1','eu-north-1','eu-west-1','eu-west-2','us-east-1','us-east-2','us-west-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Action',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Action',
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::WAFRegional::WebACL::Action->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::WAFRegional::WebACL::Action {
37 1     1   7157 use Moose;
  1         3  
  1         5  
38 1     1   7031 use MooseX::StrictConstructor;
  1         4  
  1         11  
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::WAFRegional::WebACL::Rule',
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::WAFRegional::WebACL::Rule',
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::WAFRegional::WebACL::Rule')->coerce($_)
62             } @$_
63             ]);
64             };
65              
66             subtype 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Rule',
67             as 'Cfn::Value';
68              
69             coerce 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Rule',
70             from 'HashRef',
71             via {
72             if (my $f = Cfn::TypeLibrary::try_function($_)) {
73             return $f
74             } else {
75             return Cfn::Resource::Properties::Object::AWS::WAFRegional::WebACL::Rule->new( %$_ );
76             }
77             };
78              
79             package Cfn::Resource::Properties::Object::AWS::WAFRegional::WebACL::Rule {
80 1     1   3708 use Moose;
  1         3  
  1         14  
81 1     1   6738 use MooseX::StrictConstructor;
  1         3  
  1         5  
82             extends 'Cfn::Value::TypedValue';
83            
84             has Action => (isa => 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Action', is => 'rw', coerce => 1, required => 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::WAFRegional::WebACL {
90 1     1   3358 use Moose;
  1         3  
  1         5  
91 1     1   6572 use MooseX::StrictConstructor;
  1         2  
  1         5  
92             extends 'Cfn::Resource::Properties';
93            
94             has DefaultAction => (isa => 'Cfn::Resource::Properties::AWS::WAFRegional::WebACL::Action', 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::WAFRegional::WebACL::Rule', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
98             }
99              
100             1;
101             ### main pod documentation begin ###
102              
103             =encoding UTF-8
104              
105             =head1 NAME
106              
107             Cfn::Resource::AWS::WAFRegional::WebACL - Cfn resource for AWS::WAFRegional::WebACL
108              
109             =head1 DESCRIPTION
110              
111             This module implements a Perl module that represents the CloudFormation object AWS::WAFRegional::WebACL.
112              
113             See L<Cfn> for more information on how to use it.
114              
115             =head1 AUTHOR
116              
117             Jose Luis Martinez
118             CAPSiDE
119             jlmartinez@capside.com
120              
121             =head1 COPYRIGHT and LICENSE
122              
123             Copyright (c) 2013 by CAPSiDE
124             This code is distributed under the Apache 2 License. The full text of the
125             license can be found in the LICENSE file included with this module.
126              
127             =cut