File Coverage

blib/lib/Cfn/Resource/AWS/Cognito/IdentityPool.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::Cognito::IdentityPool generated from spec 18.4.0
2 1     1   730 use Moose::Util::TypeConstraints;
  1         3  
  1         11  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Cognito::IdentityPool->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Cognito::IdentityPool {
9 1     1   2198 use Moose;
  1         3  
  1         7  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ 'Name' ]
15             }
16             sub supported_regions {
17 1     1 0 1151 [ 'ap-northeast-1','ap-northeast-2','ap-southeast-2','eu-central-1','eu-west-1','eu-west-2','us-east-1','us-east-2','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::PushSync',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::PushSync',
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::Cognito::IdentityPool::PushSync->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::Cognito::IdentityPool::PushSync {
37 1     1   7448 use Moose;
  1         3  
  1         6  
38 1     1   6732 use MooseX::StrictConstructor;
  1         3  
  1         12  
39             extends 'Cfn::Value::TypedValue';
40            
41             has ApplicationArns => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has RoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             }
44              
45             subtype 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoStreams',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoStreams',
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::Cognito::IdentityPool::CognitoStreams->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::Cognito::IdentityPool::CognitoStreams {
59 1     1   3712 use Moose;
  1         3  
  1         7  
60 1     1   6646 use MooseX::StrictConstructor;
  1         4  
  1         6  
61             extends 'Cfn::Value::TypedValue';
62            
63             has RoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has StreamingStatus => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has StreamName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             }
67             subtype 'ArrayOfCfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider',
68             as 'Cfn::Value',
69             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
70             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
71              
72             coerce 'ArrayOfCfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider',
73             from 'HashRef',
74             via {
75             if (my $f = Cfn::TypeLibrary::try_function($_)) {
76             return $f
77             } else {
78             die 'Only accepts functions';
79             }
80             },
81             from 'ArrayRef',
82             via {
83             Cfn::Value::Array->new(Value => [
84             map {
85             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider')->coerce($_)
86             } @$_
87             ]);
88             };
89              
90             subtype 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider',
91             as 'Cfn::Value';
92              
93             coerce 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider',
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::Cognito::IdentityPool::CognitoIdentityProvider->new( %$_ );
100             }
101             };
102              
103             package Cfn::Resource::Properties::Object::AWS::Cognito::IdentityPool::CognitoIdentityProvider {
104 1     1   3633 use Moose;
  1         3  
  1         7  
105 1     1   6638 use MooseX::StrictConstructor;
  1         3  
  1         7  
106             extends 'Cfn::Value::TypedValue';
107            
108             has ClientId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             has ProviderName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             has ServerSideTokenCheck => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
111             }
112              
113             package Cfn::Resource::Properties::AWS::Cognito::IdentityPool {
114 1     1   3299 use Moose;
  1         4  
  1         5  
115 1     1   6723 use MooseX::StrictConstructor;
  1         3  
  1         6  
116             extends 'Cfn::Resource::Properties';
117            
118             has AllowClassicFlow => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
119             has AllowUnauthenticatedIdentities => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
120             has CognitoEvents => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
121             has CognitoIdentityProviders => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoIdentityProvider', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             has CognitoStreams => (isa => 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::CognitoStreams', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
123             has DeveloperProviderName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
124             has IdentityPoolName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
125             has OpenIdConnectProviderARNs => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
126             has PushSync => (isa => 'Cfn::Resource::Properties::AWS::Cognito::IdentityPool::PushSync', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
127             has SamlProviderARNs => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
128             has SupportedLoginProviders => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
129             }
130              
131             1;
132             ### main pod documentation begin ###
133              
134             =encoding UTF-8
135              
136             =head1 NAME
137              
138             Cfn::Resource::AWS::Cognito::IdentityPool - Cfn resource for AWS::Cognito::IdentityPool
139              
140             =head1 DESCRIPTION
141              
142             This module implements a Perl module that represents the CloudFormation object AWS::Cognito::IdentityPool.
143              
144             See L<Cfn> for more information on how to use it.
145              
146             =head1 AUTHOR
147              
148             Jose Luis Martinez
149             CAPSiDE
150             jlmartinez@capside.com
151              
152             =head1 COPYRIGHT and LICENSE
153              
154             Copyright (c) 2013 by CAPSiDE
155             This code is distributed under the Apache 2 License. The full text of the
156             license can be found in the LICENSE file included with this module.
157              
158             =cut