File Coverage

blib/lib/Cfn/Resource/AWS/Lambda/EventSourceMapping.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::Lambda::EventSourceMapping generated from spec 9.1.0
2 2     2   1318 use Moose::Util::TypeConstraints;
  2         7  
  2         19  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Lambda::EventSourceMapping {
9 2     2   4670 use Moose;
  2         7  
  2         28  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1084 [ '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::Lambda::EventSourceMapping::OnFailure',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::OnFailure',
27             from 'HashRef',
28             via {
29             if (my $f = Cfn::TypeLibrary::try_function($_)) {
30             return $f
31             } else {
32             return Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::OnFailureValue->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::OnFailureValue {
37 2     2   14158 use Moose;
  2         9  
  2         15  
38 2     2   13138 use MooseX::StrictConstructor;
  2         8  
  2         37  
39             extends 'Cfn::Value::TypedValue';
40            
41             has Destination => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             }
43              
44             subtype 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::DestinationConfig',
45             as 'Cfn::Value';
46              
47             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::DestinationConfig',
48             from 'HashRef',
49             via {
50             if (my $f = Cfn::TypeLibrary::try_function($_)) {
51             return $f
52             } else {
53             return Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::DestinationConfigValue->new( %$_ );
54             }
55             };
56              
57             package Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::DestinationConfigValue {
58 2     2   7315 use Moose;
  2         6  
  2         12  
59 2     2   13217 use MooseX::StrictConstructor;
  2         7  
  2         9  
60             extends 'Cfn::Value::TypedValue';
61            
62             has OnFailure => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::OnFailure', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
63             }
64              
65             package Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping {
66 2     2   6367 use Moose;
  2         4  
  2         14  
67 2     2   13381 use MooseX::StrictConstructor;
  2         7  
  2         9  
68             extends 'Cfn::Resource::Properties';
69            
70             has BatchSize => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
71             has BisectBatchOnFunctionError => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
72             has DestinationConfig => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventSourceMapping::DestinationConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
73             has Enabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
74             has EventSourceArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
75             has FunctionName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
76             has MaximumBatchingWindowInSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
77             has MaximumRecordAgeInSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
78             has MaximumRetryAttempts => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
79             has ParallelizationFactor => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
80             has StartingPosition => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
81             }
82              
83             1;