File Coverage

blib/lib/Cfn/Resource/AWS/Config/ConfigRule.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::Config::ConfigRule generated from spec 18.4.0
2 4     4   3045 use Moose::Util::TypeConstraints;
  4         12  
  4         53  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Config::ConfigRule',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Config::ConfigRule->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Config::ConfigRule {
9 4     4   8981 use Moose;
  4         14  
  4         38  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Config::ConfigRule', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'Arn','Compliance.Type','ConfigRuleId' ]
15             }
16             sub supported_regions {
17 1     1 0 1154 [ 'af-south-1','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-south-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             subtype 'ArrayOfCfn::Resource::Properties::AWS::Config::ConfigRule::SourceDetail',
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::Config::ConfigRule::SourceDetail',
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::Config::ConfigRule::SourceDetail')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::Config::ConfigRule::SourceDetail',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::Config::ConfigRule::SourceDetail',
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::Config::ConfigRule::SourceDetail->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::Config::ConfigRule::SourceDetail {
59 4     4   30343 use Moose;
  4         16  
  4         20  
60 4     4   25909 use MooseX::StrictConstructor;
  4         16  
  4         43  
61             extends 'Cfn::Value::TypedValue';
62            
63             has EventSource => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has MaximumExecutionFrequency => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has MessageType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             }
67              
68             subtype 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Source',
69             as 'Cfn::Value';
70              
71             coerce 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Source',
72             from 'HashRef',
73             via {
74             if (my $f = Cfn::TypeLibrary::try_function($_)) {
75             return $f
76             } else {
77             return Cfn::Resource::Properties::Object::AWS::Config::ConfigRule::Source->new( %$_ );
78             }
79             };
80              
81             package Cfn::Resource::Properties::Object::AWS::Config::ConfigRule::Source {
82 4     4   14241 use Moose;
  4         14  
  4         27  
83 4     4   25476 use MooseX::StrictConstructor;
  4         12  
  4         21  
84             extends 'Cfn::Value::TypedValue';
85            
86             has Owner => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             has SourceDetails => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Config::ConfigRule::SourceDetail', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
88             has SourceIdentifier => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
89             }
90              
91             subtype 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Scope',
92             as 'Cfn::Value';
93              
94             coerce 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Scope',
95             from 'HashRef',
96             via {
97             if (my $f = Cfn::TypeLibrary::try_function($_)) {
98             return $f
99             } else {
100             return Cfn::Resource::Properties::Object::AWS::Config::ConfigRule::Scope->new( %$_ );
101             }
102             };
103              
104             package Cfn::Resource::Properties::Object::AWS::Config::ConfigRule::Scope {
105 4     4   12996 use Moose;
  4         16  
  4         24  
106 4     4   25297 use MooseX::StrictConstructor;
  4         11  
  4         23  
107             extends 'Cfn::Value::TypedValue';
108            
109             has ComplianceResourceId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             has ComplianceResourceTypes => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
111             has TagKey => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
112             has TagValue => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
113             }
114              
115             package Cfn::Resource::Properties::AWS::Config::ConfigRule {
116 4     4   12441 use Moose;
  4         20  
  4         31  
117 4     4   25826 use MooseX::StrictConstructor;
  4         12  
  4         25  
118             extends 'Cfn::Resource::Properties';
119            
120             has ConfigRuleName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
121             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             has InputParameters => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
123             has MaximumExecutionFrequency => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
124             has Scope => (isa => 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Scope', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
125             has Source => (isa => 'Cfn::Resource::Properties::AWS::Config::ConfigRule::Source', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
126             }
127              
128             1;
129             ### main pod documentation begin ###
130              
131             =encoding UTF-8
132              
133             =head1 NAME
134              
135             Cfn::Resource::AWS::Config::ConfigRule - Cfn resource for AWS::Config::ConfigRule
136              
137             =head1 DESCRIPTION
138              
139             This module implements a Perl module that represents the CloudFormation object AWS::Config::ConfigRule.
140              
141             See L<Cfn> for more information on how to use it.
142              
143             =head1 AUTHOR
144              
145             Jose Luis Martinez
146             CAPSiDE
147             jlmartinez@capside.com
148              
149             =head1 COPYRIGHT and LICENSE
150              
151             Copyright (c) 2013 by CAPSiDE
152             This code is distributed under the Apache 2 License. The full text of the
153             license can be found in the LICENSE file included with this module.
154              
155             =cut