File Coverage

blib/lib/Cfn/Resource/AWS/SES/ConfigurationSetEventDestination.pm
Criterion Covered Total %
statement 38 38 100.0
branch n/a
condition n/a
subroutine 14 14 100.0
pod 0 2 0.0
total 52 54 96.3


line stmt bran cond sub pod time code
1             # AWS::SES::ConfigurationSetEventDestination generated from spec 18.4.0
2 1     1   838 use Moose::Util::TypeConstraints;
  1         4  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::SES::ConfigurationSetEventDestination {
9 1     1   2322 use Moose;
  1         4  
  1         9  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1218 [ 'eu-west-1','us-east-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::DimensionConfiguration',
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::SES::ConfigurationSetEventDestination::DimensionConfiguration',
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::SES::ConfigurationSetEventDestination::DimensionConfiguration')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::DimensionConfiguration',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::DimensionConfiguration',
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::SES::ConfigurationSetEventDestination::DimensionConfiguration->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::DimensionConfiguration {
59 1     1   7724 use Moose;
  1         4  
  1         6  
60 1     1   6692 use MooseX::StrictConstructor;
  1         3  
  1         11  
61             extends 'Cfn::Value::TypedValue';
62            
63             has DefaultDimensionValue => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has DimensionName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has DimensionValueSource => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             }
67              
68             subtype 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::KinesisFirehoseDestination',
69             as 'Cfn::Value';
70              
71             coerce 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::KinesisFirehoseDestination',
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::SES::ConfigurationSetEventDestination::KinesisFirehoseDestination->new( %$_ );
78             }
79             };
80              
81             package Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::KinesisFirehoseDestination {
82 1     1   3783 use Moose;
  1         4  
  1         9  
83 1     1   6845 use MooseX::StrictConstructor;
  1         3  
  1         5  
84             extends 'Cfn::Value::TypedValue';
85            
86             has DeliveryStreamARN => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             has IAMRoleARN => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
88             }
89              
90             subtype 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::CloudWatchDestination',
91             as 'Cfn::Value';
92              
93             coerce 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::CloudWatchDestination',
94             from 'HashRef',
95             via {
96             if (my $f = Cfn::TypeLibrary::try_function($_)) {
97             return $f
98             } else {
99             return Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::CloudWatchDestination->new( %$_ );
100             }
101             };
102              
103             package Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::CloudWatchDestination {
104 1     1   3556 use Moose;
  1         4  
  1         8  
105 1     1   6866 use MooseX::StrictConstructor;
  1         3  
  1         6  
106             extends 'Cfn::Value::TypedValue';
107            
108             has DimensionConfigurations => (isa => 'ArrayOfCfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::DimensionConfiguration', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             }
110              
111             subtype 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::EventDestination',
112             as 'Cfn::Value';
113              
114             coerce 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::EventDestination',
115             from 'HashRef',
116             via {
117             if (my $f = Cfn::TypeLibrary::try_function($_)) {
118             return $f
119             } else {
120             return Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::EventDestination->new( %$_ );
121             }
122             };
123              
124             package Cfn::Resource::Properties::Object::AWS::SES::ConfigurationSetEventDestination::EventDestination {
125 1     1   3533 use Moose;
  1         3  
  1         6  
126 1     1   7081 use MooseX::StrictConstructor;
  1         3  
  1         7  
127             extends 'Cfn::Value::TypedValue';
128            
129             has CloudWatchDestination => (isa => 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::CloudWatchDestination', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
130             has Enabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
131             has KinesisFirehoseDestination => (isa => 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::KinesisFirehoseDestination', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
132             has MatchingEventTypes => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
133             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
134             }
135              
136             package Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination {
137 1     1   3464 use Moose;
  1         5  
  1         7  
138 1     1   6767 use MooseX::StrictConstructor;
  1         2  
  1         7  
139             extends 'Cfn::Resource::Properties';
140            
141             has ConfigurationSetName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
142             has EventDestination => (isa => 'Cfn::Resource::Properties::AWS::SES::ConfigurationSetEventDestination::EventDestination', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
143             }
144              
145             1;
146             ### main pod documentation begin ###
147              
148             =encoding UTF-8
149              
150             =head1 NAME
151              
152             Cfn::Resource::AWS::SES::ConfigurationSetEventDestination - Cfn resource for AWS::SES::ConfigurationSetEventDestination
153              
154             =head1 DESCRIPTION
155              
156             This module implements a Perl module that represents the CloudFormation object AWS::SES::ConfigurationSetEventDestination.
157              
158             See L<Cfn> for more information on how to use it.
159              
160             =head1 AUTHOR
161              
162             Jose Luis Martinez
163             CAPSiDE
164             jlmartinez@capside.com
165              
166             =head1 COPYRIGHT and LICENSE
167              
168             Copyright (c) 2013 by CAPSiDE
169             This code is distributed under the Apache 2 License. The full text of the
170             license can be found in the LICENSE file included with this module.
171              
172             =cut