1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
module AWS
module Core
# Represents an AWS region. A region has a name and provides access
# to service interface objects.
#
# aws = AWS.regions['us-west-1']
#
# aws.dynamo_db.tables.map(&:name)
# aws.ec2.instances.map(&:id)
#
# Regions provide helper methods for each service.
#
# @attr_reader [AutoScaling] auto_scaling
# @attr_reader [CloudFormation] cloud_formation
# @attr_reader [CloudFront] cloud_front
# @attr_reader [CloudSearch] cloud_search
# @attr_reader [CloudTrail] cloud_trail
# @attr_reader [CloudWatch] cloud_watch
# @attr_reader [DataPipeline] data_pipeline
# @attr_reader [DirectConnect] direct_connect
# @attr_reader [DynamoDB] dynamo_db
# @attr_reader [EC2] ec2
# @attr_reader [ElasticBeanstalk] elastic_beanstalk
# @attr_reader [ElasticTranscoder] elastic_transcoder
# @attr_reader [ElastiCache] elasticache
# @attr_reader [ELB] elb
# @attr_reader [EMR] emr
# @attr_reader [Glacier] glacier
# @attr_reader [IAM] iam
# @attr_reader [ImportExport] import_export
# @attr_reader [Kinesis] kinesis
# @attr_reader [OpsWorks] ops_works
# @attr_reader [RDS] rds
# @attr_reader [Redshift] redshift
# @attr_reader [Route53] route_53
# @attr_reader [S3] s3
# @attr_reader [SimpleEmailService] ses
# @attr_reader [SimpleDB] simple_db
# @attr_reader [SNS] sns
# @attr_reader [SQS] sqs
# @attr_reader [StorageGateway] storage_gateway
# @attr_reader [STS] sts
# @attr_reader [Support] support
# @attr_reader [SimpleWorkflow] swf
#
class Region
# @param [String] name
# @option options [Configuration] :config (AWS.config)
def initialize name, options = {}
@name = name
@config = options[:config] || AWS.config
@config = @config.with(:region => name)
end
# @return [String] The name of this region (e.g. 'us-west-1').
attr_reader :name
# @return [Configuration]
attr_reader :config
AWS::SERVICES.values.each do |svc|
define_method(svc.method_name) do
AWS.const_get(svc.class_name).new(:config => config)
end
alias_method(svc.method_alias, svc.method_name) if svc.method_alias
end
end
end
end
|