File Coverage

blib/lib/Cfn/Resource/AWS/Pinpoint/ApplicationSettings.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::Pinpoint::ApplicationSettings generated from spec 18.4.0
2 1     1   755 use Moose::Util::TypeConstraints;
  1         3  
  1         12  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Pinpoint::ApplicationSettings {
9 1     1   2271 use Moose;
  1         3  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1138 [ 'ap-south-1','ap-southeast-2','eu-central-1','eu-west-1','us-east-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::QuietTime',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::QuietTime',
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::Pinpoint::ApplicationSettings::QuietTime->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::Pinpoint::ApplicationSettings::QuietTime {
37 1     1   7615 use Moose;
  1         3  
  1         7  
38 1     1   6812 use MooseX::StrictConstructor;
  1         3  
  1         11  
39             extends 'Cfn::Value::TypedValue';
40            
41             has End => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has Start => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             }
44              
45             subtype 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::Limits',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::Limits',
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::Pinpoint::ApplicationSettings::Limits->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::Pinpoint::ApplicationSettings::Limits {
59 1     1   3810 use Moose;
  1         3  
  1         6  
60 1     1   7133 use MooseX::StrictConstructor;
  1         4  
  1         7  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Daily => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has MaximumDuration => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has MessagesPerSecond => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             has Total => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
67             }
68              
69             subtype 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::CampaignHook',
70             as 'Cfn::Value';
71              
72             coerce 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::CampaignHook',
73             from 'HashRef',
74             via {
75             if (my $f = Cfn::TypeLibrary::try_function($_)) {
76             return $f
77             } else {
78             return Cfn::Resource::Properties::Object::AWS::Pinpoint::ApplicationSettings::CampaignHook->new( %$_ );
79             }
80             };
81              
82             package Cfn::Resource::Properties::Object::AWS::Pinpoint::ApplicationSettings::CampaignHook {
83 1     1   3731 use Moose;
  1         3  
  1         6  
84 1     1   6930 use MooseX::StrictConstructor;
  1         3  
  1         5  
85             extends 'Cfn::Value::TypedValue';
86            
87             has LambdaFunctionName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
88             has Mode => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
89             has WebUrl => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
90             }
91              
92             package Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings {
93 1     1   3441 use Moose;
  1         4  
  1         6  
94 1     1   6740 use MooseX::StrictConstructor;
  1         4  
  1         7  
95             extends 'Cfn::Resource::Properties';
96            
97             has ApplicationId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
98             has CampaignHook => (isa => 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::CampaignHook', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
99             has CloudWatchMetricsEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
100             has Limits => (isa => 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::Limits', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
101             has QuietTime => (isa => 'Cfn::Resource::Properties::AWS::Pinpoint::ApplicationSettings::QuietTime', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
102             }
103              
104             1;
105             ### main pod documentation begin ###
106              
107             =encoding UTF-8
108              
109             =head1 NAME
110              
111             Cfn::Resource::AWS::Pinpoint::ApplicationSettings - Cfn resource for AWS::Pinpoint::ApplicationSettings
112              
113             =head1 DESCRIPTION
114              
115             This module implements a Perl module that represents the CloudFormation object AWS::Pinpoint::ApplicationSettings.
116              
117             See L<Cfn> for more information on how to use it.
118              
119             =head1 AUTHOR
120              
121             Jose Luis Martinez
122             CAPSiDE
123             jlmartinez@capside.com
124              
125             =head1 COPYRIGHT and LICENSE
126              
127             Copyright (c) 2013 by CAPSiDE
128             This code is distributed under the Apache 2 License. The full text of the
129             license can be found in the LICENSE file included with this module.
130              
131             =cut