File Coverage

blib/lib/Cfn/Resource/AWS/SageMaker/Workteam.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::SageMaker::Workteam generated from spec 18.4.0
2 1     1   699 use Moose::Util::TypeConstraints;
  1         3  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::SageMaker::Workteam',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::SageMaker::Workteam->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::SageMaker::Workteam {
9 1     1   2258 use Moose;
  1         2  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::SageMaker::Workteam', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 3 [ 'WorkteamName' ]
15             }
16             sub supported_regions {
17 1     1 0 1123 [ 'ap-northeast-1','ap-southeast-2','eu-west-1','us-east-1','us-east-2','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::CognitoMemberDefinition',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::CognitoMemberDefinition',
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::SageMaker::Workteam::CognitoMemberDefinition->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::SageMaker::Workteam::CognitoMemberDefinition {
37 1     1   7335 use Moose;
  1         6  
  1         8  
38 1     1   6605 use MooseX::StrictConstructor;
  1         5  
  1         11  
39             extends 'Cfn::Value::TypedValue';
40            
41             has CognitoClientId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has CognitoUserGroup => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             has CognitoUserPool => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
44             }
45              
46             subtype 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::NotificationConfiguration',
47             as 'Cfn::Value';
48              
49             coerce 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::NotificationConfiguration',
50             from 'HashRef',
51             via {
52             if (my $f = Cfn::TypeLibrary::try_function($_)) {
53             return $f
54             } else {
55             return Cfn::Resource::Properties::Object::AWS::SageMaker::Workteam::NotificationConfiguration->new( %$_ );
56             }
57             };
58              
59             package Cfn::Resource::Properties::Object::AWS::SageMaker::Workteam::NotificationConfiguration {
60 1     1   3622 use Moose;
  1         2  
  1         6  
61 1     1   6595 use MooseX::StrictConstructor;
  1         3  
  1         7  
62             extends 'Cfn::Value::TypedValue';
63            
64             has NotificationTopicArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition',
67             as 'Cfn::Value',
68             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
69             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
70              
71             coerce 'ArrayOfCfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition',
72             from 'HashRef',
73             via {
74             if (my $f = Cfn::TypeLibrary::try_function($_)) {
75             return $f
76             } else {
77             die 'Only accepts functions';
78             }
79             },
80             from 'ArrayRef',
81             via {
82             Cfn::Value::Array->new(Value => [
83             map {
84             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition',
93             from 'HashRef',
94             via {
95             if (my $f = Cfn::TypeLibrary::try_function($_)) {
96             return $f
97             } else {
98             return Cfn::Resource::Properties::Object::AWS::SageMaker::Workteam::MemberDefinition->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::SageMaker::Workteam::MemberDefinition {
103 1     1   3622 use Moose;
  1         3  
  1         5  
104 1     1   6733 use MooseX::StrictConstructor;
  1         6  
  1         6  
105             extends 'Cfn::Value::TypedValue';
106            
107             has CognitoMemberDefinition => (isa => 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::CognitoMemberDefinition', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             }
109              
110             package Cfn::Resource::Properties::AWS::SageMaker::Workteam {
111 1     1   3266 use Moose;
  1         2  
  1         6  
112 1     1   6651 use MooseX::StrictConstructor;
  1         3  
  1         5  
113             extends 'Cfn::Resource::Properties';
114            
115             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
116             has MemberDefinitions => (isa => 'ArrayOfCfn::Resource::Properties::AWS::SageMaker::Workteam::MemberDefinition', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
117             has NotificationConfiguration => (isa => 'Cfn::Resource::Properties::AWS::SageMaker::Workteam::NotificationConfiguration', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
118             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
119             has WorkteamName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
120             }
121              
122             1;
123             ### main pod documentation begin ###
124              
125             =encoding UTF-8
126              
127             =head1 NAME
128              
129             Cfn::Resource::AWS::SageMaker::Workteam - Cfn resource for AWS::SageMaker::Workteam
130              
131             =head1 DESCRIPTION
132              
133             This module implements a Perl module that represents the CloudFormation object AWS::SageMaker::Workteam.
134              
135             See L<Cfn> for more information on how to use it.
136              
137             =head1 AUTHOR
138              
139             Jose Luis Martinez
140             CAPSiDE
141             jlmartinez@capside.com
142              
143             =head1 COPYRIGHT and LICENSE
144              
145             Copyright (c) 2013 by CAPSiDE
146             This code is distributed under the Apache 2 License. The full text of the
147             license can be found in the LICENSE file included with this module.
148              
149             =cut