aws-sdk-core 2.0.0.rc2 → 2.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +13 -7
  3. data/.yardopts +1 -0
  4. data/Gemfile +5 -1
  5. data/README.md +26 -0
  6. data/apis/AutoScaling-2011-01-01.json +57 -0
  7. data/apis/CloudFormation-2010-05-15.json +29 -0
  8. data/apis/CloudFront-2012-05-05.json +33 -0
  9. data/apis/CloudFront-2013-05-12.json +33 -0
  10. data/apis/CloudFront-2013-08-26.json +33 -0
  11. data/apis/CloudSearch-2011-02-01.json +1 -0
  12. data/apis/CloudWatch-2010-08-01.json +22 -0
  13. data/apis/DataPipeline-2012-10-29.json +25 -0
  14. data/apis/DirectConnect-2012-10-25.json +1 -0
  15. data/apis/DynamoDB-2011-12-05.json +29 -0
  16. data/apis/DynamoDB-2012-08-10.json +29 -0
  17. data/apis/EC2-2013-06-15.json +29 -0
  18. data/apis/EC2-2013-10-01.json +29 -0
  19. data/apis/EMR-2009-03-31.json +958 -40
  20. data/apis/ElastiCache-2012-11-15.json +72 -0
  21. data/apis/ElastiCache-2013-06-15.json +72 -0
  22. data/apis/ElasticBeanstalk-2010-12-01.json +8 -0
  23. data/apis/ElasticLoadBalancing-2012-06-01.json +8 -0
  24. data/apis/ElasticTranscoder-2012-09-25.json +16 -3
  25. data/apis/Glacier-2012-06-01.json +35 -0
  26. data/apis/IAM-2010-05-08.json +129 -0
  27. data/apis/ImportExport-2010-06-01.json +9 -0
  28. data/apis/Kinesis-2013-12-02.json +409 -0
  29. data/apis/OpsWorks-2013-02-18.json +1 -0
  30. data/apis/RDS-2013-01-10.json +106 -0
  31. data/apis/RDS-2013-02-12.json +120 -0
  32. data/apis/RDS-2013-05-15.json +120 -0
  33. data/apis/Redshift-2012-12-01.json +90 -1
  34. data/apis/Route53-2012-12-12.json +27 -0
  35. data/apis/S3-2006-03-01.json +34 -0
  36. data/apis/SDB-2009-04-15.json +16 -0
  37. data/apis/SES-2010-12-01.json +8 -0
  38. data/apis/SNS-2010-03-31.json +22 -0
  39. data/apis/SQS-2012-11-05.json +1 -0
  40. data/apis/STS-2011-06-15.json +3 -1
  41. data/apis/SWF-2012-01-25.json +52 -1
  42. data/apis/StorageGateway-2012-06-30.json +15 -0
  43. data/apis/StorageGateway-2013-06-30.json +15 -0
  44. data/apis/Support-2013-04-15.json +15 -0
  45. data/apis/configuration/endpoints.json +88 -23
  46. data/apis/source/elasticmapreduce-2009-03-31.json +1529 -126
  47. data/apis/source/elasticmapreduce-2009-03-31.paginators.json +25 -0
  48. data/apis/source/importexport-2010-06-01.paginators.json +1 -0
  49. data/apis/source/kinesis-2013-12-02.json +894 -0
  50. data/apis/source/kinesis-2013-12-02.paginators.json +18 -0
  51. data/apis/source/rds-2013-01-10.paginators.json +1 -0
  52. data/apis/source/rds-2013-02-12.paginators.json +1 -0
  53. data/apis/source/rds-2013-05-15.paginators.json +1 -0
  54. data/apis/source/redshift-2012-12-01.paginators.json +1 -0
  55. data/apis/source/s3-2006-03-01.paginators.json +1 -1
  56. data/aws-sdk-core.gemspec +1 -0
  57. data/doc-src/plugins/stability.rb +1 -0
  58. data/features/glacier/client.feature +5 -0
  59. data/features/glacier/step_definitions.rb +56 -5
  60. data/features/kinesis/client.feature +18 -0
  61. data/features/kinesis/setup.rb +6 -0
  62. data/features/s3/buckets.feature +10 -0
  63. data/features/s3/objects.feature +9 -0
  64. data/features/s3/step_definitions.rb +29 -0
  65. data/lib/aws.rb +13 -2
  66. data/lib/aws/api/pagination_translator.rb +71 -0
  67. data/lib/aws/api/service_translators/glacier.rb +0 -7
  68. data/lib/aws/api/translator.rb +10 -3
  69. data/lib/aws/error_handler.rb +1 -1
  70. data/lib/aws/json/builder.rb +4 -2
  71. data/lib/aws/pageable_response.rb +230 -0
  72. data/lib/aws/plugins/glacier_checksums.rb +10 -29
  73. data/lib/aws/plugins/response_paging.rb +18 -0
  74. data/lib/aws/plugins/retry_errors.rb +3 -1
  75. data/lib/aws/plugins/s3_complete_multipart_upload_fix.rb +1 -1
  76. data/lib/aws/plugins/s3_get_bucket_location_fix.rb +9 -3
  77. data/lib/aws/plugins/signature_v4.rb +2 -1
  78. data/lib/aws/plugins/sqs_queue_urls.rb +7 -4
  79. data/lib/aws/plugins/user_agent.rb +3 -3
  80. data/lib/aws/response_handler.rb +1 -1
  81. data/lib/aws/signers/s3.rb +1 -1
  82. data/lib/aws/tree_hash.rb +69 -0
  83. data/lib/aws/version.rb +1 -1
  84. data/spec/aws/json/builder_spec.rb +12 -0
  85. data/spec/aws/pageable_response_spec.rb +195 -0
  86. data/spec/aws/plugins/retry_errors_spec.rb +13 -0
  87. data/spec/aws/plugins/signature_v4_spec.rb +65 -0
  88. data/spec/aws/plugins/sqs_queue_urls_spec.rb +41 -0
  89. data/spec/aws_spec.rb +4 -0
  90. data/spec/fixtures/operations/glacier/get_job_output.yml +23 -0
  91. data/spec/fixtures/operations/s3/get_bucket_policy.yml +8 -0
  92. data/tasks/endpoints.rake +15 -0
  93. data/tasks/handlers.rake +1 -1
  94. data/vendor/seahorse/lib/seahorse/client.rb +1 -0
  95. data/vendor/seahorse/lib/seahorse/client/base.rb +6 -0
  96. data/vendor/seahorse/lib/seahorse/client/configuration.rb +1 -1
  97. data/vendor/seahorse/lib/seahorse/client/handler_builder.rb +3 -3
  98. data/vendor/seahorse/lib/seahorse/client/handler_list.rb +2 -2
  99. data/vendor/seahorse/lib/seahorse/client/http/error.rb +17 -0
  100. data/vendor/seahorse/lib/seahorse/client/http/plain_string_io.rb +10 -0
  101. data/vendor/seahorse/lib/seahorse/client/logging/handler.rb +1 -1
  102. data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +13 -2
  103. data/vendor/seahorse/lib/seahorse/client/plugins/json_simple.rb +1 -1
  104. data/vendor/seahorse/lib/seahorse/client/plugins/operation_methods.rb +4 -2
  105. data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +9 -1
  106. data/vendor/seahorse/lib/seahorse/client/request.rb +14 -0
  107. data/vendor/seahorse/lib/seahorse/client/response.rb +8 -38
  108. data/vendor/seahorse/lib/seahorse/model/shapes/shape.rb +11 -3
  109. data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +13 -0
  110. data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +6 -0
  111. data/vendor/seahorse/spec/seahorse/client/response_spec.rb +9 -63
  112. metadata +41 -3
