Cfn/lib/Cfn/Resource/AWS/IoT/Policy.pm
# AWS::IoT::Policy generated from spec 14.3.0
use Moose::Util::TypeConstraints;
coerce 'Cfn::Resource::Properties::AWS::IoT::Policy',
from 'HashRef',
via { Cfn::Resource::Properties::AWS::IoT::Policy->new( %$_ ) };
package Cfn::Resource::AWS::IoT::Policy {
use Moose;
extends 'Cfn::Resource';
has Properties => (isa => 'Cfn::Resource::Properties::AWS::IoT::Policy', is => 'rw', coerce => 1);
sub AttributeList {
[ 'Arn' ]
}
sub supported_regions {
[ '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' ]
}
}
package Cfn::Resource::Properties::AWS::IoT::Policy {
use Moose;
use MooseX::StrictConstructor;
extends 'Cfn::Resource::Properties';
has PolicyDocument => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
has PolicyName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
}
1;
### main pod documentation begin ###
=encoding UTF-8
=head1 NAME
Cfn::Resource::AWS::IoT::Policy - Cfn resource for AWS::IoT::Policy
=head1 DESCRIPTION
This module implements a Perl module that represents the CloudFormation object AWS::IoT::Policy.
See L<Cfn> for more information on how to use it.
=head1 AUTHOR
Jose Luis Martinez
CAPSiDE
jlmartinez@capside.com
=head1 COPYRIGHT and LICENSE
Copyright (c) 2013 by CAPSiDE
This code is distributed under the Apache 2 License. The full text of the
license can be found in the LICENSE file included with this module.
=cut