File Coverage

blib/lib/Cfn/Resource/AWS/CloudTrail/Trail.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::CloudTrail::Trail generated from spec 18.4.0
2 4     4   3060 use Moose::Util::TypeConstraints;
  4         14  
  4         51  
3              
4             coerce 'Cfn::Resource::Properties::AWS::CloudTrail::Trail',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::CloudTrail::Trail->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::CloudTrail::Trail {
9 4     4   9414 use Moose;
  4         11  
  4         35  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::CloudTrail::Trail', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'Arn','SnsTopicArn' ]
15             }
16             sub supported_regions {
17 1     1 0 1117 [ 'af-south-1','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-south-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             subtype 'ArrayOfCfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource',
23             as 'Cfn::Value',
24             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
25             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
26              
27             coerce 'ArrayOfCfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource',
28             from 'HashRef',
29             via {
30             if (my $f = Cfn::TypeLibrary::try_function($_)) {
31             return $f
32             } else {
33             die 'Only accepts functions';
34             }
35             },
36             from 'ArrayRef',
37             via {
38             Cfn::Value::Array->new(Value => [
39             map {
40             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource',
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::CloudTrail::Trail::DataResource->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::CloudTrail::Trail::DataResource {
59 4     4   31255 use Moose;
  4         10  
  4         21  
60 4     4   26740 use MooseX::StrictConstructor;
  4         12  
  4         54  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Type => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has Values => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::CloudTrail::Trail::EventSelector',
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::CloudTrail::Trail::EventSelector',
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::CloudTrail::Trail::EventSelector')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::CloudTrail::Trail::EventSelector',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::CloudTrail::Trail::EventSelector',
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::CloudTrail::Trail::EventSelector->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::CloudTrail::Trail::EventSelector {
103 4     4   15917 use Moose;
  4         14  
  4         22  
104 4     4   26916 use MooseX::StrictConstructor;
  4         12  
  4         32  
105             extends 'Cfn::Value::TypedValue';
106            
107             has DataResources => (isa => 'ArrayOfCfn::Resource::Properties::AWS::CloudTrail::Trail::DataResource', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             has IncludeManagementEvents => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             has ReadWriteType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             }
111              
112             package Cfn::Resource::Properties::AWS::CloudTrail::Trail {
113 4     4   13278 use Moose;
  4         22  
  4         23  
114 4     4   26253 use MooseX::StrictConstructor;
  4         16  
  4         25  
115             extends 'Cfn::Resource::Properties';
116            
117             has CloudWatchLogsLogGroupArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
118             has CloudWatchLogsRoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
119             has EnableLogFileValidation => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
120             has EventSelectors => (isa => 'ArrayOfCfn::Resource::Properties::AWS::CloudTrail::Trail::EventSelector', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
121             has IncludeGlobalServiceEvents => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             has IsLogging => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
123             has IsMultiRegionTrail => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
124             has KMSKeyId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
125             has S3BucketName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
126             has S3KeyPrefix => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
127             has SnsTopicName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
128             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
129             has TrailName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
130             }
131              
132             1;
133             ### main pod documentation begin ###
134              
135             =encoding UTF-8
136              
137             =head1 NAME
138              
139             Cfn::Resource::AWS::CloudTrail::Trail - Cfn resource for AWS::CloudTrail::Trail
140              
141             =head1 DESCRIPTION
142              
143             This module implements a Perl module that represents the CloudFormation object AWS::CloudTrail::Trail.
144              
145             See L<Cfn> for more information on how to use it.
146              
147             =head1 AUTHOR
148              
149             Jose Luis Martinez
150             CAPSiDE
151             jlmartinez@capside.com
152              
153             =head1 COPYRIGHT and LICENSE
154              
155             Copyright (c) 2013 by CAPSiDE
156             This code is distributed under the Apache 2 License. The full text of the
157             license can be found in the LICENSE file included with this module.
158              
159             =cut