@@ -27,6 +27,7 @@
27
27
  "Aws::Plugins::GlobalConfiguration",
28
28
  "Aws::Plugins::RegionalEndpoint",
29
29
  "Aws::Plugins::InstanceProfileCredentials",
30
+ "Aws::Plugins::ResponsePaging",
30
31
  "Aws::Plugins::Credentials",
31
32
  "Aws::Plugins::XmlProtocol",
32
33
  "Aws::Plugins::S3Signer",
@@ -1964,6 +1965,15 @@
1964
1965
  "name": "ListMultipartUploads",
1965
1966
  "http_method": "GET",
1966
1967
  "http_path": "/{bucket}?uploads&prefix={prefix}&delimiter={delimiter}&max-uploads={max_uploads}&key-marker={key_marker}&upload-id-marker={upload_id_marker}",
1968
+ "metadata": {
1969
+ "paging": {
1970
+ "tokens": {
1971
+ "key_marker": "next_key_marker",
1972
+ "upload_id_marker": "next_upload_id_marker"
1973
+ },
1974
+ "truncated_if": "is_truncated"
1975
+ }
1976
+ },
1967
1977
  "input": {
1968
1978
  "type": "input",
1969
1979
  "members": {
@@ -2107,6 +2117,15 @@
2107
2117
  "name": "ListObjectVersions",
2108
2118
  "http_method": "GET",
2109
2119
  "http_path": "/{bucket}?versions&delimiter={delimiter}&key-marker={key_marker}&max-keys={max_keys}&prefix={prefix}&version-id-marker={version_id_marker}",
2120
+ "metadata": {
2121
+ "paging": {
2122
+ "tokens": {
2123
+ "key_marker": "next_key_marker",
2124
+ "version_id_marker": "next_version_id_marker"
2125
+ },
2126
+ "truncated_if": "is_truncated"
2127
+ }
2128
+ },
2110
2129
  "input": {
2111
2130
  "type": "input",
2112
2131
  "members": {
@@ -2287,6 +2306,14 @@
2287
2306
  "name": "ListObjects",
2288
2307
  "http_method": "GET",
2289
2308
  "http_path": "/{bucket}?delimiter={delimiter}&marker={marker}&max-keys={max_keys}&prefix={prefix}",
2309
+ "metadata": {
2310
+ "paging": {
2311
+ "tokens": {
2312
+ "marker": "next_marker || contents[-1].key"
2313
+ },
2314
+ "truncated_if": "is_truncated"
2315
+ }
2316
+ },
2290
2317
  "input": {
2291
2318
  "type": "input",
2292
2319
  "members": {
@@ -2408,6 +2435,13 @@
2408
2435
  "name": "ListParts",
2409
2436
  "http_method": "GET",
2410
2437
  "http_path": "/{bucket}/{key}?uploadId={upload_id}&max-parts={max_parts}&part-number-marker={part_number_marker}",
2438
+ "metadata": {
2439
+ "paging": {
2440
+ "tokens": {
2441
+ "part_number_marker": "next_part_number_marker"
2442
+ }
2443
+ }
2444
+ },
2411
2445
  "input": {
2412
2446
  "type": "input",
2413
2447
  "members": {
@@ -9,6 +9,7 @@
9
9
  "eu-west-1": "sdb.eu-west-1.amazonaws.com",
10
10
  "ap-northeast-1": "sdb.ap-northeast-1.amazonaws.com",
11
11
  "ap-southeast-1": "sdb.ap-southeast-1.amazonaws.com",
12
+ "ap-southeast-2": "sdb.ap-southeast-2.amazonaws.com",
12
13
  "sa-east-1": "sdb.sa-east-1.amazonaws.com"
13
14
  },
14
15
  "service_class_name": "SDB",
@@ -23,6 +24,7 @@
23
24
  "Aws::Plugins::GlobalConfiguration",
24
25
  "Aws::Plugins::RegionalEndpoint",
25
26
  "Aws::Plugins::InstanceProfileCredentials",
27
+ "Aws::Plugins::ResponsePaging",
26
28
  "Aws::Plugins::Credentials",
27
29
  "Aws::Plugins::QueryProtocol",
28
30
  "Aws::Plugins::SignatureV2"
@@ -360,6 +362,13 @@
360
362
  "name": "ListDomains",
361
363
  "http_method": "POST",
362
364
  "http_path": "/",
365
+ "metadata": {
366
+ "paging": {
367
+ "tokens": {
368
+ "next_token": "next_token"
369
+ }
370
+ }
371
+ },
363
372
  "input": {
364
373
  "type": "input",
365
374
  "members": {
@@ -461,6 +470,13 @@
461
470
  "name": "Select",
462
471
  "http_method": "POST",
463
472
  "http_path": "/",
473
+ "metadata": {
474
+ "paging": {
475
+ "tokens": {
476
+ "next_token": "next_token"
477
+ }
478
+ }
479
+ },
464
480
  "input": {
465
481
  "type": "input",
466
482
  "members": {
@@ -19,6 +19,7 @@
19
19
  "Aws::Plugins::GlobalConfiguration",
20
20
  "Aws::Plugins::RegionalEndpoint",
21
21
  "Aws::Plugins::InstanceProfileCredentials",
22
+ "Aws::Plugins::ResponsePaging",
22
23
  "Aws::Plugins::Credentials",
23
24
  "Aws::Plugins::QueryProtocol",
24
25
  "Aws::Plugins::SignatureV4"
@@ -288,6 +289,13 @@
288
289
  "name": "ListIdentities",
289
290
  "http_method": "POST",
290
291
  "http_path": "/",
292
+ "metadata": {
293
+ "paging": {
294
+ "tokens": {
295
+ "next_token": "next_token"
296
+ }
297
+ }
298
+ },
291
299
  "input": {
292
300
  "type": "input",
293
301
  "members": {
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
28
  "Aws::Plugins::InstanceProfileCredentials",
29
+ "Aws::Plugins::ResponsePaging",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::QueryProtocol",
31
32
  "Aws::Plugins::SignatureV4"
@@ -503,6 +504,13 @@
503
504
  "name": "ListSubscriptions",
504
505
  "http_method": "POST",
505
506
  "http_path": "/",
507
+ "metadata": {
508
+ "paging": {
509
+ "tokens": {
510
+ "next_token": "next_token"
511
+ }
512
+ }
513
+ },
506
514
  "input": {
507
515
  "type": "input",
508
516
  "members": {
@@ -558,6 +566,13 @@
558
566
  "name": "ListSubscriptionsByTopic",
559
567
  "http_method": "POST",
560
568
  "http_path": "/",
569
+ "metadata": {
570
+ "paging": {
571
+ "tokens": {
572
+ "next_token": "next_token"
573
+ }
574
+ }
575
+ },
561
576
  "input": {
562
577
  "type": "input",
563
578
  "members": {
@@ -618,6 +633,13 @@
618
633
  "name": "ListTopics",
619
634
  "http_method": "POST",
620
635
  "http_path": "/",
636
+ "metadata": {
637
+ "paging": {
638
+ "tokens": {
639
+ "next_token": "next_token"
640
+ }
641
+ }
642
+ },
621
643
  "input": {
622
644
  "type": "input",
623
645
  "members": {
@@ -27,6 +27,7 @@
27
27
  "Aws::Plugins::GlobalConfiguration",
28
28
  "Aws::Plugins::RegionalEndpoint",
29
29
  "Aws::Plugins::InstanceProfileCredentials",
30
+ "Aws::Plugins::ResponsePaging",
30
31
  "Aws::Plugins::Credentials",
31
32
  "Aws::Plugins::QueryProtocol",
32
33
  "Aws::Plugins::SignatureV4",
@@ -10,7 +10,8 @@
10
10
  "ap-northeast-1": "sts.amazonaws.com",
11
11
  "ap-southeast-1": "sts.amazonaws.com",
12
12
  "ap-southeast-2": "sts.amazonaws.com",
13
- "sa-east-1": "sts.amazonaws.com"
13
+ "sa-east-1": "sts.amazonaws.com",
14
+ "us-gov-west-1": "sts.us-gov-west-1.amazonaws.com"
14
15
  },
15
16
  "service_abbreviation": "AWS STS",
16
17
  "service_class_name": "STS",
@@ -25,6 +26,7 @@
25
26
  "Aws::Plugins::GlobalConfiguration",
26
27
  "Aws::Plugins::RegionalEndpoint",
27
28
  "Aws::Plugins::InstanceProfileCredentials",
29
+ "Aws::Plugins::ResponsePaging",
28
30
  "Aws::Plugins::Credentials",
29
31
  "Aws::Plugins::QueryProtocol",
30
32
  "Aws::Plugins::SignatureV4"
@@ -12,7 +12,8 @@
12
12
  "ap-northeast-1": "swf.ap-northeast-1.amazonaws.com",
13
13
  "ap-southeast-1": "swf.ap-southeast-1.amazonaws.com",
14
14
  "ap-southeast-2": "swf.ap-southeast-2.amazonaws.com",
15
- "sa-east-1": "swf.sa-east-1.amazonaws.com"
15
+ "sa-east-1": "swf.sa-east-1.amazonaws.com",
16
+ "us-gov-west-1": "swf.us-gov-west-1.amazonaws.com"
16
17
  },
17
18
  "service_abbreviation": "Amazon SWF",
18
19
  "service_class_name": "SWF",
@@ -27,6 +28,7 @@
27
28
  "Aws::Plugins::GlobalConfiguration",
28
29
  "Aws::Plugins::RegionalEndpoint",
29
30
  "Aws::Plugins::InstanceProfileCredentials",
31
+ "Aws::Plugins::ResponsePaging",
30
32
  "Aws::Plugins::Credentials",
31
33
  "Aws::Plugins::JsonProtocol",
32
34
  "Aws::Plugins::JsonRpcHeaders",
@@ -850,6 +852,13 @@
850
852
  "name": "GetWorkflowExecutionHistory",
851
853
  "http_method": "POST",
852
854
  "http_path": "/",
855
+ "metadata": {
856
+ "paging": {
857
+ "tokens": {
858
+ "next_page_token": "next_page_token"
859
+ }
860
+ }
861
+ },
853
862
  "input": {
854
863
  "type": "input",
855
864
  "members": {
@@ -2383,6 +2392,13 @@
2383
2392
  "name": "ListActivityTypes",
2384
2393
  "http_method": "POST",
2385
2394
  "http_path": "/",
2395
+ "metadata": {
2396
+ "paging": {
2397
+ "tokens": {
2398
+ "next_page_token": "next_page_token"
2399
+ }
2400
+ }
2401
+ },
2386
2402
  "input": {
2387
2403
  "type": "input",
2388
2404
  "members": {
@@ -2475,6 +2491,13 @@
2475
2491
  "name": "ListClosedWorkflowExecutions",
2476
2492
  "http_method": "POST",
2477
2493
  "http_path": "/",
2494
+ "metadata": {
2495
+ "paging": {
2496
+ "tokens": {
2497
+ "next_page_token": "next_page_token"
2498
+ }
2499
+ }
2500
+ },
2478
2501
  "input": {
2479
2502
  "type": "input",
2480
2503
  "members": {
@@ -2687,6 +2710,13 @@
2687
2710
  "name": "ListDomains",
2688
2711
  "http_method": "POST",
2689
2712
  "http_path": "/",
2713
+ "metadata": {
2714
+ "paging": {
2715
+ "tokens": {
2716
+ "next_page_token": "next_page_token"
2717
+ }
2718
+ }
2719
+ },
2690
2720
  "input": {
2691
2721
  "type": "input",
2692
2722
  "members": {
@@ -2752,6 +2782,13 @@
2752
2782
  "name": "ListOpenWorkflowExecutions",
2753
2783
  "http_method": "POST",
2754
2784
  "http_path": "/",
2785
+ "metadata": {
2786
+ "paging": {
2787
+ "tokens": {
2788
+ "next_page_token": "next_page_token"
2789
+ }
2790
+ }
2791
+ },
2755
2792
  "input": {
2756
2793
  "type": "input",
2757
2794
  "members": {
@@ -2931,6 +2968,13 @@
2931
2968
  "name": "ListWorkflowTypes",
2932
2969
  "http_method": "POST",
2933
2970
  "http_path": "/",
2971
+ "metadata": {
2972
+ "paging": {
2973
+ "tokens": {
2974
+ "next_page_token": "next_page_token"
2975
+ }
2976
+ }
2977
+ },
2934
2978
  "input": {
2935
2979
  "type": "input",
2936
2980
  "members": {
@@ -3103,6 +3147,13 @@
3103
3147
  "name": "PollForDecisionTask",
3104
3148
  "http_method": "POST",
3105
3149
  "http_path": "/",
3150
+ "metadata": {
3151
+ "paging": {
3152
+ "tokens": {
3153
+ "next_page_token": "next_page_token"
3154
+ }
3155
+ }
3156
+ },
3106
3157
  "input": {
3107
3158
  "type": "input",
3108
3159
  "members": {
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
28
  "Aws::Plugins::InstanceProfileCredentials",
29
+ "Aws::Plugins::ResponsePaging",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::JsonProtocol",
31
32
  "Aws::Plugins::JsonRpcHeaders",
@@ -1199,6 +1200,13 @@
1199
1200
  "name": "ListGateways",
1200
1201
  "http_method": "POST",
1201
1202
  "http_path": "/",
1203
+ "metadata": {
1204
+ "paging": {
1205
+ "tokens": {
1206
+ "marker": "marker"
1207
+ }
1208
+ }
1209
+ },
1202
1210
  "input": {
1203
1211
  "type": "input",
1204
1212
  "members": {
@@ -1352,6 +1360,13 @@
1352
1360
  "name": "ListVolumes",
1353
1361
  "http_method": "POST",
1354
1362
  "http_path": "/",
1363
+ "metadata": {
1364
+ "paging": {
1365
+ "tokens": {
1366
+ "marker": "marker"
1367
+ }
1368
+ }
1369
+ },
1355
1370
  "input": {
1356
1371
  "type": "input",
1357
1372
  "members": {
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
28
  "Aws::Plugins::InstanceProfileCredentials",
29
+ "Aws::Plugins::ResponsePaging",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::JsonProtocol",
31
32
  "Aws::Plugins::JsonRpcHeaders",
@@ -1498,6 +1499,13 @@
1498
1499
  "name": "ListGateways",
1499
1500
  "http_method": "POST",
1500
1501
  "http_path": "/",
1502
+ "metadata": {
1503
+ "paging": {
1504
+ "tokens": {
1505
+ "marker": "marker"
1506
+ }
1507
+ }
1508
+ },
1501
1509
  "input": {
1502
1510
  "type": "input",
1503
1511
  "members": {
@@ -1652,6 +1660,13 @@
1652
1660
  "name": "ListVolumes",
1653
1661
  "http_method": "POST",
1654
1662
  "http_path": "/",
1663
+ "metadata": {
1664
+ "paging": {
1665
+ "tokens": {
1666
+ "marker": "marker"
1667
+ }
1668
+ }
1669
+ },
1655
1670
  "input": {
1656
1671
  "type": "input",
1657
1672
  "members": {
@@ -19,6 +19,7 @@
19
19
  "Aws::Plugins::GlobalConfiguration",
20
20
  "Aws::Plugins::RegionalEndpoint",
21
21
  "Aws::Plugins::InstanceProfileCredentials",
22
+ "Aws::Plugins::ResponsePaging",
22
23
  "Aws::Plugins::Credentials",
23
24
  "Aws::Plugins::JsonProtocol",
24
25
  "Aws::Plugins::JsonRpcHeaders",
@@ -122,6 +123,13 @@
122
123
  "name": "DescribeCases",
123
124
  "http_method": "POST",
124
125
  "http_path": "/",
126
+ "metadata": {
127
+ "paging": {
128
+ "tokens": {
129
+ "next_token": "next_token"
130
+ }
131
+ }
132
+ },
125
133
  "input": {
126
134
  "type": "input",
127
135
  "members": {
@@ -267,6 +275,13 @@
267
275
  "name": "DescribeCommunications",
268
276
  "http_method": "POST",
269
277
  "http_path": "/",
278
+ "metadata": {
279
+ "paging": {
280
+ "tokens": {
281
+ "next_token": "next_token"
282
+ }
283
+ }
284
+ },
270
285
  "input": {
271
286
  "type": "input",
272
287
  "members": {
@@ -16,6 +16,11 @@
16
16
  "https": true,
17
17
  "hostname": "cloudsearch.us-east-1.amazonaws.com"
18
18
  },
19
+ "cloudtrail": {
20
+ "http": false,
21
+ "https": true,
22
+ "hostname": "cloudtrail.us-east-1.amazonaws.com"
23
+ },
19
24
  "monitoring": {
20
25
  "http": true,
21
26
  "https": true,
@@ -106,6 +111,11 @@
106
111
  "https": true,
107
112
  "hostname": "storagegateway.us-east-1.amazonaws.com"
108
113
  },
114
+ "support": {
115
+ "http": false,
116
+ "https": true,
117
+ "hostname": "support.us-east-1.amazonaws.com"
118
+ },
109
119
  "elasticloadbalancing": {
110
120
  "http": true,
111
121
  "https": true,
@@ -136,6 +146,11 @@
136
146
  "https": true,
137
147
  "hostname": "redshift.us-east-1.amazonaws.com"
138
148
  },
149
+ "kinesis": {
150
+ "http": false,
151
+ "https": true,
152
+ "hostname": "kinesis.us-east-1.amazonaws.com"
153
+ },
139
154
  "opsworks": {
140
155
  "http": false,
141
156
  "https": true,
@@ -145,11 +160,6 @@
145
160
  "http": false,
146
161
  "https": true,
147
162
  "hostname": "elastictranscoder.us-east-1.amazonaws.com"
148
- },
149
- "support": {
150
- "http": false,
151
- "https": true,
152
- "hostname": "support.us-east-1.amazonaws.com"
153
163
  }
154
164
  },
155
165
  "us-west-1": {
@@ -295,6 +305,11 @@
295
305
  "https": true,
296
306
  "hostname": "cloudsearch.us-west-2.amazonaws.com"
297
307
  },
308
+ "cloudtrail": {
309
+ "http": false,
310
+ "https": true,
311
+ "hostname": "cloudtrail.us-west-2.amazonaws.com"
312
+ },
298
313
  "monitoring": {
299
314
  "http": true,
300
315
  "https": true,
@@ -532,6 +547,11 @@
532
547
  "https": true,
533
548
  "hostname": "directconnect.eu-west-1.amazonaws.com"
534
549
  },
550
+ "redshift": {
551
+ "http": false,
552
+ "https": true,
553
+ "hostname": "redshift.eu-west-1.amazonaws.com"
554
+ },
535
555
  "elastictranscoder": {
536
556
  "http": false,
537
557
  "https": true,
@@ -654,6 +674,11 @@
654
674
  "https": true,
655
675
  "hostname": "directconnect.ap-northeast-1.amazonaws.com"
656
676
  },
677
+ "redshift": {
678
+ "http": false,
679
+ "https": true,
680
+ "hostname": "redshift.ap-northeast-1.amazonaws.com"
681
+ },
657
682
  "elastictranscoder": {
658
683
  "http": false,
659
684
  "https": true,
@@ -776,6 +801,11 @@
776
801
  "https": true,
777
802
  "hostname": "directconnect.ap-southeast-1.amazonaws.com"
778
803
  },
804
+ "redshift": {
805
+ "http": false,
806
+ "https": true,
807
+ "hostname": "redshift.ap-southeast-1.amazonaws.com"
808
+ },
779
809
  "elastictranscoder": {
780
810
  "http": false,
781
811
  "https": true,
@@ -813,6 +843,11 @@
813
843
  "https": true,
814
844
  "hostname": "elasticmapreduce.ap-southeast-2.amazonaws.com"
815
845
  },
846
+ "elasticache": {
847
+ "http": false,
848
+ "https": true,
849
+ "hostname": "elasticache.ap-southeast-2.amazonaws.com"
850
+ },
816
851
  "rds": {
817
852
  "http": false,
818
853
  "https": true,
@@ -823,6 +858,11 @@
823
858
  "https": true,
824
859
  "hostname": "route53.amazonaws.com"
825
860
  },
861
+ "sdb": {
862
+ "http": true,
863
+ "https": true,
864
+ "hostname": "sdb.ap-southeast-2.amazonaws.com"
865
+ },
826
866
  "sns": {
827
867
  "http": true,
828
868
  "https": true,
@@ -878,15 +918,20 @@
878
918
  "https": true,
879
919
  "hostname": "swf.ap-southeast-2.amazonaws.com"
880
920
  },
921
+ "glacier": {
922
+ "http": true,
923
+ "https": true,
924
+ "hostname": "glacier.ap-southeast-2.amazonaws.com"
925
+ },
881
926
  "directconnect": {
882
927
  "http": false,
883
928
  "https": true,
884
929
  "hostname": "directconnect.ap-southeast-2.amazonaws.com"
885
930
  },
886
- "elastictranscoder": {
931
+ "redshift": {
887
932
  "http": false,
888
933
  "https": true,
889
- "hostname": "elastictranscoder.ap-southeast-2.amazonaws.com"
934
+ "hostname": "redshift.ap-southeast-2.amazonaws.com"
890
935
  }
891
936
  },
892
937
  "sa-east-1": {
@@ -999,11 +1044,6 @@
999
1044
  "http": false,
1000
1045
  "https": true,
1001
1046
  "hostname": "directconnect.sa-east-1.amazonaws.com"
1002
- },
1003
- "elastictranscoder": {
1004
- "http": false,
1005
- "https": true,
1006
- "hostname": "elastictranscoder.sa-east-1.amazonaws.com"
1007
1047
  }
1008
1048
  },
1009
1049
  "us-gov-west-1": {
@@ -1022,6 +1062,11 @@
1022
1062
  "https": true,
1023
1063
  "hostname": "ec2.us-gov-west-1.amazonaws.com"
1024
1064
  },
1065
+ "elasticmapreduce": {
1066
+ "http": true,
1067
+ "https": true,
1068
+ "hostname": "elasticmapreduce.us-gov-west-1.amazonaws.com"
1069
+ },
1025
1070
  "rds": {
1026
1071
  "http": false,
1027
1072
  "https": true,
@@ -1061,6 +1106,11 @@
1061
1106
  "http": true,
1062
1107
  "https": true,
1063
1108
  "hostname": "elasticloadbalancing.us-gov-west-1.amazonaws.com"
1109
+ },
1110
+ "swf": {
1111
+ "http": false,
1112
+ "https": true,
1113
+ "hostname": "swf.us-gov-west-1.amazonaws.com"
1064
1114
  }
1065
1115
  }
1066
1116
  },
@@ -1092,6 +1142,10 @@
1092
1142
  "eu-west-1",
1093
1143
  "ap-southeast-1"
1094
1144
  ],
1145
+ "cloudtrail": [
1146
+ "us-east-1",
1147
+ "us-west-2"
1148
+ ],
1095
1149
  "monitoring": [
1096
1150
  "us-east-1",
1097
1151
  "us-west-1",
@@ -1133,7 +1187,8 @@
1133
1187
  "ap-northeast-1",
1134
1188
  "ap-southeast-1",
1135
1189
  "ap-southeast-2",
1136
- "sa-east-1"
1190
+ "sa-east-1",
1191
+ "us-gov-west-1"
1137
1192
  ],
1138
1193
  "elasticache": [
1139
1194
  "us-east-1",
@@ -1142,6 +1197,7 @@
1142
1197
  "eu-west-1",
1143
1198
  "ap-northeast-1",
1144
1199
  "ap-southeast-1",
1200
+ "ap-southeast-2",
1145
1201
  "sa-east-1"
1146
1202
  ],
1147
1203
  "rds": [
@@ -1175,6 +1231,7 @@
1175
1231
  "eu-west-1",
1176
1232
  "ap-northeast-1",
1177
1233
  "ap-southeast-1",
1234
+ "ap-southeast-2",
1178
1235
  "sa-east-1"
1179
1236
  ],
1180
1237
  "sns": [
@@ -1260,7 +1317,8 @@
1260
1317
  "ap-northeast-1",
1261
1318
  "ap-southeast-1",
1262
1319
  "ap-southeast-2",
1263
- "sa-east-1"
1320
+ "sa-east-1",
1321
+ "us-gov-west-1"
1264
1322
  ],
1265
1323
  "storagegateway": [
1266
1324
  "us-east-1",
@@ -1272,6 +1330,9 @@
1272
1330
  "ap-southeast-2",
1273
1331
  "sa-east-1"
1274
1332
  ],
1333
+ "support": [
1334
+ "us-east-1"
1335
+ ],
1275
1336
  "elasticloadbalancing": [
1276
1337
  "us-east-1",
1277
1338
  "us-west-1",
@@ -1283,9 +1344,6 @@
1283
1344
  "sa-east-1",
1284
1345
  "us-gov-west-1"
1285
1346
  ],
1286
- "support": [
1287
- "us-east-1"
1288
- ],
1289
1347
  "swf": [
1290
1348
  "us-east-1",
1291
1349
  "us-west-1",
@@ -1294,13 +1352,15 @@
1294
1352
  "ap-northeast-1",
1295
1353
  "ap-southeast-1",
1296
1354
  "ap-southeast-2",
1297
- "sa-east-1"
1355
+ "sa-east-1",
1356
+ "us-gov-west-1"
1298
1357
  ],
1299
1358
  "glacier": [
1300
1359
  "us-east-1",
1301
1360
  "us-west-1",
1302
1361
  "us-west-2",
1303
1362
  "eu-west-1",
1363
+ "ap-southeast-2",
1304
1364
  "ap-northeast-1"
1305
1365
  ],
1306
1366
  "directconnect": [
@@ -1318,7 +1378,14 @@
1318
1378
  ],
1319
1379
  "redshift": [
1320
1380
  "us-east-1",
1321
- "us-west-2"
1381
+ "us-west-2",
1382
+ "eu-west-1",
1383
+ "ap-southeast-1",
1384
+ "ap-southeast-2",
1385
+ "ap-northeast-1"
1386
+ ],
1387
+ "kinesis": [
1388
+ "us-east-1"
1322
1389
  ],
1323
1390
  "opsworks": [
1324
1391
  "us-east-1"
@@ -1329,9 +1396,7 @@
1329
1396
  "us-west-2",
1330
1397
  "eu-west-1",
1331
1398
  "ap-northeast-1",
1332
- "ap-southeast-1",
1333
- "ap-southeast-2",
1334
- "sa-east-1"
1399
+ "ap-southeast-1"
1335
1400
  ]
1336
1401
  }
1337
- }
1402
+ }