# AWS::GameLift::Script generated from spec 18.4.0 use Moose::Util::TypeConstraints; coerce 'Cfn::Resource::Properties::AWS::GameLift::Script', from 'HashRef', via { Cfn::Resource::Properties::AWS::GameLift::Script->new( %$_ ) }; package Cfn::Resource::AWS::GameLift::Script { use Moose; extends 'Cfn::Resource'; has Properties => (isa => 'Cfn::Resource::Properties::AWS::GameLift::Script', is => 'rw', coerce => 1); sub AttributeList { [ 'Arn','Id' ] } sub supported_regions { [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-north-1','eu-central-1','eu-west-1','eu-west-2','sa-east-1','us-east-1','us-east-2','us-west-1','us-west-2' ] } } subtype 'Cfn::Resource::Properties::AWS::GameLift::Script::S3Location', as 'Cfn::Value'; coerce 'Cfn::Resource::Properties::AWS::GameLift::Script::S3Location', from 'HashRef', via { if (my $f = Cfn::TypeLibrary::try_function($_)) { return $f } else { return Cfn::Resource::Properties::Object::AWS::GameLift::Script::S3Location->new( %$_ ); } }; package Cfn::Resource::Properties::Object::AWS::GameLift::Script::S3Location { use Moose; use MooseX::StrictConstructor; extends 'Cfn::Value::TypedValue'; has Bucket => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has ObjectVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has RoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); } package Cfn::Resource::Properties::AWS::GameLift::Script { use Moose; use MooseX::StrictConstructor; extends 'Cfn::Resource::Properties'; has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has StorageLocation => (isa => 'Cfn::Resource::Properties::AWS::GameLift::Script::S3Location', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); has Version => (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::GameLift::Script - Cfn resource for AWS::GameLift::Script =head1 DESCRIPTION This module implements a Perl module that represents the CloudFormation object AWS::GameLift::Script. 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