File Coverage

blib/lib/Cfn/Resource/AWS/Lambda/EventInvokeConfig.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::Lambda::EventInvokeConfig generated from spec 9.1.0
2 1     1   728 use Moose::Util::TypeConstraints;
  1         3  
  1         11  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Lambda::EventInvokeConfig {
9 1     1   2198 use Moose;
  1         2  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1546 [ '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::EventInvokeConfig::OnSuccess',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnSuccess',
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::EventInvokeConfig::OnSuccessValue->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnSuccessValue {
37 1     1   7268 use Moose;
  1         4  
  1         7  
38 1     1   6433 use MooseX::StrictConstructor;
  1         3  
  1         11  
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::EventInvokeConfig::OnFailure',
45             as 'Cfn::Value';
46              
47             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnFailure',
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::EventInvokeConfig::OnFailureValue->new( %$_ );
54             }
55             };
56              
57             package Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnFailureValue {
58 1     1   3632 use Moose;
  1         4  
  1         6  
59 1     1   6708 use MooseX::StrictConstructor;
  1         3  
  1         5  
60             extends 'Cfn::Value::TypedValue';
61            
62             has Destination => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
63             }
64              
65             subtype 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::DestinationConfig',
66             as 'Cfn::Value';
67              
68             coerce 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::DestinationConfig',
69             from 'HashRef',
70             via {
71             if (my $f = Cfn::TypeLibrary::try_function($_)) {
72             return $f
73             } else {
74             return Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::DestinationConfigValue->new( %$_ );
75             }
76             };
77              
78             package Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::DestinationConfigValue {
79 1     1   3315 use Moose;
  1         2  
  1         7  
80 1     1   6493 use MooseX::StrictConstructor;
  1         3  
  1         6  
81             extends 'Cfn::Value::TypedValue';
82            
83             has OnFailure => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnFailure', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
84             has OnSuccess => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::OnSuccess', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
85             }
86              
87             package Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig {
88 1     1   3359 use Moose;
  1         2  
  1         6  
89 1     1   6632 use MooseX::StrictConstructor;
  1         3  
  1         6  
90             extends 'Cfn::Resource::Properties';
91            
92             has DestinationConfig => (isa => 'Cfn::Resource::Properties::AWS::Lambda::EventInvokeConfig::DestinationConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
93             has FunctionName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
94             has MaximumEventAgeInSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
95             has MaximumRetryAttempts => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
96             has Qualifier => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
97             }
98              
99             1;