# AWS::Config::ConformancePack generated from spec 34.0.0 use Moose::Util::TypeConstraints; coerce 'Cfn::Resource::Properties::AWS::Config::ConformancePack', from 'HashRef', via { Cfn::Resource::Properties::AWS::Config::ConformancePack->new( %$_ ) }; package Cfn::Resource::AWS::Config::ConformancePack { use Moose; extends 'Cfn::Resource'; has Properties => (isa => 'Cfn::Resource::Properties::AWS::Config::ConformancePack', is => 'rw', coerce => 1); sub AttributeList { [ ] } sub supported_regions { [ 'ap-east-1','ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-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-west-1','us-west-2' ] } } subtype 'ArrayOfCfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter', as 'Cfn::Value', where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; coerce 'ArrayOfCfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter', from 'HashRef', via { if (my $f = Cfn::TypeLibrary::try_function($_)) { return $f } else { die 'Only accepts functions'; } }, from 'ArrayRef', via { Cfn::Value::Array->new(Value => [ map { Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter')->coerce($_) } @$_ ]); }; subtype 'Cfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter', as 'Cfn::Value'; coerce 'Cfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter', from 'HashRef', via { if (my $f = Cfn::TypeLibrary::try_function($_)) { return $f } else { return Cfn::Resource::Properties::Object::AWS::Config::ConformancePack::ConformancePackInputParameter->new( %$_ ); } }; package Cfn::Resource::Properties::Object::AWS::Config::ConformancePack::ConformancePackInputParameter { use Moose; use MooseX::StrictConstructor; extends 'Cfn::Value::TypedValue'; has ParameterName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has ParameterValue => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); } package Cfn::Resource::Properties::AWS::Config::ConformancePack { use Moose; use MooseX::StrictConstructor; extends 'Cfn::Resource::Properties'; has ConformancePackInputParameters => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Config::ConformancePack::ConformancePackInputParameter', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has ConformancePackName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); has DeliveryS3Bucket => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has DeliveryS3KeyPrefix => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has TemplateBody => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has TemplateS3Uri => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); } 1; ### main pod documentation begin ### =encoding UTF-8 =head1 NAME Cfn::Resource::AWS::Config::ConformancePack - Cfn resource for AWS::Config::ConformancePack =head1 DESCRIPTION This module implements a Perl module that represents the CloudFormation object AWS::Config::ConformancePack. See L 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