File Coverage

blib/lib/Cfn/Resource/AWS/IoT/TopicRuleDestination.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 2 0.0
total 28 30 93.3


line stmt bran cond sub pod time code
1             # AWS::IoT::TopicRuleDestination generated from spec 21.0.0
2 1     1   682 use Moose::Util::TypeConstraints;
  1         3  
  1         11  
3              
4             coerce 'Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::IoT::TopicRuleDestination {
9 1     1   2181 use Moose;
  1         3  
  1         9  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'Arn','StatusReason' ]
15             }
16             sub supported_regions {
17 1     1 0 1150 [ 'ap-east-1','ap-northeast-1','ap-northeast-2','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::IoT::TopicRuleDestination::HttpUrlDestinationSummary',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination::HttpUrlDestinationSummary',
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::IoT::TopicRuleDestination::HttpUrlDestinationSummary->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::IoT::TopicRuleDestination::HttpUrlDestinationSummary {
37 1     1   7333 use Moose;
  1         4  
  1         6  
38 1     1   6840 use MooseX::StrictConstructor;
  1         4  
  1         9  
39             extends 'Cfn::Value::TypedValue';
40            
41             has ConfirmationUrl => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
42             }
43              
44             package Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination {
45 1     1   3604 use Moose;
  1         4  
  1         6  
46 1     1   6816 use MooseX::StrictConstructor;
  1         4  
  1         6  
47             extends 'Cfn::Resource::Properties';
48            
49             has HttpUrlProperties => (isa => 'Cfn::Resource::Properties::AWS::IoT::TopicRuleDestination::HttpUrlDestinationSummary', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
50             has Status => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
51             }
52              
53             1;
54             ### main pod documentation begin ###
55              
56             =encoding UTF-8
57              
58             =head1 NAME
59              
60             Cfn::Resource::AWS::IoT::TopicRuleDestination - Cfn resource for AWS::IoT::TopicRuleDestination
61              
62             =head1 DESCRIPTION
63              
64             This module implements a Perl module that represents the CloudFormation object AWS::IoT::TopicRuleDestination.
65              
66             See L<Cfn> for more information on how to use it.
67              
68             =head1 AUTHOR
69              
70             Jose Luis Martinez
71             CAPSiDE
72             jlmartinez@capside.com
73              
74             =head1 COPYRIGHT and LICENSE
75              
76             Copyright (c) 2013 by CAPSiDE
77             This code is distributed under the Apache 2 License. The full text of the
78             license can be found in the LICENSE file included with this module.
79              
80             =cut