aws-sdk-v1 1.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +7 -0
- data/LICENSE.txt +12 -0
- data/README.md +337 -0
- data/bin/aws-rb +179 -0
- data/ca-bundle.crt +3554 -0
- data/endpoints.json +1671 -0
- data/lib/aws-sdk-v1.rb +2 -0
- data/lib/aws-sdk.rb +1 -0
- data/lib/aws.rb +14 -0
- data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1070 -0
- data/lib/aws/api_config/CloudFormation-2010-05-15.yml +372 -0
- data/lib/aws/api_config/CloudFront-2013-05-12.yml +2448 -0
- data/lib/aws/api_config/CloudFront-2013-08-26.yml +2599 -0
- data/lib/aws/api_config/CloudFront-2013-09-27.yml +2765 -0
- data/lib/aws/api_config/CloudFront-2013-11-11.yml +2886 -0
- data/lib/aws/api_config/CloudFront-2013-11-22.yml +2918 -0
- data/lib/aws/api_config/CloudFront-2014-01-31.yml +2934 -0
- data/lib/aws/api_config/CloudFront-2014-05-31.yml +3100 -0
- data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
- data/lib/aws/api_config/CloudSearch-2013-01-01.yml +1164 -0
- data/lib/aws/api_config/CloudTrail-2013-11-01.yml +130 -0
- data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
- data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
- data/lib/aws/api_config/DirectConnect-2012-10-25.yml +735 -0
- data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1168 -0
- data/lib/aws/api_config/DynamoDB-2012-08-10.yml +2105 -0
- data/lib/aws/api_config/EC2-2013-08-15.yml +4708 -0
- data/lib/aws/api_config/EC2-2013-10-01.yml +4726 -0
- data/lib/aws/api_config/EC2-2013-10-15.yml +4651 -0
- data/lib/aws/api_config/EC2-2014-02-01.yml +4755 -0
- data/lib/aws/api_config/EC2-2014-05-01.yml +4812 -0
- data/lib/aws/api_config/ELB-2012-06-01.yml +766 -0
- data/lib/aws/api_config/EMR-2009-03-31.yml +972 -0
- data/lib/aws/api_config/ElastiCache-2013-06-15.yml +1188 -0
- data/lib/aws/api_config/ElastiCache-2014-03-24.yml +1375 -0
- data/lib/aws/api_config/ElastiCache-2014-07-15.yml +1385 -0
- data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +854 -0
- data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +3082 -0
- data/lib/aws/api_config/Glacier-2012-06-01.yml +649 -0
- data/lib/aws/api_config/IAM-2010-05-08.yml +1339 -0
- data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
- data/lib/aws/api_config/Kinesis-2013-12-02.yml +201 -0
- data/lib/aws/api_config/OpsWorks-2013-02-18.yml +2025 -0
- data/lib/aws/api_config/RDS-2013-05-15.yml +2464 -0
- data/lib/aws/api_config/RDS-2013-09-09.yml +2640 -0
- data/lib/aws/api_config/Redshift-2012-12-01.yml +2161 -0
- data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
- data/lib/aws/api_config/Route53-2013-04-01.yml +889 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +448 -0
- data/lib/aws/api_config/SQS-2012-11-05.yml +404 -0
- data/lib/aws/api_config/STS-2011-06-15.yml +151 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
- data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2388 -0
- data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
- data/lib/aws/api_config/StorageGateway-2013-06-30.yml +1025 -0
- data/lib/aws/api_config/Support-2013-04-15.yml +489 -0
- data/lib/aws/auto_scaling.rb +163 -0
- data/lib/aws/auto_scaling/activity.rb +102 -0
- data/lib/aws/auto_scaling/activity_collection.rb +81 -0
- data/lib/aws/auto_scaling/client.rb +48 -0
- data/lib/aws/auto_scaling/config.rb +18 -0
- data/lib/aws/auto_scaling/errors.rb +22 -0
- data/lib/aws/auto_scaling/group.rb +421 -0
- data/lib/aws/auto_scaling/group_collection.rb +96 -0
- data/lib/aws/auto_scaling/group_options.rb +155 -0
- data/lib/aws/auto_scaling/instance.rb +192 -0
- data/lib/aws/auto_scaling/instance_collection.rb +63 -0
- data/lib/aws/auto_scaling/launch_configuration.rb +162 -0
- data/lib/aws/auto_scaling/launch_configuration_collection.rb +160 -0
- data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
- data/lib/aws/auto_scaling/notification_configuration_collection.rb +183 -0
- data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
- data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
- data/lib/aws/auto_scaling/scaling_policy_options.rb +65 -0
- data/lib/aws/auto_scaling/scheduled_action.rb +141 -0
- data/lib/aws/auto_scaling/scheduled_action_collection.rb +202 -0
- data/lib/aws/auto_scaling/tag.rb +59 -0
- data/lib/aws/auto_scaling/tag_collection.rb +114 -0
- data/lib/aws/cloud_formation.rb +272 -0
- data/lib/aws/cloud_formation/client.rb +48 -0
- data/lib/aws/cloud_formation/config.rb +18 -0
- data/lib/aws/cloud_formation/errors.rb +22 -0
- data/lib/aws/cloud_formation/stack.rb +266 -0
- data/lib/aws/cloud_formation/stack_collection.rb +232 -0
- data/lib/aws/cloud_formation/stack_event.rb +73 -0
- data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
- data/lib/aws/cloud_formation/stack_options.rb +72 -0
- data/lib/aws/cloud_formation/stack_output.rb +53 -0
- data/lib/aws/cloud_formation/stack_resource.rb +117 -0
- data/lib/aws/cloud_formation/stack_resource_collection.rb +83 -0
- data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
- data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
- data/lib/aws/cloud_front.rb +72 -0
- data/lib/aws/cloud_front/client.rb +57 -0
- data/lib/aws/cloud_front/config.rb +18 -0
- data/lib/aws/cloud_front/errors.rb +22 -0
- data/lib/aws/cloud_search.rb +73 -0
- data/lib/aws/cloud_search/client.rb +40 -0
- data/lib/aws/cloud_search/config.rb +18 -0
- data/lib/aws/cloud_search/errors.rb +22 -0
- data/lib/aws/cloud_trail.rb +72 -0
- data/lib/aws/cloud_trail/client.rb +35 -0
- data/lib/aws/cloud_trail/config.rb +18 -0
- data/lib/aws/cloud_trail/errors.rb +22 -0
- data/lib/aws/cloud_watch.rb +118 -0
- data/lib/aws/cloud_watch/alarm.rb +293 -0
- data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
- data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
- data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
- data/lib/aws/cloud_watch/client.rb +40 -0
- data/lib/aws/cloud_watch/config.rb +18 -0
- data/lib/aws/cloud_watch/errors.rb +22 -0
- data/lib/aws/cloud_watch/metric.rb +135 -0
- data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
- data/lib/aws/cloud_watch/metric_collection.rb +129 -0
- data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
- data/lib/aws/core.rb +716 -0
- data/lib/aws/core/async_handle.rb +90 -0
- data/lib/aws/core/cacheable.rb +77 -0
- data/lib/aws/core/client.rb +787 -0
- data/lib/aws/core/collection.rb +263 -0
- data/lib/aws/core/collection/simple.rb +82 -0
- data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
- data/lib/aws/core/collection/with_next_token.rb +97 -0
- data/lib/aws/core/configuration.rb +542 -0
- data/lib/aws/core/credential_providers.rb +639 -0
- data/lib/aws/core/data.rb +247 -0
- data/lib/aws/core/deprecations.rb +84 -0
- data/lib/aws/core/endpoints.rb +37 -0
- data/lib/aws/core/http/connection_pool.rb +369 -0
- data/lib/aws/core/http/curb_handler.rb +148 -0
- data/lib/aws/core/http/handler.rb +89 -0
- data/lib/aws/core/http/net_http_handler.rb +144 -0
- data/lib/aws/core/http/patch.rb +102 -0
- data/lib/aws/core/http/request.rb +259 -0
- data/lib/aws/core/http/response.rb +81 -0
- data/lib/aws/core/indifferent_hash.rb +88 -0
- data/lib/aws/core/inflection.rb +56 -0
- data/lib/aws/core/ini_parser.rb +42 -0
- data/lib/aws/core/json_client.rb +47 -0
- data/lib/aws/core/json_parser.rb +76 -0
- data/lib/aws/core/json_request_builder.rb +35 -0
- data/lib/aws/core/json_response_parser.rb +79 -0
- data/lib/aws/core/lazy_error_classes.rb +108 -0
- data/lib/aws/core/log_formatter.rb +428 -0
- data/lib/aws/core/managed_file.rb +32 -0
- data/lib/aws/core/meta_utils.rb +45 -0
- data/lib/aws/core/model.rb +62 -0
- data/lib/aws/core/naming.rb +30 -0
- data/lib/aws/core/option_grammar.rb +738 -0
- data/lib/aws/core/options/json_serializer.rb +82 -0
- data/lib/aws/core/options/validator.rb +155 -0
- data/lib/aws/core/options/xml_serializer.rb +118 -0
- data/lib/aws/core/page_result.rb +75 -0
- data/lib/aws/core/policy.rb +941 -0
- data/lib/aws/core/query_client.rb +41 -0
- data/lib/aws/core/query_error_parser.rb +24 -0
- data/lib/aws/core/query_request_builder.rb +47 -0
- data/lib/aws/core/query_response_parser.rb +35 -0
- data/lib/aws/core/region.rb +85 -0
- data/lib/aws/core/region_collection.rb +80 -0
- data/lib/aws/core/resource.rb +413 -0
- data/lib/aws/core/resource_cache.rb +40 -0
- data/lib/aws/core/response.rb +215 -0
- data/lib/aws/core/response_cache.rb +50 -0
- data/lib/aws/core/rest_error_parser.rb +24 -0
- data/lib/aws/core/rest_json_client.rb +40 -0
- data/lib/aws/core/rest_request_builder.rb +154 -0
- data/lib/aws/core/rest_response_parser.rb +66 -0
- data/lib/aws/core/rest_xml_client.rb +47 -0
- data/lib/aws/core/service_interface.rb +83 -0
- data/lib/aws/core/signers/base.rb +46 -0
- data/lib/aws/core/signers/cloud_front.rb +56 -0
- data/lib/aws/core/signers/s3.rb +159 -0
- data/lib/aws/core/signers/version_2.rb +72 -0
- data/lib/aws/core/signers/version_3.rb +86 -0
- data/lib/aws/core/signers/version_3_https.rb +61 -0
- data/lib/aws/core/signers/version_4.rb +228 -0
- data/lib/aws/core/signers/version_4/chunk_signed_stream.rb +191 -0
- data/lib/aws/core/uri_escape.rb +44 -0
- data/lib/aws/core/xml/frame.rb +245 -0
- data/lib/aws/core/xml/frame_stack.rb +85 -0
- data/lib/aws/core/xml/grammar.rb +307 -0
- data/lib/aws/core/xml/parser.rb +70 -0
- data/lib/aws/core/xml/root_frame.rb +65 -0
- data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
- data/lib/aws/core/xml/sax_handlers/nokogiri.rb +56 -0
- data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
- data/lib/aws/core/xml/sax_handlers/rexml.rb +47 -0
- data/lib/aws/core/xml/stub.rb +123 -0
- data/lib/aws/data_pipeline.rb +72 -0
- data/lib/aws/data_pipeline/client.rb +36 -0
- data/lib/aws/data_pipeline/config.rb +18 -0
- data/lib/aws/data_pipeline/errors.rb +20 -0
- data/lib/aws/direct_connect.rb +73 -0
- data/lib/aws/direct_connect/client.rb +36 -0
- data/lib/aws/direct_connect/config.rb +18 -0
- data/lib/aws/direct_connect/errors.rb +22 -0
- data/lib/aws/dynamo_db.rb +230 -0
- data/lib/aws/dynamo_db/attribute_collection.rb +456 -0
- data/lib/aws/dynamo_db/batch_get.rb +213 -0
- data/lib/aws/dynamo_db/batch_write.rb +254 -0
- data/lib/aws/dynamo_db/binary.rb +35 -0
- data/lib/aws/dynamo_db/client.rb +129 -0
- data/lib/aws/dynamo_db/client/v20111205.rb +1266 -0
- data/lib/aws/dynamo_db/client/v20120810.rb +1409 -0
- data/lib/aws/dynamo_db/client_v2.rb +44 -0
- data/lib/aws/dynamo_db/config.rb +24 -0
- data/lib/aws/dynamo_db/errors.rb +20 -0
- data/lib/aws/dynamo_db/expectations.rb +40 -0
- data/lib/aws/dynamo_db/item.rb +133 -0
- data/lib/aws/dynamo_db/item_collection.rb +856 -0
- data/lib/aws/dynamo_db/item_data.rb +31 -0
- data/lib/aws/dynamo_db/keys.rb +41 -0
- data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
- data/lib/aws/dynamo_db/resource.rb +33 -0
- data/lib/aws/dynamo_db/table.rb +492 -0
- data/lib/aws/dynamo_db/table_collection.rb +165 -0
- data/lib/aws/dynamo_db/types.rb +111 -0
- data/lib/aws/ec2.rb +428 -0
- data/lib/aws/ec2/attachment.rb +135 -0
- data/lib/aws/ec2/attachment_collection.rb +54 -0
- data/lib/aws/ec2/availability_zone.rb +86 -0
- data/lib/aws/ec2/availability_zone_collection.rb +43 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +154 -0
- data/lib/aws/ec2/collection.rb +36 -0
- data/lib/aws/ec2/config.rb +21 -0
- data/lib/aws/ec2/customer_gateway.rb +90 -0
- data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
- data/lib/aws/ec2/dhcp_options.rb +106 -0
- data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
- data/lib/aws/ec2/elastic_ip.rb +209 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +93 -0
- data/lib/aws/ec2/errors.rb +32 -0
- data/lib/aws/ec2/export_task.rb +120 -0
- data/lib/aws/ec2/export_task_collection.rb +67 -0
- data/lib/aws/ec2/filtered_collection.rb +87 -0
- data/lib/aws/ec2/has_permissions.rb +44 -0
- data/lib/aws/ec2/image.rb +270 -0
- data/lib/aws/ec2/image_collection.rb +219 -0
- data/lib/aws/ec2/instance.rb +803 -0
- data/lib/aws/ec2/instance_collection.rb +402 -0
- data/lib/aws/ec2/internet_gateway.rb +122 -0
- data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
- data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
- data/lib/aws/ec2/key_pair.rb +82 -0
- data/lib/aws/ec2/key_pair_collection.rb +99 -0
- data/lib/aws/ec2/network_acl.rb +256 -0
- data/lib/aws/ec2/network_acl/association.rb +56 -0
- data/lib/aws/ec2/network_acl/entry.rb +147 -0
- data/lib/aws/ec2/network_acl_collection.rb +64 -0
- data/lib/aws/ec2/network_interface.rb +237 -0
- data/lib/aws/ec2/network_interface/attachment.rb +100 -0
- data/lib/aws/ec2/network_interface_collection.rb +103 -0
- data/lib/aws/ec2/permission_collection.rb +174 -0
- data/lib/aws/ec2/region.rb +106 -0
- data/lib/aws/ec2/region_collection.rb +51 -0
- data/lib/aws/ec2/reserved_instances.rb +57 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +45 -0
- data/lib/aws/ec2/resource.rb +161 -0
- data/lib/aws/ec2/resource_tag_collection.rb +211 -0
- data/lib/aws/ec2/route_table.rb +205 -0
- data/lib/aws/ec2/route_table/association.rb +119 -0
- data/lib/aws/ec2/route_table/route.rb +119 -0
- data/lib/aws/ec2/route_table_collection.rb +72 -0
- data/lib/aws/ec2/security_group.rb +482 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
- data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
- data/lib/aws/ec2/security_group_collection.rb +133 -0
- data/lib/aws/ec2/snapshot.rb +143 -0
- data/lib/aws/ec2/snapshot_collection.rb +131 -0
- data/lib/aws/ec2/subnet.rb +161 -0
- data/lib/aws/ec2/subnet_collection.rb +119 -0
- data/lib/aws/ec2/tag.rb +81 -0
- data/lib/aws/ec2/tag_collection.rb +107 -0
- data/lib/aws/ec2/tagged_collection.rb +67 -0
- data/lib/aws/ec2/tagged_item.rb +85 -0
- data/lib/aws/ec2/volume.rb +185 -0
- data/lib/aws/ec2/volume_collection.rb +102 -0
- data/lib/aws/ec2/vpc.rb +174 -0
- data/lib/aws/ec2/vpc_collection.rb +70 -0
- data/lib/aws/ec2/vpn_connection.rb +99 -0
- data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
- data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
- data/lib/aws/ec2/vpn_gateway.rb +123 -0
- data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
- data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
- data/lib/aws/elastic_beanstalk.rb +49 -0
- data/lib/aws/elastic_beanstalk/client.rb +36 -0
- data/lib/aws/elastic_beanstalk/config.rb +18 -0
- data/lib/aws/elastic_beanstalk/errors.rb +22 -0
- data/lib/aws/elastic_transcoder.rb +29 -0
- data/lib/aws/elastic_transcoder/client.rb +48 -0
- data/lib/aws/elastic_transcoder/config.rb +18 -0
- data/lib/aws/elastic_transcoder/errors.rb +23 -0
- data/lib/aws/elasticache.rb +49 -0
- data/lib/aws/elasticache/client.rb +41 -0
- data/lib/aws/elasticache/config.rb +18 -0
- data/lib/aws/elasticache/errors.rb +22 -0
- data/lib/aws/elb.rb +66 -0
- data/lib/aws/elb/availability_zone_collection.rb +138 -0
- data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
- data/lib/aws/elb/client.rb +35 -0
- data/lib/aws/elb/config.rb +18 -0
- data/lib/aws/elb/errors.rb +26 -0
- data/lib/aws/elb/instance_collection.rb +168 -0
- data/lib/aws/elb/listener.rb +190 -0
- data/lib/aws/elb/listener_collection.rb +113 -0
- data/lib/aws/elb/listener_opts.rb +45 -0
- data/lib/aws/elb/load_balancer.rb +280 -0
- data/lib/aws/elb/load_balancer_collection.rb +146 -0
- data/lib/aws/elb/load_balancer_policy.rb +93 -0
- data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
- data/lib/aws/emr.rb +87 -0
- data/lib/aws/emr/client.rb +35 -0
- data/lib/aws/emr/config.rb +18 -0
- data/lib/aws/emr/errors.rb +22 -0
- data/lib/aws/emr/instance_group.rb +138 -0
- data/lib/aws/emr/instance_group_collection.rb +82 -0
- data/lib/aws/emr/job_flow.rb +307 -0
- data/lib/aws/emr/job_flow_collection.rb +183 -0
- data/lib/aws/errors.rb +162 -0
- data/lib/aws/glacier.rb +79 -0
- data/lib/aws/glacier/archive.rb +56 -0
- data/lib/aws/glacier/archive_collection.rb +146 -0
- data/lib/aws/glacier/client.rb +49 -0
- data/lib/aws/glacier/config.rb +19 -0
- data/lib/aws/glacier/errors.rb +22 -0
- data/lib/aws/glacier/resource.rb +30 -0
- data/lib/aws/glacier/vault.rb +145 -0
- data/lib/aws/glacier/vault_collection.rb +75 -0
- data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
- data/lib/aws/iam.rb +408 -0
- data/lib/aws/iam/access_key.rb +185 -0
- data/lib/aws/iam/access_key_collection.rb +128 -0
- data/lib/aws/iam/account_alias_collection.rb +79 -0
- data/lib/aws/iam/client.rb +49 -0
- data/lib/aws/iam/collection.rb +83 -0
- data/lib/aws/iam/config.rb +18 -0
- data/lib/aws/iam/errors.rb +22 -0
- data/lib/aws/iam/group.rb +111 -0
- data/lib/aws/iam/group_collection.rb +132 -0
- data/lib/aws/iam/group_policy_collection.rb +47 -0
- data/lib/aws/iam/group_user_collection.rb +84 -0
- data/lib/aws/iam/login_profile.rb +111 -0
- data/lib/aws/iam/mfa_device.rb +52 -0
- data/lib/aws/iam/mfa_device_collection.rb +127 -0
- data/lib/aws/iam/policy.rb +46 -0
- data/lib/aws/iam/policy_collection.rb +188 -0
- data/lib/aws/iam/resource.rb +62 -0
- data/lib/aws/iam/server_certificate.rb +148 -0
- data/lib/aws/iam/server_certificate_collection.rb +138 -0
- data/lib/aws/iam/signing_certificate.rb +186 -0
- data/lib/aws/iam/signing_certificate_collection.rb +131 -0
- data/lib/aws/iam/user.rb +200 -0
- data/lib/aws/iam/user_collection.rb +133 -0
- data/lib/aws/iam/user_group_collection.rb +98 -0
- data/lib/aws/iam/user_policy.rb +90 -0
- data/lib/aws/iam/user_policy_collection.rb +45 -0
- data/lib/aws/iam/virtual_mfa_device.rb +139 -0
- data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
- data/lib/aws/import_export.rb +73 -0
- data/lib/aws/import_export/client.rb +35 -0
- data/lib/aws/import_export/config.rb +19 -0
- data/lib/aws/import_export/errors.rb +22 -0
- data/lib/aws/kinesis.rb +53 -0
- data/lib/aws/kinesis/client.rb +35 -0
- data/lib/aws/kinesis/config.rb +18 -0
- data/lib/aws/kinesis/errors.rb +20 -0
- data/lib/aws/ops_works.rb +29 -0
- data/lib/aws/ops_works/client.rb +35 -0
- data/lib/aws/ops_works/config.rb +18 -0
- data/lib/aws/ops_works/errors.rb +20 -0
- data/lib/aws/rails.rb +195 -0
- data/lib/aws/rds.rb +70 -0
- data/lib/aws/rds/client.rb +42 -0
- data/lib/aws/rds/config.rb +18 -0
- data/lib/aws/rds/db_instance.rb +215 -0
- data/lib/aws/rds/db_instance_collection.rb +75 -0
- data/lib/aws/rds/db_snapshot.rb +163 -0
- data/lib/aws/rds/db_snapshot_collection.rb +89 -0
- data/lib/aws/rds/errors.rb +22 -0
- data/lib/aws/record.rb +139 -0
- data/lib/aws/record/abstract_base.rb +689 -0
- data/lib/aws/record/attributes.rb +388 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +287 -0
- data/lib/aws/record/errors.rb +143 -0
- data/lib/aws/record/exceptions.rb +51 -0
- data/lib/aws/record/hash_model.rb +204 -0
- data/lib/aws/record/hash_model/attributes.rb +195 -0
- data/lib/aws/record/hash_model/finder_methods.rb +172 -0
- data/lib/aws/record/hash_model/scope.rb +108 -0
- data/lib/aws/record/model.rb +453 -0
- data/lib/aws/record/model/attributes.rb +377 -0
- data/lib/aws/record/model/finder_methods.rb +232 -0
- data/lib/aws/record/model/scope.rb +212 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +203 -0
- data/lib/aws/record/validations.rb +694 -0
- data/lib/aws/record/validator.rb +246 -0
- data/lib/aws/record/validators/acceptance.rb +49 -0
- data/lib/aws/record/validators/block.rb +36 -0
- data/lib/aws/record/validators/confirmation.rb +41 -0
- data/lib/aws/record/validators/count.rb +106 -0
- data/lib/aws/record/validators/exclusion.rb +41 -0
- data/lib/aws/record/validators/format.rb +55 -0
- data/lib/aws/record/validators/inclusion.rb +54 -0
- data/lib/aws/record/validators/length.rb +105 -0
- data/lib/aws/record/validators/method.rb +31 -0
- data/lib/aws/record/validators/numericality.rb +136 -0
- data/lib/aws/record/validators/presence.rb +43 -0
- data/lib/aws/redshift.rb +51 -0
- data/lib/aws/redshift/client.rb +35 -0
- data/lib/aws/redshift/config.rb +18 -0
- data/lib/aws/redshift/errors.rb +22 -0
- data/lib/aws/route_53.rb +86 -0
- data/lib/aws/route_53/change_batch.rb +161 -0
- data/lib/aws/route_53/change_info.rb +72 -0
- data/lib/aws/route_53/client.rb +38 -0
- data/lib/aws/route_53/config.rb +18 -0
- data/lib/aws/route_53/errors.rb +22 -0
- data/lib/aws/route_53/hosted_zone.rb +134 -0
- data/lib/aws/route_53/hosted_zone_collection.rb +101 -0
- data/lib/aws/route_53/resource_record_set.rb +251 -0
- data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
- data/lib/aws/s3.rb +156 -0
- data/lib/aws/s3/access_control_list.rb +265 -0
- data/lib/aws/s3/acl_object.rb +264 -0
- data/lib/aws/s3/acl_options.rb +204 -0
- data/lib/aws/s3/bucket.rb +742 -0
- data/lib/aws/s3/bucket_collection.rb +162 -0
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +473 -0
- data/lib/aws/s3/bucket_tag_collection.rb +111 -0
- data/lib/aws/s3/bucket_version_collection.rb +79 -0
- data/lib/aws/s3/cipher_io.rb +120 -0
- data/lib/aws/s3/client.rb +2067 -0
- data/lib/aws/s3/client/xml.rb +266 -0
- data/lib/aws/s3/config.rb +48 -0
- data/lib/aws/s3/cors_rule.rb +108 -0
- data/lib/aws/s3/cors_rule_collection.rb +194 -0
- data/lib/aws/s3/data_options.rb +191 -0
- data/lib/aws/s3/encryption_utils.rb +146 -0
- data/lib/aws/s3/errors.rb +94 -0
- data/lib/aws/s3/multipart_upload.rb +353 -0
- data/lib/aws/s3/multipart_upload_collection.rb +76 -0
- data/lib/aws/s3/object_collection.rb +353 -0
- data/lib/aws/s3/object_metadata.rb +103 -0
- data/lib/aws/s3/object_upload_collection.rb +77 -0
- data/lib/aws/s3/object_version.rb +154 -0
- data/lib/aws/s3/object_version_collection.rb +89 -0
- data/lib/aws/s3/paginated_collection.rb +75 -0
- data/lib/aws/s3/policy.rb +74 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
- data/lib/aws/s3/prefixed_collection.rb +85 -0
- data/lib/aws/s3/presign_v4.rb +136 -0
- data/lib/aws/s3/presigned_post.rb +554 -0
- data/lib/aws/s3/request.rb +62 -0
- data/lib/aws/s3/s3_object.rb +1784 -0
- data/lib/aws/s3/tree.rb +116 -0
- data/lib/aws/s3/tree/branch_node.rb +68 -0
- data/lib/aws/s3/tree/child_collection.rb +104 -0
- data/lib/aws/s3/tree/leaf_node.rb +94 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +87 -0
- data/lib/aws/s3/uploaded_part.rb +82 -0
- data/lib/aws/s3/uploaded_part_collection.rb +84 -0
- data/lib/aws/s3/website_configuration.rb +102 -0
- data/lib/aws/simple_db.rb +218 -0
- data/lib/aws/simple_db/attribute.rb +156 -0
- data/lib/aws/simple_db/attribute_collection.rb +240 -0
- data/lib/aws/simple_db/client.rb +67 -0
- data/lib/aws/simple_db/config.rb +20 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +62 -0
- data/lib/aws/simple_db/domain.rb +123 -0
- data/lib/aws/simple_db/domain_collection.rb +86 -0
- data/lib/aws/simple_db/domain_metadata.rb +110 -0
- data/lib/aws/simple_db/errors.rb +55 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +93 -0
- data/lib/aws/simple_db/item_collection.rb +654 -0
- data/lib/aws/simple_db/item_data.rb +73 -0
- data/lib/aws/simple_db/put_attributes.rb +60 -0
- data/lib/aws/simple_email_service.rb +443 -0
- data/lib/aws/simple_email_service/client.rb +37 -0
- data/lib/aws/simple_email_service/config.rb +18 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
- data/lib/aws/simple_email_service/errors.rb +22 -0
- data/lib/aws/simple_email_service/identity.rb +230 -0
- data/lib/aws/simple_email_service/identity_collection.rb +81 -0
- data/lib/aws/simple_email_service/quotas.rb +66 -0
- data/lib/aws/simple_workflow.rb +227 -0
- data/lib/aws/simple_workflow/activity_task.rb +178 -0
- data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
- data/lib/aws/simple_workflow/activity_type.rb +131 -0
- data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
- data/lib/aws/simple_workflow/client.rb +69 -0
- data/lib/aws/simple_workflow/config.rb +18 -0
- data/lib/aws/simple_workflow/count.rb +49 -0
- data/lib/aws/simple_workflow/decision_task.rb +603 -0
- data/lib/aws/simple_workflow/decision_task_collection.rb +223 -0
- data/lib/aws/simple_workflow/domain.rb +122 -0
- data/lib/aws/simple_workflow/domain_collection.rb +169 -0
- data/lib/aws/simple_workflow/errors.rb +20 -0
- data/lib/aws/simple_workflow/history_event.rb +276 -0
- data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
- data/lib/aws/simple_workflow/option_formatters.rb +82 -0
- data/lib/aws/simple_workflow/resource.rb +94 -0
- data/lib/aws/simple_workflow/type.rb +89 -0
- data/lib/aws/simple_workflow/type_collection.rb +140 -0
- data/lib/aws/simple_workflow/workflow_execution.rb +384 -0
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
- data/lib/aws/simple_workflow/workflow_type.rb +177 -0
- data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
- data/lib/aws/sns.rb +76 -0
- data/lib/aws/sns/client.rb +35 -0
- data/lib/aws/sns/config.rb +18 -0
- data/lib/aws/sns/errors.rb +22 -0
- data/lib/aws/sns/has_delivery_policy.rb +68 -0
- data/lib/aws/sns/message.rb +204 -0
- data/lib/aws/sns/originators/from_auto_scaling.rb +68 -0
- data/lib/aws/sns/policy.rb +47 -0
- data/lib/aws/sns/subscription.rb +165 -0
- data/lib/aws/sns/subscription_collection.rb +78 -0
- data/lib/aws/sns/topic.rb +403 -0
- data/lib/aws/sns/topic_collection.rb +62 -0
- data/lib/aws/sns/topic_subscription_collection.rb +54 -0
- data/lib/aws/sqs.rb +80 -0
- data/lib/aws/sqs/client.rb +53 -0
- data/lib/aws/sqs/config.rb +20 -0
- data/lib/aws/sqs/errors.rb +125 -0
- data/lib/aws/sqs/policy.rb +48 -0
- data/lib/aws/sqs/queue.rb +856 -0
- data/lib/aws/sqs/queue_collection.rb +186 -0
- data/lib/aws/sqs/received_message.rb +190 -0
- data/lib/aws/sqs/received_sns_message.rb +116 -0
- data/lib/aws/storage_gateway.rb +72 -0
- data/lib/aws/storage_gateway/client.rb +42 -0
- data/lib/aws/storage_gateway/config.rb +18 -0
- data/lib/aws/storage_gateway/errors.rb +22 -0
- data/lib/aws/sts.rb +164 -0
- data/lib/aws/sts/client.rb +55 -0
- data/lib/aws/sts/config.rb +18 -0
- data/lib/aws/sts/errors.rb +22 -0
- data/lib/aws/sts/federated_session.rb +56 -0
- data/lib/aws/sts/policy.rb +30 -0
- data/lib/aws/sts/session.rb +48 -0
- data/lib/aws/support.rb +29 -0
- data/lib/aws/support/client.rb +35 -0
- data/lib/aws/support/config.rb +18 -0
- data/lib/aws/support/errors.rb +20 -0
- data/lib/aws/version.rb +17 -0
- data/rails/init.rb +15 -0
- metadata +634 -0
data/endpoints.json
ADDED
@@ -0,0 +1,1671 @@
|
|
1
|
+
{
|
2
|
+
"regions": {
|
3
|
+
"us-east-1": {
|
4
|
+
"cognito-sync": {
|
5
|
+
"http": false,
|
6
|
+
"https": true,
|
7
|
+
"hostname": "cognito-sync.us-east-1.amazonaws.com"
|
8
|
+
},
|
9
|
+
"cognito-identity": {
|
10
|
+
"http": false,
|
11
|
+
"https": true,
|
12
|
+
"hostname": "cognito-identity.us-east-1.amazonaws.com"
|
13
|
+
},
|
14
|
+
"cloudformation": {
|
15
|
+
"http": false,
|
16
|
+
"https": true,
|
17
|
+
"hostname": "cloudformation.us-east-1.amazonaws.com"
|
18
|
+
},
|
19
|
+
"cloudfront": {
|
20
|
+
"http": true,
|
21
|
+
"https": true,
|
22
|
+
"hostname": "cloudfront.amazonaws.com"
|
23
|
+
},
|
24
|
+
"cloudsearch": {
|
25
|
+
"http": false,
|
26
|
+
"https": true,
|
27
|
+
"hostname": "cloudsearch.us-east-1.amazonaws.com"
|
28
|
+
},
|
29
|
+
"cloudtrail": {
|
30
|
+
"http": false,
|
31
|
+
"https": true,
|
32
|
+
"hostname": "cloudtrail.us-east-1.amazonaws.com"
|
33
|
+
},
|
34
|
+
"monitoring": {
|
35
|
+
"http": true,
|
36
|
+
"https": true,
|
37
|
+
"hostname": "monitoring.us-east-1.amazonaws.com"
|
38
|
+
},
|
39
|
+
"logs": {
|
40
|
+
"http": true,
|
41
|
+
"https": true,
|
42
|
+
"hostname": "logs.us-east-1.amazonaws.com"
|
43
|
+
},
|
44
|
+
"dynamodb": {
|
45
|
+
"http": true,
|
46
|
+
"https": true,
|
47
|
+
"hostname": "dynamodb.us-east-1.amazonaws.com"
|
48
|
+
},
|
49
|
+
"ec2": {
|
50
|
+
"http": true,
|
51
|
+
"https": true,
|
52
|
+
"hostname": "ec2.us-east-1.amazonaws.com"
|
53
|
+
},
|
54
|
+
"elasticmapreduce": {
|
55
|
+
"http": true,
|
56
|
+
"https": true,
|
57
|
+
"hostname": "elasticmapreduce.us-east-1.amazonaws.com"
|
58
|
+
},
|
59
|
+
"elasticache": {
|
60
|
+
"http": false,
|
61
|
+
"https": true,
|
62
|
+
"hostname": "elasticache.us-east-1.amazonaws.com"
|
63
|
+
},
|
64
|
+
"rds": {
|
65
|
+
"http": false,
|
66
|
+
"https": true,
|
67
|
+
"hostname": "rds.us-east-1.amazonaws.com"
|
68
|
+
},
|
69
|
+
"route53": {
|
70
|
+
"http": false,
|
71
|
+
"https": true,
|
72
|
+
"hostname": "route53.amazonaws.com"
|
73
|
+
},
|
74
|
+
"email": {
|
75
|
+
"http": false,
|
76
|
+
"https": true,
|
77
|
+
"hostname": "email.us-east-1.amazonaws.com"
|
78
|
+
},
|
79
|
+
"sdb": {
|
80
|
+
"http": true,
|
81
|
+
"https": true,
|
82
|
+
"hostname": "sdb.amazonaws.com"
|
83
|
+
},
|
84
|
+
"sns": {
|
85
|
+
"http": true,
|
86
|
+
"https": true,
|
87
|
+
"hostname": "sns.us-east-1.amazonaws.com"
|
88
|
+
},
|
89
|
+
"sqs": {
|
90
|
+
"http": true,
|
91
|
+
"https": true,
|
92
|
+
"hostname": "sqs.us-east-1.amazonaws.com"
|
93
|
+
},
|
94
|
+
"s3": {
|
95
|
+
"http": true,
|
96
|
+
"https": true,
|
97
|
+
"hostname": "s3.amazonaws.com"
|
98
|
+
},
|
99
|
+
"autoscaling": {
|
100
|
+
"http": true,
|
101
|
+
"https": true,
|
102
|
+
"hostname": "autoscaling.us-east-1.amazonaws.com"
|
103
|
+
},
|
104
|
+
"elasticbeanstalk": {
|
105
|
+
"http": false,
|
106
|
+
"https": true,
|
107
|
+
"hostname": "elasticbeanstalk.us-east-1.amazonaws.com"
|
108
|
+
},
|
109
|
+
"iam": {
|
110
|
+
"http": false,
|
111
|
+
"https": true,
|
112
|
+
"hostname": "iam.amazonaws.com"
|
113
|
+
},
|
114
|
+
"importexport": {
|
115
|
+
"http": false,
|
116
|
+
"https": true,
|
117
|
+
"hostname": "importexport.amazonaws.com"
|
118
|
+
},
|
119
|
+
"sts": {
|
120
|
+
"http": false,
|
121
|
+
"https": true,
|
122
|
+
"hostname": "sts.amazonaws.com"
|
123
|
+
},
|
124
|
+
"storagegateway": {
|
125
|
+
"http": false,
|
126
|
+
"https": true,
|
127
|
+
"hostname": "storagegateway.us-east-1.amazonaws.com"
|
128
|
+
},
|
129
|
+
"support": {
|
130
|
+
"http": false,
|
131
|
+
"https": true,
|
132
|
+
"hostname": "support.us-east-1.amazonaws.com"
|
133
|
+
},
|
134
|
+
"elasticloadbalancing": {
|
135
|
+
"http": true,
|
136
|
+
"https": true,
|
137
|
+
"hostname": "elasticloadbalancing.us-east-1.amazonaws.com"
|
138
|
+
},
|
139
|
+
"swf": {
|
140
|
+
"http": false,
|
141
|
+
"https": true,
|
142
|
+
"hostname": "swf.us-east-1.amazonaws.com"
|
143
|
+
},
|
144
|
+
"glacier": {
|
145
|
+
"http": true,
|
146
|
+
"https": true,
|
147
|
+
"hostname": "glacier.us-east-1.amazonaws.com"
|
148
|
+
},
|
149
|
+
"directconnect": {
|
150
|
+
"http": false,
|
151
|
+
"https": true,
|
152
|
+
"hostname": "directconnect.us-east-1.amazonaws.com"
|
153
|
+
},
|
154
|
+
"datapipeline": {
|
155
|
+
"http": false,
|
156
|
+
"https": true,
|
157
|
+
"hostname": "datapipeline.us-east-1.amazonaws.com"
|
158
|
+
},
|
159
|
+
"redshift": {
|
160
|
+
"http": false,
|
161
|
+
"https": true,
|
162
|
+
"hostname": "redshift.us-east-1.amazonaws.com"
|
163
|
+
},
|
164
|
+
"kinesis": {
|
165
|
+
"http": false,
|
166
|
+
"https": true,
|
167
|
+
"hostname": "kinesis.us-east-1.amazonaws.com"
|
168
|
+
},
|
169
|
+
"opsworks": {
|
170
|
+
"http": false,
|
171
|
+
"https": true,
|
172
|
+
"hostname": "opsworks.us-east-1.amazonaws.com"
|
173
|
+
},
|
174
|
+
"elastictranscoder": {
|
175
|
+
"http": false,
|
176
|
+
"https": true,
|
177
|
+
"hostname": "elastictranscoder.us-east-1.amazonaws.com"
|
178
|
+
}
|
179
|
+
},
|
180
|
+
"us-west-1": {
|
181
|
+
"cloudformation": {
|
182
|
+
"http": false,
|
183
|
+
"https": true,
|
184
|
+
"hostname": "cloudformation.us-west-1.amazonaws.com"
|
185
|
+
},
|
186
|
+
"cloudfront": {
|
187
|
+
"http": true,
|
188
|
+
"https": true,
|
189
|
+
"hostname": "cloudfront.amazonaws.com",
|
190
|
+
"authregion": "us-east-1"
|
191
|
+
},
|
192
|
+
"cloudsearch": {
|
193
|
+
"http": false,
|
194
|
+
"https": true,
|
195
|
+
"hostname": "cloudsearch.us-west-1.amazonaws.com"
|
196
|
+
},
|
197
|
+
"cloudtrail": {
|
198
|
+
"http": false,
|
199
|
+
"https": true,
|
200
|
+
"hostname": "cloudtrail.us-west-1.amazonaws.com"
|
201
|
+
},
|
202
|
+
"monitoring": {
|
203
|
+
"http": true,
|
204
|
+
"https": true,
|
205
|
+
"hostname": "monitoring.us-west-1.amazonaws.com"
|
206
|
+
},
|
207
|
+
"dynamodb": {
|
208
|
+
"http": true,
|
209
|
+
"https": true,
|
210
|
+
"hostname": "dynamodb.us-west-1.amazonaws.com"
|
211
|
+
},
|
212
|
+
"ec2": {
|
213
|
+
"http": true,
|
214
|
+
"https": true,
|
215
|
+
"hostname": "ec2.us-west-1.amazonaws.com"
|
216
|
+
},
|
217
|
+
"elasticmapreduce": {
|
218
|
+
"http": true,
|
219
|
+
"https": true,
|
220
|
+
"hostname": "elasticmapreduce.us-west-1.amazonaws.com"
|
221
|
+
},
|
222
|
+
"elasticache": {
|
223
|
+
"http": false,
|
224
|
+
"https": true,
|
225
|
+
"hostname": "elasticache.us-west-1.amazonaws.com"
|
226
|
+
},
|
227
|
+
"rds": {
|
228
|
+
"http": false,
|
229
|
+
"https": true,
|
230
|
+
"hostname": "rds.us-west-1.amazonaws.com"
|
231
|
+
},
|
232
|
+
"route53": {
|
233
|
+
"http": false,
|
234
|
+
"https": true,
|
235
|
+
"hostname": "route53.amazonaws.com"
|
236
|
+
},
|
237
|
+
"sdb": {
|
238
|
+
"http": true,
|
239
|
+
"https": true,
|
240
|
+
"hostname": "sdb.us-west-1.amazonaws.com"
|
241
|
+
},
|
242
|
+
"sns": {
|
243
|
+
"http": true,
|
244
|
+
"https": true,
|
245
|
+
"hostname": "sns.us-west-1.amazonaws.com"
|
246
|
+
},
|
247
|
+
"sqs": {
|
248
|
+
"http": true,
|
249
|
+
"https": true,
|
250
|
+
"hostname": "sqs.us-west-1.amazonaws.com"
|
251
|
+
},
|
252
|
+
"s3": {
|
253
|
+
"http": true,
|
254
|
+
"https": true,
|
255
|
+
"hostname": "s3-us-west-1.amazonaws.com"
|
256
|
+
},
|
257
|
+
"autoscaling": {
|
258
|
+
"http": true,
|
259
|
+
"https": true,
|
260
|
+
"hostname": "autoscaling.us-west-1.amazonaws.com"
|
261
|
+
},
|
262
|
+
"elasticbeanstalk": {
|
263
|
+
"http": false,
|
264
|
+
"https": true,
|
265
|
+
"hostname": "elasticbeanstalk.us-west-1.amazonaws.com"
|
266
|
+
},
|
267
|
+
"iam": {
|
268
|
+
"http": false,
|
269
|
+
"https": true,
|
270
|
+
"hostname": "iam.amazonaws.com",
|
271
|
+
"authregion": "us-east-1"
|
272
|
+
},
|
273
|
+
"importexport": {
|
274
|
+
"http": false,
|
275
|
+
"https": true,
|
276
|
+
"hostname": "importexport.amazonaws.com"
|
277
|
+
},
|
278
|
+
"sts": {
|
279
|
+
"http": false,
|
280
|
+
"https": true,
|
281
|
+
"hostname": "sts.amazonaws.com",
|
282
|
+
"authregion": "us-east-1"
|
283
|
+
},
|
284
|
+
"storagegateway": {
|
285
|
+
"http": false,
|
286
|
+
"https": true,
|
287
|
+
"hostname": "storagegateway.us-west-1.amazonaws.com"
|
288
|
+
},
|
289
|
+
"elasticloadbalancing": {
|
290
|
+
"http": true,
|
291
|
+
"https": true,
|
292
|
+
"hostname": "elasticloadbalancing.us-west-1.amazonaws.com"
|
293
|
+
},
|
294
|
+
"swf": {
|
295
|
+
"http": false,
|
296
|
+
"https": true,
|
297
|
+
"hostname": "swf.us-west-1.amazonaws.com"
|
298
|
+
},
|
299
|
+
"glacier": {
|
300
|
+
"http": true,
|
301
|
+
"https": true,
|
302
|
+
"hostname": "glacier.us-west-1.amazonaws.com"
|
303
|
+
},
|
304
|
+
"directconnect": {
|
305
|
+
"http": false,
|
306
|
+
"https": true,
|
307
|
+
"hostname": "directconnect.us-west-1.amazonaws.com"
|
308
|
+
},
|
309
|
+
"elastictranscoder": {
|
310
|
+
"http": false,
|
311
|
+
"https": true,
|
312
|
+
"hostname": "elastictranscoder.us-west-1.amazonaws.com"
|
313
|
+
}
|
314
|
+
},
|
315
|
+
"us-west-2": {
|
316
|
+
"cloudformation": {
|
317
|
+
"http": false,
|
318
|
+
"https": true,
|
319
|
+
"hostname": "cloudformation.us-west-2.amazonaws.com"
|
320
|
+
},
|
321
|
+
"cloudfront": {
|
322
|
+
"http": true,
|
323
|
+
"https": true,
|
324
|
+
"hostname": "cloudfront.amazonaws.com",
|
325
|
+
"authregion": "us-east-1"
|
326
|
+
},
|
327
|
+
"cloudsearch": {
|
328
|
+
"http": false,
|
329
|
+
"https": true,
|
330
|
+
"hostname": "cloudsearch.us-west-2.amazonaws.com"
|
331
|
+
},
|
332
|
+
"cloudtrail": {
|
333
|
+
"http": false,
|
334
|
+
"https": true,
|
335
|
+
"hostname": "cloudtrail.us-west-2.amazonaws.com"
|
336
|
+
},
|
337
|
+
"monitoring": {
|
338
|
+
"http": true,
|
339
|
+
"https": true,
|
340
|
+
"hostname": "monitoring.us-west-2.amazonaws.com"
|
341
|
+
},
|
342
|
+
"dynamodb": {
|
343
|
+
"http": true,
|
344
|
+
"https": true,
|
345
|
+
"hostname": "dynamodb.us-west-2.amazonaws.com"
|
346
|
+
},
|
347
|
+
"ec2": {
|
348
|
+
"http": true,
|
349
|
+
"https": true,
|
350
|
+
"hostname": "ec2.us-west-2.amazonaws.com"
|
351
|
+
},
|
352
|
+
"elasticmapreduce": {
|
353
|
+
"http": true,
|
354
|
+
"https": true,
|
355
|
+
"hostname": "elasticmapreduce.us-west-2.amazonaws.com"
|
356
|
+
},
|
357
|
+
"elasticache": {
|
358
|
+
"http": false,
|
359
|
+
"https": true,
|
360
|
+
"hostname": "elasticache.us-west-2.amazonaws.com"
|
361
|
+
},
|
362
|
+
"rds": {
|
363
|
+
"http": false,
|
364
|
+
"https": true,
|
365
|
+
"hostname": "rds.us-west-2.amazonaws.com"
|
366
|
+
},
|
367
|
+
"route53": {
|
368
|
+
"http": false,
|
369
|
+
"https": true,
|
370
|
+
"hostname": "route53.amazonaws.com"
|
371
|
+
},
|
372
|
+
"email": {
|
373
|
+
"http": false,
|
374
|
+
"https": true,
|
375
|
+
"hostname": "email.us-west-2.amazonaws.com"
|
376
|
+
},
|
377
|
+
"sdb": {
|
378
|
+
"http": true,
|
379
|
+
"https": true,
|
380
|
+
"hostname": "sdb.us-west-2.amazonaws.com"
|
381
|
+
},
|
382
|
+
"sns": {
|
383
|
+
"http": true,
|
384
|
+
"https": true,
|
385
|
+
"hostname": "sns.us-west-2.amazonaws.com"
|
386
|
+
},
|
387
|
+
"sqs": {
|
388
|
+
"http": true,
|
389
|
+
"https": true,
|
390
|
+
"hostname": "sqs.us-west-2.amazonaws.com"
|
391
|
+
},
|
392
|
+
"s3": {
|
393
|
+
"http": true,
|
394
|
+
"https": true,
|
395
|
+
"hostname": "s3-us-west-2.amazonaws.com"
|
396
|
+
},
|
397
|
+
"autoscaling": {
|
398
|
+
"http": true,
|
399
|
+
"https": true,
|
400
|
+
"hostname": "autoscaling.us-west-2.amazonaws.com"
|
401
|
+
},
|
402
|
+
"elasticbeanstalk": {
|
403
|
+
"http": false,
|
404
|
+
"https": true,
|
405
|
+
"hostname": "elasticbeanstalk.us-west-2.amazonaws.com"
|
406
|
+
},
|
407
|
+
"iam": {
|
408
|
+
"http": false,
|
409
|
+
"https": true,
|
410
|
+
"hostname": "iam.amazonaws.com",
|
411
|
+
"authregion": "us-east-1"
|
412
|
+
},
|
413
|
+
"importexport": {
|
414
|
+
"http": false,
|
415
|
+
"https": true,
|
416
|
+
"hostname": "importexport.amazonaws.com"
|
417
|
+
},
|
418
|
+
"sts": {
|
419
|
+
"http": false,
|
420
|
+
"https": true,
|
421
|
+
"hostname": "sts.amazonaws.com",
|
422
|
+
"authregion": "us-east-1"
|
423
|
+
},
|
424
|
+
"storagegateway": {
|
425
|
+
"http": false,
|
426
|
+
"https": true,
|
427
|
+
"hostname": "storagegateway.us-west-2.amazonaws.com"
|
428
|
+
},
|
429
|
+
"elasticloadbalancing": {
|
430
|
+
"http": true,
|
431
|
+
"https": true,
|
432
|
+
"hostname": "elasticloadbalancing.us-west-2.amazonaws.com"
|
433
|
+
},
|
434
|
+
"swf": {
|
435
|
+
"http": false,
|
436
|
+
"https": true,
|
437
|
+
"hostname": "swf.us-west-2.amazonaws.com"
|
438
|
+
},
|
439
|
+
"glacier": {
|
440
|
+
"http": true,
|
441
|
+
"https": true,
|
442
|
+
"hostname": "glacier.us-west-2.amazonaws.com"
|
443
|
+
},
|
444
|
+
"directconnect": {
|
445
|
+
"http": false,
|
446
|
+
"https": true,
|
447
|
+
"hostname": "directconnect.us-west-2.amazonaws.com"
|
448
|
+
},
|
449
|
+
"datapipeline": {
|
450
|
+
"http": false,
|
451
|
+
"https": true,
|
452
|
+
"hostname": "datapipeline.us-west-2.amazonaws.com"
|
453
|
+
},
|
454
|
+
"redshift": {
|
455
|
+
"http": false,
|
456
|
+
"https": true,
|
457
|
+
"hostname": "redshift.us-west-2.amazonaws.com"
|
458
|
+
},
|
459
|
+
"kinesis": {
|
460
|
+
"http": false,
|
461
|
+
"https": true,
|
462
|
+
"hostname": "kinesis.us-west-2.amazonaws.com"
|
463
|
+
},
|
464
|
+
"elastictranscoder": {
|
465
|
+
"http": false,
|
466
|
+
"https": true,
|
467
|
+
"hostname": "elastictranscoder.us-west-2.amazonaws.com"
|
468
|
+
}
|
469
|
+
},
|
470
|
+
"ap-northeast-1": {
|
471
|
+
"cloudformation": {
|
472
|
+
"http": false,
|
473
|
+
"https": true,
|
474
|
+
"hostname": "cloudformation.ap-northeast-1.amazonaws.com"
|
475
|
+
},
|
476
|
+
"cloudfront": {
|
477
|
+
"http": true,
|
478
|
+
"https": true,
|
479
|
+
"hostname": "cloudfront.amazonaws.com",
|
480
|
+
"authregion": "us-east-1"
|
481
|
+
},
|
482
|
+
"cloudsearch": {
|
483
|
+
"http": false,
|
484
|
+
"https": true,
|
485
|
+
"hostname": "cloudsearch.ap-northeast-1.amazonaws.com"
|
486
|
+
},
|
487
|
+
"cloudtrail": {
|
488
|
+
"http": false,
|
489
|
+
"https": true,
|
490
|
+
"hostname": "cloudtrail.ap-northeast-1.amazonaws.com"
|
491
|
+
},
|
492
|
+
"monitoring": {
|
493
|
+
"http": true,
|
494
|
+
"https": true,
|
495
|
+
"hostname": "monitoring.ap-northeast-1.amazonaws.com"
|
496
|
+
},
|
497
|
+
"dynamodb": {
|
498
|
+
"http": true,
|
499
|
+
"https": true,
|
500
|
+
"hostname": "dynamodb.ap-northeast-1.amazonaws.com"
|
501
|
+
},
|
502
|
+
"ec2": {
|
503
|
+
"http": true,
|
504
|
+
"https": true,
|
505
|
+
"hostname": "ec2.ap-northeast-1.amazonaws.com"
|
506
|
+
},
|
507
|
+
"elasticmapreduce": {
|
508
|
+
"http": true,
|
509
|
+
"https": true,
|
510
|
+
"hostname": "elasticmapreduce.ap-northeast-1.amazonaws.com"
|
511
|
+
},
|
512
|
+
"elasticache": {
|
513
|
+
"http": false,
|
514
|
+
"https": true,
|
515
|
+
"hostname": "elasticache.ap-northeast-1.amazonaws.com"
|
516
|
+
},
|
517
|
+
"rds": {
|
518
|
+
"http": false,
|
519
|
+
"https": true,
|
520
|
+
"hostname": "rds.ap-northeast-1.amazonaws.com"
|
521
|
+
},
|
522
|
+
"route53": {
|
523
|
+
"http": false,
|
524
|
+
"https": true,
|
525
|
+
"hostname": "route53.amazonaws.com"
|
526
|
+
},
|
527
|
+
"sdb": {
|
528
|
+
"http": true,
|
529
|
+
"https": true,
|
530
|
+
"hostname": "sdb.ap-northeast-1.amazonaws.com"
|
531
|
+
},
|
532
|
+
"sns": {
|
533
|
+
"http": true,
|
534
|
+
"https": true,
|
535
|
+
"hostname": "sns.ap-northeast-1.amazonaws.com"
|
536
|
+
},
|
537
|
+
"sqs": {
|
538
|
+
"http": true,
|
539
|
+
"https": true,
|
540
|
+
"hostname": "sqs.ap-northeast-1.amazonaws.com"
|
541
|
+
},
|
542
|
+
"s3": {
|
543
|
+
"http": true,
|
544
|
+
"https": true,
|
545
|
+
"hostname": "s3-ap-northeast-1.amazonaws.com"
|
546
|
+
},
|
547
|
+
"autoscaling": {
|
548
|
+
"http": true,
|
549
|
+
"https": true,
|
550
|
+
"hostname": "autoscaling.ap-northeast-1.amazonaws.com"
|
551
|
+
},
|
552
|
+
"elasticbeanstalk": {
|
553
|
+
"http": false,
|
554
|
+
"https": true,
|
555
|
+
"hostname": "elasticbeanstalk.ap-northeast-1.amazonaws.com"
|
556
|
+
},
|
557
|
+
"iam": {
|
558
|
+
"http": false,
|
559
|
+
"https": true,
|
560
|
+
"hostname": "iam.amazonaws.com",
|
561
|
+
"authregion": "us-east-1"
|
562
|
+
},
|
563
|
+
"importexport": {
|
564
|
+
"http": false,
|
565
|
+
"https": true,
|
566
|
+
"hostname": "importexport.amazonaws.com"
|
567
|
+
},
|
568
|
+
"sts": {
|
569
|
+
"http": false,
|
570
|
+
"https": true,
|
571
|
+
"hostname": "sts.amazonaws.com",
|
572
|
+
"authregion": "us-east-1"
|
573
|
+
},
|
574
|
+
"storagegateway": {
|
575
|
+
"http": false,
|
576
|
+
"https": true,
|
577
|
+
"hostname": "storagegateway.ap-northeast-1.amazonaws.com"
|
578
|
+
},
|
579
|
+
"elasticloadbalancing": {
|
580
|
+
"http": true,
|
581
|
+
"https": true,
|
582
|
+
"hostname": "elasticloadbalancing.ap-northeast-1.amazonaws.com"
|
583
|
+
},
|
584
|
+
"swf": {
|
585
|
+
"http": false,
|
586
|
+
"https": true,
|
587
|
+
"hostname": "swf.ap-northeast-1.amazonaws.com"
|
588
|
+
},
|
589
|
+
"glacier": {
|
590
|
+
"http": true,
|
591
|
+
"https": true,
|
592
|
+
"hostname": "glacier.ap-northeast-1.amazonaws.com"
|
593
|
+
},
|
594
|
+
"directconnect": {
|
595
|
+
"http": false,
|
596
|
+
"https": true,
|
597
|
+
"hostname": "directconnect.ap-northeast-1.amazonaws.com"
|
598
|
+
},
|
599
|
+
"datapipeline": {
|
600
|
+
"http": false,
|
601
|
+
"https": true,
|
602
|
+
"hostname": "datapipeline.ap-northeast-1.amazonaws.com"
|
603
|
+
},
|
604
|
+
"redshift": {
|
605
|
+
"http": false,
|
606
|
+
"https": true,
|
607
|
+
"hostname": "redshift.ap-northeast-1.amazonaws.com"
|
608
|
+
},
|
609
|
+
"kinesis": {
|
610
|
+
"http": false,
|
611
|
+
"https": true,
|
612
|
+
"hostname": "kinesis.ap-northeast-1.amazonaws.com"
|
613
|
+
},
|
614
|
+
"elastictranscoder": {
|
615
|
+
"http": false,
|
616
|
+
"https": true,
|
617
|
+
"hostname": "elastictranscoder.ap-northeast-1.amazonaws.com"
|
618
|
+
}
|
619
|
+
},
|
620
|
+
"ap-southeast-1": {
|
621
|
+
"cloudformation": {
|
622
|
+
"http": false,
|
623
|
+
"https": true,
|
624
|
+
"hostname": "cloudformation.ap-southeast-1.amazonaws.com"
|
625
|
+
},
|
626
|
+
"cloudfront": {
|
627
|
+
"http": true,
|
628
|
+
"https": true,
|
629
|
+
"hostname": "cloudfront.amazonaws.com",
|
630
|
+
"authregion": "us-east-1"
|
631
|
+
},
|
632
|
+
"cloudsearch": {
|
633
|
+
"http": false,
|
634
|
+
"https": true,
|
635
|
+
"hostname": "cloudsearch.ap-southeast-1.amazonaws.com"
|
636
|
+
},
|
637
|
+
"cloudtrail": {
|
638
|
+
"http": false,
|
639
|
+
"https": true,
|
640
|
+
"hostname": "cloudtrail.ap-southeast-1.amazonaws.com"
|
641
|
+
},
|
642
|
+
"monitoring": {
|
643
|
+
"http": true,
|
644
|
+
"https": true,
|
645
|
+
"hostname": "monitoring.ap-southeast-1.amazonaws.com"
|
646
|
+
},
|
647
|
+
"dynamodb": {
|
648
|
+
"http": true,
|
649
|
+
"https": true,
|
650
|
+
"hostname": "dynamodb.ap-southeast-1.amazonaws.com"
|
651
|
+
},
|
652
|
+
"ec2": {
|
653
|
+
"http": true,
|
654
|
+
"https": true,
|
655
|
+
"hostname": "ec2.ap-southeast-1.amazonaws.com"
|
656
|
+
},
|
657
|
+
"elasticmapreduce": {
|
658
|
+
"http": true,
|
659
|
+
"https": true,
|
660
|
+
"hostname": "elasticmapreduce.ap-southeast-1.amazonaws.com"
|
661
|
+
},
|
662
|
+
"elasticache": {
|
663
|
+
"http": false,
|
664
|
+
"https": true,
|
665
|
+
"hostname": "elasticache.ap-southeast-1.amazonaws.com"
|
666
|
+
},
|
667
|
+
"rds": {
|
668
|
+
"http": false,
|
669
|
+
"https": true,
|
670
|
+
"hostname": "rds.ap-southeast-1.amazonaws.com"
|
671
|
+
},
|
672
|
+
"route53": {
|
673
|
+
"http": false,
|
674
|
+
"https": true,
|
675
|
+
"hostname": "route53.amazonaws.com"
|
676
|
+
},
|
677
|
+
"sdb": {
|
678
|
+
"http": true,
|
679
|
+
"https": true,
|
680
|
+
"hostname": "sdb.ap-southeast-1.amazonaws.com"
|
681
|
+
},
|
682
|
+
"sns": {
|
683
|
+
"http": true,
|
684
|
+
"https": true,
|
685
|
+
"hostname": "sns.ap-southeast-1.amazonaws.com"
|
686
|
+
},
|
687
|
+
"sqs": {
|
688
|
+
"http": true,
|
689
|
+
"https": true,
|
690
|
+
"hostname": "sqs.ap-southeast-1.amazonaws.com"
|
691
|
+
},
|
692
|
+
"s3": {
|
693
|
+
"http": true,
|
694
|
+
"https": true,
|
695
|
+
"hostname": "s3-ap-southeast-1.amazonaws.com"
|
696
|
+
},
|
697
|
+
"autoscaling": {
|
698
|
+
"http": true,
|
699
|
+
"https": true,
|
700
|
+
"hostname": "autoscaling.ap-southeast-1.amazonaws.com"
|
701
|
+
},
|
702
|
+
"elasticbeanstalk": {
|
703
|
+
"http": false,
|
704
|
+
"https": true,
|
705
|
+
"hostname": "elasticbeanstalk.ap-southeast-1.amazonaws.com"
|
706
|
+
},
|
707
|
+
"iam": {
|
708
|
+
"http": false,
|
709
|
+
"https": true,
|
710
|
+
"hostname": "iam.amazonaws.com",
|
711
|
+
"authregion": "us-east-1"
|
712
|
+
},
|
713
|
+
"importexport": {
|
714
|
+
"http": false,
|
715
|
+
"https": true,
|
716
|
+
"hostname": "importexport.amazonaws.com"
|
717
|
+
},
|
718
|
+
"sts": {
|
719
|
+
"http": false,
|
720
|
+
"https": true,
|
721
|
+
"hostname": "sts.amazonaws.com",
|
722
|
+
"authregion": "us-east-1"
|
723
|
+
},
|
724
|
+
"storagegateway": {
|
725
|
+
"http": false,
|
726
|
+
"https": true,
|
727
|
+
"hostname": "storagegateway.ap-southeast-1.amazonaws.com"
|
728
|
+
},
|
729
|
+
"elasticloadbalancing": {
|
730
|
+
"http": true,
|
731
|
+
"https": true,
|
732
|
+
"hostname": "elasticloadbalancing.ap-southeast-1.amazonaws.com"
|
733
|
+
},
|
734
|
+
"swf": {
|
735
|
+
"http": false,
|
736
|
+
"https": true,
|
737
|
+
"hostname": "swf.ap-southeast-1.amazonaws.com"
|
738
|
+
},
|
739
|
+
"directconnect": {
|
740
|
+
"http": false,
|
741
|
+
"https": true,
|
742
|
+
"hostname": "directconnect.ap-southeast-1.amazonaws.com"
|
743
|
+
},
|
744
|
+
"redshift": {
|
745
|
+
"http": false,
|
746
|
+
"https": true,
|
747
|
+
"hostname": "redshift.ap-southeast-1.amazonaws.com"
|
748
|
+
},
|
749
|
+
"kinesis": {
|
750
|
+
"http": false,
|
751
|
+
"https": true,
|
752
|
+
"hostname": "kinesis.ap-southeast-1.amazonaws.com"
|
753
|
+
},
|
754
|
+
"elastictranscoder": {
|
755
|
+
"http": false,
|
756
|
+
"https": true,
|
757
|
+
"hostname": "elastictranscoder.ap-southeast-1.amazonaws.com"
|
758
|
+
}
|
759
|
+
},
|
760
|
+
"ap-southeast-2": {
|
761
|
+
"cloudformation": {
|
762
|
+
"http": false,
|
763
|
+
"https": true,
|
764
|
+
"hostname": "cloudformation.ap-southeast-2.amazonaws.com"
|
765
|
+
},
|
766
|
+
"cloudfront": {
|
767
|
+
"http": true,
|
768
|
+
"https": true,
|
769
|
+
"hostname": "cloudfront.amazonaws.com",
|
770
|
+
"authregion": "us-east-1"
|
771
|
+
},
|
772
|
+
"cloudsearch": {
|
773
|
+
"http": false,
|
774
|
+
"https": true,
|
775
|
+
"hostname": "cloudsearch.ap-southeast-2.amazonaws.com"
|
776
|
+
},
|
777
|
+
"cloudtrail": {
|
778
|
+
"http": false,
|
779
|
+
"https": true,
|
780
|
+
"hostname": "cloudtrail.ap-southeast-2.amazonaws.com"
|
781
|
+
},
|
782
|
+
"monitoring": {
|
783
|
+
"http": true,
|
784
|
+
"https": true,
|
785
|
+
"hostname": "monitoring.ap-southeast-2.amazonaws.com"
|
786
|
+
},
|
787
|
+
"dynamodb": {
|
788
|
+
"http": true,
|
789
|
+
"https": true,
|
790
|
+
"hostname": "dynamodb.ap-southeast-2.amazonaws.com"
|
791
|
+
},
|
792
|
+
"ec2": {
|
793
|
+
"http": true,
|
794
|
+
"https": true,
|
795
|
+
"hostname": "ec2.ap-southeast-2.amazonaws.com"
|
796
|
+
},
|
797
|
+
"elasticmapreduce": {
|
798
|
+
"http": true,
|
799
|
+
"https": true,
|
800
|
+
"hostname": "elasticmapreduce.ap-southeast-2.amazonaws.com"
|
801
|
+
},
|
802
|
+
"elasticache": {
|
803
|
+
"http": false,
|
804
|
+
"https": true,
|
805
|
+
"hostname": "elasticache.ap-southeast-2.amazonaws.com"
|
806
|
+
},
|
807
|
+
"rds": {
|
808
|
+
"http": false,
|
809
|
+
"https": true,
|
810
|
+
"hostname": "rds.ap-southeast-2.amazonaws.com"
|
811
|
+
},
|
812
|
+
"route53": {
|
813
|
+
"http": false,
|
814
|
+
"https": true,
|
815
|
+
"hostname": "route53.amazonaws.com"
|
816
|
+
},
|
817
|
+
"sdb": {
|
818
|
+
"http": true,
|
819
|
+
"https": true,
|
820
|
+
"hostname": "sdb.ap-southeast-2.amazonaws.com"
|
821
|
+
},
|
822
|
+
"sns": {
|
823
|
+
"http": true,
|
824
|
+
"https": true,
|
825
|
+
"hostname": "sns.ap-southeast-2.amazonaws.com"
|
826
|
+
},
|
827
|
+
"sqs": {
|
828
|
+
"http": true,
|
829
|
+
"https": true,
|
830
|
+
"hostname": "sqs.ap-southeast-2.amazonaws.com"
|
831
|
+
},
|
832
|
+
"s3": {
|
833
|
+
"http": true,
|
834
|
+
"https": true,
|
835
|
+
"hostname": "s3-ap-southeast-2.amazonaws.com"
|
836
|
+
},
|
837
|
+
"autoscaling": {
|
838
|
+
"http": true,
|
839
|
+
"https": true,
|
840
|
+
"hostname": "autoscaling.ap-southeast-2.amazonaws.com"
|
841
|
+
},
|
842
|
+
"elasticbeanstalk": {
|
843
|
+
"http": false,
|
844
|
+
"https": true,
|
845
|
+
"hostname": "elasticbeanstalk.ap-southeast-2.amazonaws.com"
|
846
|
+
},
|
847
|
+
"iam": {
|
848
|
+
"http": false,
|
849
|
+
"https": true,
|
850
|
+
"hostname": "iam.amazonaws.com",
|
851
|
+
"authregion": "us-east-1"
|
852
|
+
},
|
853
|
+
"importexport": {
|
854
|
+
"http": false,
|
855
|
+
"https": true,
|
856
|
+
"hostname": "importexport.amazonaws.com"
|
857
|
+
},
|
858
|
+
"sts": {
|
859
|
+
"http": false,
|
860
|
+
"https": true,
|
861
|
+
"hostname": "sts.amazonaws.com",
|
862
|
+
"authregion": "us-east-1"
|
863
|
+
},
|
864
|
+
"storagegateway": {
|
865
|
+
"http": false,
|
866
|
+
"https": true,
|
867
|
+
"hostname": "storagegateway.ap-southeast-2.amazonaws.com"
|
868
|
+
},
|
869
|
+
"elasticloadbalancing": {
|
870
|
+
"http": true,
|
871
|
+
"https": true,
|
872
|
+
"hostname": "elasticloadbalancing.ap-southeast-2.amazonaws.com"
|
873
|
+
},
|
874
|
+
"swf": {
|
875
|
+
"http": false,
|
876
|
+
"https": true,
|
877
|
+
"hostname": "swf.ap-southeast-2.amazonaws.com"
|
878
|
+
},
|
879
|
+
"glacier": {
|
880
|
+
"http": true,
|
881
|
+
"https": true,
|
882
|
+
"hostname": "glacier.ap-southeast-2.amazonaws.com"
|
883
|
+
},
|
884
|
+
"directconnect": {
|
885
|
+
"http": false,
|
886
|
+
"https": true,
|
887
|
+
"hostname": "directconnect.ap-southeast-2.amazonaws.com"
|
888
|
+
},
|
889
|
+
"datapipeline": {
|
890
|
+
"http": false,
|
891
|
+
"https": true,
|
892
|
+
"hostname": "datapipeline.ap-southeast-2.amazonaws.com"
|
893
|
+
},
|
894
|
+
"redshift": {
|
895
|
+
"http": false,
|
896
|
+
"https": true,
|
897
|
+
"hostname": "redshift.ap-southeast-2.amazonaws.com"
|
898
|
+
},
|
899
|
+
"kinesis": {
|
900
|
+
"http": false,
|
901
|
+
"https": true,
|
902
|
+
"hostname": "kinesis.ap-southeast-2.amazonaws.com"
|
903
|
+
}
|
904
|
+
},
|
905
|
+
"sa-east-1": {
|
906
|
+
"cloudformation": {
|
907
|
+
"http": false,
|
908
|
+
"https": true,
|
909
|
+
"hostname": "cloudformation.sa-east-1.amazonaws.com"
|
910
|
+
},
|
911
|
+
"cloudfront": {
|
912
|
+
"http": true,
|
913
|
+
"https": true,
|
914
|
+
"hostname": "cloudfront.amazonaws.com",
|
915
|
+
"authregion": "us-east-1"
|
916
|
+
},
|
917
|
+
"cloudsearch": {
|
918
|
+
"http": false,
|
919
|
+
"https": true,
|
920
|
+
"hostname": "cloudsearch.sa-east-1.amazonaws.com"
|
921
|
+
},
|
922
|
+
"cloudtrail": {
|
923
|
+
"http": false,
|
924
|
+
"https": true,
|
925
|
+
"hostname": "cloudtrail.sa-east-1.amazonaws.com"
|
926
|
+
},
|
927
|
+
"monitoring": {
|
928
|
+
"http": true,
|
929
|
+
"https": true,
|
930
|
+
"hostname": "monitoring.sa-east-1.amazonaws.com"
|
931
|
+
},
|
932
|
+
"dynamodb": {
|
933
|
+
"http": true,
|
934
|
+
"https": true,
|
935
|
+
"hostname": "dynamodb.sa-east-1.amazonaws.com"
|
936
|
+
},
|
937
|
+
"ec2": {
|
938
|
+
"http": true,
|
939
|
+
"https": true,
|
940
|
+
"hostname": "ec2.sa-east-1.amazonaws.com"
|
941
|
+
},
|
942
|
+
"elasticmapreduce": {
|
943
|
+
"http": true,
|
944
|
+
"https": true,
|
945
|
+
"hostname": "elasticmapreduce.sa-east-1.amazonaws.com"
|
946
|
+
},
|
947
|
+
"elasticache": {
|
948
|
+
"http": false,
|
949
|
+
"https": true,
|
950
|
+
"hostname": "elasticache.sa-east-1.amazonaws.com"
|
951
|
+
},
|
952
|
+
"rds": {
|
953
|
+
"http": false,
|
954
|
+
"https": true,
|
955
|
+
"hostname": "rds.sa-east-1.amazonaws.com"
|
956
|
+
},
|
957
|
+
"route53": {
|
958
|
+
"http": false,
|
959
|
+
"https": true,
|
960
|
+
"hostname": "route53.amazonaws.com"
|
961
|
+
},
|
962
|
+
"sdb": {
|
963
|
+
"http": true,
|
964
|
+
"https": true,
|
965
|
+
"hostname": "sdb.sa-east-1.amazonaws.com"
|
966
|
+
},
|
967
|
+
"sns": {
|
968
|
+
"http": true,
|
969
|
+
"https": true,
|
970
|
+
"hostname": "sns.sa-east-1.amazonaws.com"
|
971
|
+
},
|
972
|
+
"sqs": {
|
973
|
+
"http": true,
|
974
|
+
"https": true,
|
975
|
+
"hostname": "sqs.sa-east-1.amazonaws.com"
|
976
|
+
},
|
977
|
+
"s3": {
|
978
|
+
"http": true,
|
979
|
+
"https": true,
|
980
|
+
"hostname": "s3-sa-east-1.amazonaws.com"
|
981
|
+
},
|
982
|
+
"autoscaling": {
|
983
|
+
"http": true,
|
984
|
+
"https": true,
|
985
|
+
"hostname": "autoscaling.sa-east-1.amazonaws.com"
|
986
|
+
},
|
987
|
+
"elasticbeanstalk": {
|
988
|
+
"http": false,
|
989
|
+
"https": true,
|
990
|
+
"hostname": "elasticbeanstalk.sa-east-1.amazonaws.com"
|
991
|
+
},
|
992
|
+
"iam": {
|
993
|
+
"http": false,
|
994
|
+
"https": true,
|
995
|
+
"hostname": "iam.amazonaws.com",
|
996
|
+
"authregion": "us-east-1"
|
997
|
+
},
|
998
|
+
"importexport": {
|
999
|
+
"http": false,
|
1000
|
+
"https": true,
|
1001
|
+
"hostname": "importexport.amazonaws.com"
|
1002
|
+
},
|
1003
|
+
"sts": {
|
1004
|
+
"http": false,
|
1005
|
+
"https": true,
|
1006
|
+
"hostname": "sts.amazonaws.com",
|
1007
|
+
"authregion": "us-east-1"
|
1008
|
+
},
|
1009
|
+
"storagegateway": {
|
1010
|
+
"http": false,
|
1011
|
+
"https": true,
|
1012
|
+
"hostname": "storagegateway.sa-east-1.amazonaws.com"
|
1013
|
+
},
|
1014
|
+
"elasticloadbalancing": {
|
1015
|
+
"http": true,
|
1016
|
+
"https": true,
|
1017
|
+
"hostname": "elasticloadbalancing.sa-east-1.amazonaws.com"
|
1018
|
+
},
|
1019
|
+
"swf": {
|
1020
|
+
"http": false,
|
1021
|
+
"https": true,
|
1022
|
+
"hostname": "swf.sa-east-1.amazonaws.com"
|
1023
|
+
},
|
1024
|
+
"directconnect": {
|
1025
|
+
"http": false,
|
1026
|
+
"https": true,
|
1027
|
+
"hostname": "directconnect.sa-east-1.amazonaws.com"
|
1028
|
+
}
|
1029
|
+
},
|
1030
|
+
"eu-west-1": {
|
1031
|
+
"cloudformation": {
|
1032
|
+
"http": false,
|
1033
|
+
"https": true,
|
1034
|
+
"hostname": "cloudformation.eu-west-1.amazonaws.com"
|
1035
|
+
},
|
1036
|
+
"cloudfront": {
|
1037
|
+
"http": true,
|
1038
|
+
"https": true,
|
1039
|
+
"hostname": "cloudfront.amazonaws.com",
|
1040
|
+
"authregion": "us-east-1"
|
1041
|
+
},
|
1042
|
+
"cloudsearch": {
|
1043
|
+
"http": false,
|
1044
|
+
"https": true,
|
1045
|
+
"hostname": "cloudsearch.eu-west-1.amazonaws.com"
|
1046
|
+
},
|
1047
|
+
"cloudtrail": {
|
1048
|
+
"http": false,
|
1049
|
+
"https": true,
|
1050
|
+
"hostname": "cloudtrail.eu-west-1.amazonaws.com"
|
1051
|
+
},
|
1052
|
+
"monitoring": {
|
1053
|
+
"http": true,
|
1054
|
+
"https": true,
|
1055
|
+
"hostname": "monitoring.eu-west-1.amazonaws.com"
|
1056
|
+
},
|
1057
|
+
"dynamodb": {
|
1058
|
+
"http": true,
|
1059
|
+
"https": true,
|
1060
|
+
"hostname": "dynamodb.eu-west-1.amazonaws.com"
|
1061
|
+
},
|
1062
|
+
"ec2": {
|
1063
|
+
"http": true,
|
1064
|
+
"https": true,
|
1065
|
+
"hostname": "ec2.eu-west-1.amazonaws.com"
|
1066
|
+
},
|
1067
|
+
"elasticmapreduce": {
|
1068
|
+
"http": true,
|
1069
|
+
"https": true,
|
1070
|
+
"hostname": "elasticmapreduce.eu-west-1.amazonaws.com"
|
1071
|
+
},
|
1072
|
+
"elasticache": {
|
1073
|
+
"http": false,
|
1074
|
+
"https": true,
|
1075
|
+
"hostname": "elasticache.eu-west-1.amazonaws.com"
|
1076
|
+
},
|
1077
|
+
"rds": {
|
1078
|
+
"http": false,
|
1079
|
+
"https": true,
|
1080
|
+
"hostname": "rds.eu-west-1.amazonaws.com"
|
1081
|
+
},
|
1082
|
+
"route53": {
|
1083
|
+
"http": false,
|
1084
|
+
"https": true,
|
1085
|
+
"hostname": "route53.amazonaws.com"
|
1086
|
+
},
|
1087
|
+
"email": {
|
1088
|
+
"http": false,
|
1089
|
+
"https": true,
|
1090
|
+
"hostname": "email.eu-west-1.amazonaws.com"
|
1091
|
+
},
|
1092
|
+
"sdb": {
|
1093
|
+
"http": true,
|
1094
|
+
"https": true,
|
1095
|
+
"hostname": "sdb.eu-west-1.amazonaws.com"
|
1096
|
+
},
|
1097
|
+
"sns": {
|
1098
|
+
"http": true,
|
1099
|
+
"https": true,
|
1100
|
+
"hostname": "sns.eu-west-1.amazonaws.com"
|
1101
|
+
},
|
1102
|
+
"sqs": {
|
1103
|
+
"http": true,
|
1104
|
+
"https": true,
|
1105
|
+
"hostname": "sqs.eu-west-1.amazonaws.com"
|
1106
|
+
},
|
1107
|
+
"s3": {
|
1108
|
+
"http": true,
|
1109
|
+
"https": true,
|
1110
|
+
"hostname": "s3-eu-west-1.amazonaws.com"
|
1111
|
+
},
|
1112
|
+
"autoscaling": {
|
1113
|
+
"http": true,
|
1114
|
+
"https": true,
|
1115
|
+
"hostname": "autoscaling.eu-west-1.amazonaws.com"
|
1116
|
+
},
|
1117
|
+
"elasticbeanstalk": {
|
1118
|
+
"http": false,
|
1119
|
+
"https": true,
|
1120
|
+
"hostname": "elasticbeanstalk.eu-west-1.amazonaws.com"
|
1121
|
+
},
|
1122
|
+
"iam": {
|
1123
|
+
"http": false,
|
1124
|
+
"https": true,
|
1125
|
+
"hostname": "iam.amazonaws.com",
|
1126
|
+
"authregion": "us-east-1"
|
1127
|
+
},
|
1128
|
+
"importexport": {
|
1129
|
+
"http": false,
|
1130
|
+
"https": true,
|
1131
|
+
"hostname": "importexport.amazonaws.com"
|
1132
|
+
},
|
1133
|
+
"sts": {
|
1134
|
+
"http": false,
|
1135
|
+
"https": true,
|
1136
|
+
"hostname": "sts.amazonaws.com",
|
1137
|
+
"authregion": "us-east-1"
|
1138
|
+
},
|
1139
|
+
"storagegateway": {
|
1140
|
+
"http": false,
|
1141
|
+
"https": true,
|
1142
|
+
"hostname": "storagegateway.eu-west-1.amazonaws.com"
|
1143
|
+
},
|
1144
|
+
"elasticloadbalancing": {
|
1145
|
+
"http": true,
|
1146
|
+
"https": true,
|
1147
|
+
"hostname": "elasticloadbalancing.eu-west-1.amazonaws.com"
|
1148
|
+
},
|
1149
|
+
"swf": {
|
1150
|
+
"http": false,
|
1151
|
+
"https": true,
|
1152
|
+
"hostname": "swf.eu-west-1.amazonaws.com"
|
1153
|
+
},
|
1154
|
+
"glacier": {
|
1155
|
+
"http": true,
|
1156
|
+
"https": true,
|
1157
|
+
"hostname": "glacier.eu-west-1.amazonaws.com"
|
1158
|
+
},
|
1159
|
+
"directconnect": {
|
1160
|
+
"http": false,
|
1161
|
+
"https": true,
|
1162
|
+
"hostname": "directconnect.eu-west-1.amazonaws.com"
|
1163
|
+
},
|
1164
|
+
"datapipeline": {
|
1165
|
+
"http": false,
|
1166
|
+
"https": true,
|
1167
|
+
"hostname": "datapipeline.eu-west-1.amazonaws.com"
|
1168
|
+
},
|
1169
|
+
"redshift": {
|
1170
|
+
"http": false,
|
1171
|
+
"https": true,
|
1172
|
+
"hostname": "redshift.eu-west-1.amazonaws.com"
|
1173
|
+
},
|
1174
|
+
"kinesis": {
|
1175
|
+
"http": false,
|
1176
|
+
"https": true,
|
1177
|
+
"hostname": "kinesis.eu-west-1.amazonaws.com"
|
1178
|
+
},
|
1179
|
+
"elastictranscoder": {
|
1180
|
+
"http": false,
|
1181
|
+
"https": true,
|
1182
|
+
"hostname": "elastictranscoder.eu-west-1.amazonaws.com"
|
1183
|
+
}
|
1184
|
+
},
|
1185
|
+
"cn-north-1": {
|
1186
|
+
"cloudformation": {
|
1187
|
+
"http": false,
|
1188
|
+
"https": true,
|
1189
|
+
"hostname": "cloudformation.cn-north-1.amazonaws.com.cn"
|
1190
|
+
},
|
1191
|
+
"monitoring": {
|
1192
|
+
"http": true,
|
1193
|
+
"https": true,
|
1194
|
+
"hostname": "monitoring.cn-north-1.amazonaws.com.cn"
|
1195
|
+
},
|
1196
|
+
"dynamodb": {
|
1197
|
+
"http": true,
|
1198
|
+
"https": true,
|
1199
|
+
"hostname": "dynamodb.cn-north-1.amazonaws.com.cn"
|
1200
|
+
},
|
1201
|
+
"ec2": {
|
1202
|
+
"http": true,
|
1203
|
+
"https": true,
|
1204
|
+
"hostname": "ec2.cn-north-1.amazonaws.com.cn"
|
1205
|
+
},
|
1206
|
+
"elasticmapreduce": {
|
1207
|
+
"http": true,
|
1208
|
+
"https": true,
|
1209
|
+
"hostname": "elasticmapreduce.cn-north-1.amazonaws.com.cn"
|
1210
|
+
},
|
1211
|
+
"elasticache": {
|
1212
|
+
"http": false,
|
1213
|
+
"https": true,
|
1214
|
+
"hostname": "elasticache.cn-north-1.amazonaws.com.cn"
|
1215
|
+
},
|
1216
|
+
"rds": {
|
1217
|
+
"http": false,
|
1218
|
+
"https": true,
|
1219
|
+
"hostname": "rds.cn-north-1.amazonaws.com.cn"
|
1220
|
+
},
|
1221
|
+
"sns": {
|
1222
|
+
"http": true,
|
1223
|
+
"https": true,
|
1224
|
+
"hostname": "sns.cn-north-1.amazonaws.com.cn"
|
1225
|
+
},
|
1226
|
+
"sqs": {
|
1227
|
+
"http": true,
|
1228
|
+
"https": true,
|
1229
|
+
"hostname": "sqs.cn-north-1.amazonaws.com.cn"
|
1230
|
+
},
|
1231
|
+
"s3": {
|
1232
|
+
"http": true,
|
1233
|
+
"https": true,
|
1234
|
+
"hostname": "s3.cn-north-1.amazonaws.com.cn"
|
1235
|
+
},
|
1236
|
+
"autoscaling": {
|
1237
|
+
"http": true,
|
1238
|
+
"https": true,
|
1239
|
+
"hostname": "autoscaling.cn-north-1.amazonaws.com.cn"
|
1240
|
+
},
|
1241
|
+
"iam": {
|
1242
|
+
"http": false,
|
1243
|
+
"https": true,
|
1244
|
+
"hostname": "iam.cn-north-1.amazonaws.com.cn"
|
1245
|
+
},
|
1246
|
+
"sts": {
|
1247
|
+
"http": false,
|
1248
|
+
"https": true,
|
1249
|
+
"hostname": "sts.cn-north-1.amazonaws.com.cn"
|
1250
|
+
},
|
1251
|
+
"storagegateway": {
|
1252
|
+
"http": false,
|
1253
|
+
"https": true,
|
1254
|
+
"hostname": "storagegateway.cn-north-1.amazonaws.com.cn"
|
1255
|
+
},
|
1256
|
+
"elasticloadbalancing": {
|
1257
|
+
"http": true,
|
1258
|
+
"https": true,
|
1259
|
+
"hostname": "elasticloadbalancing.cn-north-1.amazonaws.com.cn"
|
1260
|
+
},
|
1261
|
+
"swf": {
|
1262
|
+
"http": false,
|
1263
|
+
"https": true,
|
1264
|
+
"hostname": "swf.cn-north-1.amazonaws.com.cn"
|
1265
|
+
},
|
1266
|
+
"glacier": {
|
1267
|
+
"http": true,
|
1268
|
+
"https": true,
|
1269
|
+
"hostname": "glacier.cn-north-1.amazonaws.com.cn"
|
1270
|
+
}
|
1271
|
+
},
|
1272
|
+
"us-gov-west-1": {
|
1273
|
+
"monitoring": {
|
1274
|
+
"http": false,
|
1275
|
+
"https": true,
|
1276
|
+
"hostname": "monitoring.us-gov-west-1.amazonaws.com"
|
1277
|
+
},
|
1278
|
+
"dynamodb": {
|
1279
|
+
"http": false,
|
1280
|
+
"https": true,
|
1281
|
+
"hostname": "dynamodb.us-gov-west-1.amazonaws.com"
|
1282
|
+
},
|
1283
|
+
"ec2": {
|
1284
|
+
"http": false,
|
1285
|
+
"https": true,
|
1286
|
+
"hostname": "ec2.us-gov-west-1.amazonaws.com"
|
1287
|
+
},
|
1288
|
+
"elasticmapreduce": {
|
1289
|
+
"http": true,
|
1290
|
+
"https": true,
|
1291
|
+
"hostname": "elasticmapreduce.us-gov-west-1.amazonaws.com"
|
1292
|
+
},
|
1293
|
+
"rds": {
|
1294
|
+
"http": false,
|
1295
|
+
"https": true,
|
1296
|
+
"hostname": "rds.us-gov-west-1.amazonaws.com"
|
1297
|
+
},
|
1298
|
+
"sns": {
|
1299
|
+
"http": true,
|
1300
|
+
"https": true,
|
1301
|
+
"hostname": "sns.us-gov-west-1.amazonaws.com"
|
1302
|
+
},
|
1303
|
+
"sqs": {
|
1304
|
+
"http": true,
|
1305
|
+
"https": true,
|
1306
|
+
"hostname": "sqs.us-gov-west-1.amazonaws.com"
|
1307
|
+
},
|
1308
|
+
"s3": {
|
1309
|
+
"http": true,
|
1310
|
+
"https": true,
|
1311
|
+
"hostname": "s3-us-gov-west-1.amazonaws.com"
|
1312
|
+
},
|
1313
|
+
"autoscaling": {
|
1314
|
+
"http": true,
|
1315
|
+
"https": true,
|
1316
|
+
"hostname": "autoscaling.us-gov-west-1.amazonaws.com"
|
1317
|
+
},
|
1318
|
+
"iam": {
|
1319
|
+
"http": false,
|
1320
|
+
"https": true,
|
1321
|
+
"hostname": "iam.us-gov.amazonaws.com"
|
1322
|
+
},
|
1323
|
+
"sts": {
|
1324
|
+
"http": false,
|
1325
|
+
"https": true,
|
1326
|
+
"hostname": "sts.us-gov-west-1.amazonaws.com"
|
1327
|
+
},
|
1328
|
+
"elasticloadbalancing": {
|
1329
|
+
"http": true,
|
1330
|
+
"https": true,
|
1331
|
+
"hostname": "elasticloadbalancing.us-gov-west-1.amazonaws.com"
|
1332
|
+
},
|
1333
|
+
"swf": {
|
1334
|
+
"http": false,
|
1335
|
+
"https": true,
|
1336
|
+
"hostname": "swf.us-gov-west-1.amazonaws.com"
|
1337
|
+
}
|
1338
|
+
}
|
1339
|
+
},
|
1340
|
+
"services": {
|
1341
|
+
"cognito-sync": [
|
1342
|
+
"us-east-1"
|
1343
|
+
],
|
1344
|
+
"cognito-identity": [
|
1345
|
+
"us-east-1"
|
1346
|
+
],
|
1347
|
+
"cloudformation": [
|
1348
|
+
"us-east-1",
|
1349
|
+
"us-west-1",
|
1350
|
+
"us-west-2",
|
1351
|
+
"ap-northeast-1",
|
1352
|
+
"ap-southeast-1",
|
1353
|
+
"ap-southeast-2",
|
1354
|
+
"sa-east-1",
|
1355
|
+
"eu-west-1",
|
1356
|
+
"cn-north-1"
|
1357
|
+
],
|
1358
|
+
"cloudfront": [
|
1359
|
+
"us-east-1",
|
1360
|
+
"us-west-1",
|
1361
|
+
"us-west-2",
|
1362
|
+
"ap-northeast-1",
|
1363
|
+
"ap-southeast-1",
|
1364
|
+
"ap-southeast-2",
|
1365
|
+
"sa-east-1",
|
1366
|
+
"eu-west-1"
|
1367
|
+
],
|
1368
|
+
"cloudsearch": [
|
1369
|
+
"us-east-1",
|
1370
|
+
"us-west-1",
|
1371
|
+
"us-west-2",
|
1372
|
+
"eu-west-1",
|
1373
|
+
"ap-southeast-1",
|
1374
|
+
"ap-northeast-1",
|
1375
|
+
"ap-southeast-2",
|
1376
|
+
"sa-east-1"
|
1377
|
+
],
|
1378
|
+
"cloudtrail": [
|
1379
|
+
"us-east-1",
|
1380
|
+
"us-west-1",
|
1381
|
+
"us-west-2",
|
1382
|
+
"eu-west-1",
|
1383
|
+
"ap-southeast-1",
|
1384
|
+
"ap-southeast-2",
|
1385
|
+
"ap-northeast-1",
|
1386
|
+
"sa-east-1"
|
1387
|
+
],
|
1388
|
+
"monitoring": [
|
1389
|
+
"us-east-1",
|
1390
|
+
"us-west-1",
|
1391
|
+
"us-west-2",
|
1392
|
+
"ap-northeast-1",
|
1393
|
+
"ap-southeast-1",
|
1394
|
+
"ap-southeast-2",
|
1395
|
+
"sa-east-1",
|
1396
|
+
"eu-west-1",
|
1397
|
+
"cn-north-1",
|
1398
|
+
"us-gov-west-1"
|
1399
|
+
],
|
1400
|
+
"logs": [
|
1401
|
+
"us-east-1"
|
1402
|
+
],
|
1403
|
+
"dynamodb": [
|
1404
|
+
"us-east-1",
|
1405
|
+
"us-west-1",
|
1406
|
+
"us-west-2",
|
1407
|
+
"ap-northeast-1",
|
1408
|
+
"ap-southeast-1",
|
1409
|
+
"ap-southeast-2",
|
1410
|
+
"sa-east-1",
|
1411
|
+
"eu-west-1",
|
1412
|
+
"cn-north-1",
|
1413
|
+
"us-gov-west-1"
|
1414
|
+
],
|
1415
|
+
"ec2": [
|
1416
|
+
"us-east-1",
|
1417
|
+
"us-west-1",
|
1418
|
+
"us-west-2",
|
1419
|
+
"ap-northeast-1",
|
1420
|
+
"ap-southeast-1",
|
1421
|
+
"ap-southeast-2",
|
1422
|
+
"sa-east-1",
|
1423
|
+
"eu-west-1",
|
1424
|
+
"cn-north-1",
|
1425
|
+
"us-gov-west-1"
|
1426
|
+
],
|
1427
|
+
"elasticmapreduce": [
|
1428
|
+
"us-east-1",
|
1429
|
+
"us-west-1",
|
1430
|
+
"us-west-2",
|
1431
|
+
"ap-northeast-1",
|
1432
|
+
"ap-southeast-1",
|
1433
|
+
"ap-southeast-2",
|
1434
|
+
"sa-east-1",
|
1435
|
+
"eu-west-1",
|
1436
|
+
"cn-north-1",
|
1437
|
+
"us-gov-west-1"
|
1438
|
+
],
|
1439
|
+
"elasticache": [
|
1440
|
+
"us-east-1",
|
1441
|
+
"us-west-1",
|
1442
|
+
"us-west-2",
|
1443
|
+
"ap-northeast-1",
|
1444
|
+
"ap-southeast-1",
|
1445
|
+
"ap-southeast-2",
|
1446
|
+
"sa-east-1",
|
1447
|
+
"eu-west-1",
|
1448
|
+
"cn-north-1"
|
1449
|
+
],
|
1450
|
+
"rds": [
|
1451
|
+
"us-east-1",
|
1452
|
+
"us-west-1",
|
1453
|
+
"us-west-2",
|
1454
|
+
"ap-northeast-1",
|
1455
|
+
"ap-southeast-1",
|
1456
|
+
"ap-southeast-2",
|
1457
|
+
"sa-east-1",
|
1458
|
+
"eu-west-1",
|
1459
|
+
"cn-north-1",
|
1460
|
+
"us-gov-west-1"
|
1461
|
+
],
|
1462
|
+
"route53": [
|
1463
|
+
"us-east-1",
|
1464
|
+
"us-west-1",
|
1465
|
+
"us-west-2",
|
1466
|
+
"ap-northeast-1",
|
1467
|
+
"ap-southeast-1",
|
1468
|
+
"ap-southeast-2",
|
1469
|
+
"sa-east-1",
|
1470
|
+
"eu-west-1"
|
1471
|
+
],
|
1472
|
+
"email": [
|
1473
|
+
"us-east-1",
|
1474
|
+
"eu-west-1",
|
1475
|
+
"us-west-2"
|
1476
|
+
],
|
1477
|
+
"sdb": [
|
1478
|
+
"us-east-1",
|
1479
|
+
"us-west-1",
|
1480
|
+
"us-west-2",
|
1481
|
+
"eu-west-1",
|
1482
|
+
"ap-northeast-1",
|
1483
|
+
"ap-southeast-1",
|
1484
|
+
"ap-southeast-2",
|
1485
|
+
"sa-east-1"
|
1486
|
+
],
|
1487
|
+
"sns": [
|
1488
|
+
"us-east-1",
|
1489
|
+
"us-west-1",
|
1490
|
+
"us-west-2",
|
1491
|
+
"ap-northeast-1",
|
1492
|
+
"ap-southeast-1",
|
1493
|
+
"ap-southeast-2",
|
1494
|
+
"sa-east-1",
|
1495
|
+
"eu-west-1",
|
1496
|
+
"cn-north-1",
|
1497
|
+
"us-gov-west-1"
|
1498
|
+
],
|
1499
|
+
"sqs": [
|
1500
|
+
"us-east-1",
|
1501
|
+
"us-west-1",
|
1502
|
+
"us-west-2",
|
1503
|
+
"ap-northeast-1",
|
1504
|
+
"ap-southeast-1",
|
1505
|
+
"ap-southeast-2",
|
1506
|
+
"sa-east-1",
|
1507
|
+
"eu-west-1",
|
1508
|
+
"cn-north-1",
|
1509
|
+
"us-gov-west-1"
|
1510
|
+
],
|
1511
|
+
"s3": [
|
1512
|
+
"us-east-1",
|
1513
|
+
"us-west-1",
|
1514
|
+
"us-west-2",
|
1515
|
+
"ap-northeast-1",
|
1516
|
+
"ap-southeast-1",
|
1517
|
+
"ap-southeast-2",
|
1518
|
+
"sa-east-1",
|
1519
|
+
"eu-west-1",
|
1520
|
+
"cn-north-1",
|
1521
|
+
"us-gov-west-1"
|
1522
|
+
],
|
1523
|
+
"autoscaling": [
|
1524
|
+
"us-east-1",
|
1525
|
+
"us-west-1",
|
1526
|
+
"us-west-2",
|
1527
|
+
"ap-northeast-1",
|
1528
|
+
"ap-southeast-1",
|
1529
|
+
"ap-southeast-2",
|
1530
|
+
"sa-east-1",
|
1531
|
+
"eu-west-1",
|
1532
|
+
"cn-north-1",
|
1533
|
+
"us-gov-west-1"
|
1534
|
+
],
|
1535
|
+
"elasticbeanstalk": [
|
1536
|
+
"us-east-1",
|
1537
|
+
"us-west-1",
|
1538
|
+
"us-west-2",
|
1539
|
+
"eu-west-1",
|
1540
|
+
"ap-northeast-1",
|
1541
|
+
"ap-southeast-1",
|
1542
|
+
"ap-southeast-2",
|
1543
|
+
"sa-east-1"
|
1544
|
+
],
|
1545
|
+
"iam": [
|
1546
|
+
"us-east-1",
|
1547
|
+
"us-west-1",
|
1548
|
+
"us-west-2",
|
1549
|
+
"ap-northeast-1",
|
1550
|
+
"ap-southeast-1",
|
1551
|
+
"ap-southeast-2",
|
1552
|
+
"sa-east-1",
|
1553
|
+
"eu-west-1",
|
1554
|
+
"cn-north-1",
|
1555
|
+
"us-gov-west-1"
|
1556
|
+
],
|
1557
|
+
"importexport": [
|
1558
|
+
"us-east-1",
|
1559
|
+
"us-west-1",
|
1560
|
+
"us-west-2",
|
1561
|
+
"ap-northeast-1",
|
1562
|
+
"ap-southeast-1",
|
1563
|
+
"ap-southeast-2",
|
1564
|
+
"sa-east-1",
|
1565
|
+
"eu-west-1"
|
1566
|
+
],
|
1567
|
+
"sts": [
|
1568
|
+
"us-east-1",
|
1569
|
+
"us-west-1",
|
1570
|
+
"us-west-2",
|
1571
|
+
"ap-northeast-1",
|
1572
|
+
"ap-southeast-1",
|
1573
|
+
"ap-southeast-2",
|
1574
|
+
"sa-east-1",
|
1575
|
+
"eu-west-1",
|
1576
|
+
"cn-north-1",
|
1577
|
+
"us-gov-west-1"
|
1578
|
+
],
|
1579
|
+
"storagegateway": [
|
1580
|
+
"us-east-1",
|
1581
|
+
"us-west-1",
|
1582
|
+
"us-west-2",
|
1583
|
+
"ap-northeast-1",
|
1584
|
+
"ap-southeast-1",
|
1585
|
+
"ap-southeast-2",
|
1586
|
+
"sa-east-1",
|
1587
|
+
"eu-west-1",
|
1588
|
+
"cn-north-1"
|
1589
|
+
],
|
1590
|
+
"support": [
|
1591
|
+
"us-east-1"
|
1592
|
+
],
|
1593
|
+
"elasticloadbalancing": [
|
1594
|
+
"us-east-1",
|
1595
|
+
"us-west-1",
|
1596
|
+
"us-west-2",
|
1597
|
+
"ap-northeast-1",
|
1598
|
+
"ap-southeast-1",
|
1599
|
+
"ap-southeast-2",
|
1600
|
+
"sa-east-1",
|
1601
|
+
"eu-west-1",
|
1602
|
+
"cn-north-1",
|
1603
|
+
"us-gov-west-1"
|
1604
|
+
],
|
1605
|
+
"swf": [
|
1606
|
+
"us-east-1",
|
1607
|
+
"us-west-1",
|
1608
|
+
"us-west-2",
|
1609
|
+
"ap-northeast-1",
|
1610
|
+
"ap-southeast-1",
|
1611
|
+
"ap-southeast-2",
|
1612
|
+
"sa-east-1",
|
1613
|
+
"eu-west-1",
|
1614
|
+
"cn-north-1",
|
1615
|
+
"us-gov-west-1"
|
1616
|
+
],
|
1617
|
+
"glacier": [
|
1618
|
+
"us-east-1",
|
1619
|
+
"us-west-1",
|
1620
|
+
"us-west-2",
|
1621
|
+
"eu-west-1",
|
1622
|
+
"ap-southeast-2",
|
1623
|
+
"ap-northeast-1",
|
1624
|
+
"cn-north-1"
|
1625
|
+
],
|
1626
|
+
"directconnect": [
|
1627
|
+
"us-east-1",
|
1628
|
+
"us-west-1",
|
1629
|
+
"us-west-2",
|
1630
|
+
"ap-northeast-1",
|
1631
|
+
"ap-southeast-1",
|
1632
|
+
"ap-southeast-2",
|
1633
|
+
"sa-east-1",
|
1634
|
+
"eu-west-1"
|
1635
|
+
],
|
1636
|
+
"datapipeline": [
|
1637
|
+
"us-east-1",
|
1638
|
+
"us-west-2",
|
1639
|
+
"eu-west-1",
|
1640
|
+
"ap-northeast-1",
|
1641
|
+
"ap-southeast-2"
|
1642
|
+
],
|
1643
|
+
"redshift": [
|
1644
|
+
"us-east-1",
|
1645
|
+
"us-west-2",
|
1646
|
+
"eu-west-1",
|
1647
|
+
"ap-southeast-1",
|
1648
|
+
"ap-southeast-2",
|
1649
|
+
"ap-northeast-1"
|
1650
|
+
],
|
1651
|
+
"kinesis": [
|
1652
|
+
"us-east-1",
|
1653
|
+
"us-west-2",
|
1654
|
+
"eu-west-1",
|
1655
|
+
"ap-southeast-1",
|
1656
|
+
"ap-southeast-2",
|
1657
|
+
"ap-northeast-1"
|
1658
|
+
],
|
1659
|
+
"opsworks": [
|
1660
|
+
"us-east-1"
|
1661
|
+
],
|
1662
|
+
"elastictranscoder": [
|
1663
|
+
"us-east-1",
|
1664
|
+
"us-west-1",
|
1665
|
+
"us-west-2",
|
1666
|
+
"eu-west-1",
|
1667
|
+
"ap-northeast-1",
|
1668
|
+
"ap-southeast-1"
|
1669
|
+
]
|
1670
|
+
}
|
1671
|
+
}
|