aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,10 +1,10 @@
1
1
  require 'cgi'
2
2
 
3
3
  module Seahorse
4
+ # @api private
4
5
  module Util
5
6
  class << self
6
7
 
7
- # @api private
8
8
  def irregular_inflections(hash)
9
9
  @irregular_inflections.update(hash)
10
10
  @irregular_regex = Regexp.new(@irregular_inflections.keys.join('|'))
@@ -21,11 +21,7 @@ module Seahorse
21
21
  end
22
22
 
23
23
  def uri_escape(string)
24
- CGI::escape(string.encode('UTF-8')).gsub('+', '%20').gsub('%7E', '~')
25
- end
26
-
27
- def load_json(path)
28
- MultiJson.load(File.open(path, 'r', encoding: 'UTF-8') { |f| f.read })
24
+ CGI.escape(string.encode('UTF-8')).gsub('+', '%20').gsub('%7E', '~')
29
25
  end
30
26
 
31
27
  end
metadata CHANGED
@@ -1,43 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.48
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-04 00:00:00.000000000 Z
11
+ date: 2015-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: multi_json
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.0'
27
- - !ruby/object:Gem::Dependency
28
- name: builder
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '3.0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '3.0'
41
13
  - !ruby/object:Gem::Dependency
42
14
  name: jmespath
43
15
  requirement: !ruby/object:Gem::Requirement
@@ -62,187 +34,148 @@ extensions: []
62
34
  extra_rdoc_files: []
63
35
  files:
64
36
  - apis/autoscaling/2011-01-01/api-2.json
65
- - apis/autoscaling/2011-01-01/docs-2.json
66
37
  - apis/autoscaling/2011-01-01/paginators-1.json
67
38
  - apis/cloudformation/2010-05-15/api-2.json
68
- - apis/cloudformation/2010-05-15/docs-2.json
69
39
  - apis/cloudformation/2010-05-15/paginators-1.json
70
40
  - apis/cloudformation/2010-05-15/resources-1.json
71
41
  - apis/cloudformation/2010-05-15/waiters-2.json
72
42
  - apis/cloudfront/2014-11-06/api-2.json
73
- - apis/cloudfront/2014-11-06/docs-2.json
74
43
  - apis/cloudfront/2014-11-06/paginators-1.json
75
44
  - apis/cloudfront/2014-11-06/waiters-2.json
76
45
  - apis/cloudhsm/2014-05-30/api-2.json
77
- - apis/cloudhsm/2014-05-30/docs-2.json
78
46
  - apis/cloudsearch/2013-01-01/api-2.json
79
- - apis/cloudsearch/2013-01-01/docs-2.json
80
47
  - apis/cloudsearch/2013-01-01/paginators-1.json
81
48
  - apis/cloudsearchdomain/2013-01-01/api-2.json
82
- - apis/cloudsearchdomain/2013-01-01/docs-2.json
83
49
  - apis/cloudtrail/2013-11-01/api-2.json
84
- - apis/cloudtrail/2013-11-01/docs-2.json
85
50
  - apis/cloudtrail/2013-11-01/paginators-1.json
86
51
  - apis/codedeploy/2014-10-06/api-2.json
87
- - apis/codedeploy/2014-10-06/docs-2.json
88
52
  - apis/codedeploy/2014-10-06/paginators-1.json
89
53
  - apis/cognito-identity/2014-06-30/api-2.json
90
- - apis/cognito-identity/2014-06-30/docs-2.json
91
54
  - apis/cognito-sync/2014-06-30/api-2.json
92
- - apis/cognito-sync/2014-06-30/docs-2.json
93
55
  - apis/config/2014-10-17/api-2.json
94
- - apis/config/2014-10-17/docs-2.json
95
56
  - apis/config/2014-10-17/paginators-1.json
96
57
  - apis/config/2014-11-12/api-2.json
97
- - apis/config/2014-11-12/docs-2.json
98
58
  - apis/config/2014-11-12/paginators-1.json
99
59
  - apis/datapipeline/2012-10-29/api-2.json
100
- - apis/datapipeline/2012-10-29/docs-2.json
101
60
  - apis/datapipeline/2012-10-29/paginators-1.json
102
61
  - apis/directconnect/2012-10-25/api-2.json
103
- - apis/directconnect/2012-10-25/docs-2.json
104
62
  - apis/directconnect/2012-10-25/paginators-1.json
105
63
  - apis/ds/2015-04-16/api-2.json
106
- - apis/ds/2015-04-16/docs-2.json
107
- - apis/dynamodb/2011-12-05/api-2.json
108
- - apis/dynamodb/2011-12-05/docs-2.json
109
- - apis/dynamodb/2011-12-05/paginators-1.json
110
- - apis/dynamodb/2011-12-05/waiters-2.json
111
64
  - apis/dynamodb/2012-08-10/api-2.json
112
- - apis/dynamodb/2012-08-10/docs-2.json
113
65
  - apis/dynamodb/2012-08-10/paginators-1.json
114
66
  - apis/dynamodb/2012-08-10/resources-1.json
115
67
  - apis/dynamodb/2012-08-10/waiters-2.json
68
+ - apis/ec2/2014-10-01/api-2.json
69
+ - apis/ec2/2014-10-01/paginators-1.json
70
+ - apis/ec2/2014-10-01/resources-1.json
71
+ - apis/ec2/2014-10-01/waiters-2.json
72
+ - apis/ec2/2015-03-01/api-2.json
73
+ - apis/ec2/2015-03-01/paginators-1.json
74
+ - apis/ec2/2015-03-01/resources-1.json
75
+ - apis/ec2/2015-03-01/waiters-2.json
116
76
  - apis/ec2/2015-04-15/api-2.json
117
- - apis/ec2/2015-04-15/docs-2.json
118
77
  - apis/ec2/2015-04-15/paginators-1.json
119
78
  - apis/ec2/2015-04-15/resources-1.json
120
79
  - apis/ec2/2015-04-15/waiters-2.json
121
80
  - apis/ecs/2014-11-13/api-2.json
122
- - apis/ecs/2014-11-13/docs-2.json
81
+ - apis/ecs/2014-11-13/paginators-1.json
82
+ - apis/ecs/2014-11-13/waiters-2.json
123
83
  - apis/elasticache/2015-02-02/api-2.json
124
- - apis/elasticache/2015-02-02/docs-2.json
125
84
  - apis/elasticache/2015-02-02/paginators-1.json
126
85
  - apis/elasticache/2015-02-02/waiters-2.json
127
86
  - apis/elasticbeanstalk/2010-12-01/api-2.json
128
- - apis/elasticbeanstalk/2010-12-01/docs-2.json
129
87
  - apis/elasticbeanstalk/2010-12-01/paginators-1.json
130
88
  - apis/elasticfilesystem/2015-02-01/api-2.json
131
- - apis/elasticfilesystem/2015-02-01/docs-2.json
132
89
  - apis/elasticloadbalancing/2012-06-01/api-2.json
133
- - apis/elasticloadbalancing/2012-06-01/docs-2.json
134
90
  - apis/elasticloadbalancing/2012-06-01/paginators-1.json
135
91
  - apis/elasticloadbalancing/2012-06-01/waiters-2.json
136
92
  - apis/elasticmapreduce/2009-03-31/api-2.json
137
- - apis/elasticmapreduce/2009-03-31/docs-2.json
138
93
  - apis/elasticmapreduce/2009-03-31/paginators-1.json
139
94
  - apis/elasticmapreduce/2009-03-31/waiters-2.json
140
95
  - apis/elastictranscoder/2012-09-25/api-2.json
141
- - apis/elastictranscoder/2012-09-25/docs-2.json
142
96
  - apis/elastictranscoder/2012-09-25/paginators-1.json
143
97
  - apis/elastictranscoder/2012-09-25/waiters-2.json
144
98
  - apis/email/2010-12-01/api-2.json
145
- - apis/email/2010-12-01/docs-2.json
146
99
  - apis/email/2010-12-01/paginators-1.json
147
100
  - apis/email/2010-12-01/waiters-2.json
148
101
  - apis/glacier/2012-06-01/api-2.json
149
- - apis/glacier/2012-06-01/docs-2.json
150
102
  - apis/glacier/2012-06-01/paginators-1.json
151
103
  - apis/glacier/2012-06-01/resources-1.json
152
104
  - apis/glacier/2012-06-01/waiters-2.json
153
105
  - apis/iam/2010-05-08/api-2.json
154
- - apis/iam/2010-05-08/docs-2.json
155
106
  - apis/iam/2010-05-08/paginators-1.json
156
107
  - apis/iam/2010-05-08/resources-1.json
157
108
  - apis/importexport/2010-06-01/api-2.json
158
- - apis/importexport/2010-06-01/docs-2.json
159
109
  - apis/importexport/2010-06-01/paginators-1.json
160
110
  - apis/kinesis/2013-12-02/api-2.json
161
- - apis/kinesis/2013-12-02/docs-2.json
162
111
  - apis/kinesis/2013-12-02/paginators-1.json
163
112
  - apis/kinesis/2013-12-02/waiters-2.json
164
113
  - apis/kms/2014-11-01/api-2.json
165
- - apis/kms/2014-11-01/docs-2.json
166
114
  - apis/kms/2014-11-01/paginators-1.json
167
115
  - apis/lambda/2014-11-11/api-2.json
168
- - apis/lambda/2014-11-11/docs-2.json
169
116
  - apis/lambda/2014-11-11/paginators-1.json
170
117
  - apis/lambda/2015-03-31/api-2.json
171
- - apis/lambda/2015-03-31/docs-2.json
172
118
  - apis/lambda/2015-03-31/paginators-1.json
173
119
  - apis/logs/2014-03-28/api-2.json
174
- - apis/logs/2014-03-28/docs-2.json
175
120
  - apis/logs/2014-03-28/paginators-1.json
176
121
  - apis/machinelearning/2014-12-12/api-2.json
177
- - apis/machinelearning/2014-12-12/docs-2.json
178
122
  - apis/machinelearning/2014-12-12/paginators-1.json
179
123
  - apis/monitoring/2010-08-01/api-2.json
180
- - apis/monitoring/2010-08-01/docs-2.json
181
124
  - apis/monitoring/2010-08-01/paginators-1.json
182
125
  - apis/opsworks/2013-02-18/api-2.json
183
- - apis/opsworks/2013-02-18/docs-2.json
184
126
  - apis/opsworks/2013-02-18/paginators-1.json
185
127
  - apis/opsworks/2013-02-18/resources-1.json
186
128
  - apis/opsworks/2013-02-18/waiters-2.json
187
129
  - apis/rds/2014-10-31/api-2.json
188
- - apis/rds/2014-10-31/docs-2.json
189
130
  - apis/rds/2014-10-31/paginators-1.json
190
131
  - apis/rds/2014-10-31/resources-1.json
191
132
  - apis/rds/2014-10-31/waiters-2.json
192
133
  - apis/redshift/2012-12-01/api-2.json
193
- - apis/redshift/2012-12-01/docs-2.json
194
134
  - apis/redshift/2012-12-01/paginators-1.json
195
135
  - apis/redshift/2012-12-01/waiters-2.json
196
136
  - apis/route53/2013-04-01/api-2.json
197
- - apis/route53/2013-04-01/docs-2.json
198
137
  - apis/route53/2013-04-01/paginators-1.json
199
138
  - apis/route53domains/2014-05-15/api-2.json
200
- - apis/route53domains/2014-05-15/docs-2.json
201
139
  - apis/route53domains/2014-05-15/paginators-1.json
202
140
  - apis/s3/2006-03-01/api-2.json
203
- - apis/s3/2006-03-01/docs-2.json
204
141
  - apis/s3/2006-03-01/paginators-1.json
205
142
  - apis/s3/2006-03-01/resources-1.json
206
143
  - apis/s3/2006-03-01/waiters-2.json
207
144
  - apis/sdb/2009-04-15/api-2.json
208
- - apis/sdb/2009-04-15/docs-2.json
209
145
  - apis/sdb/2009-04-15/paginators-1.json
210
146
  - apis/sns/2010-03-31/api-2.json
211
- - apis/sns/2010-03-31/docs-2.json
212
147
  - apis/sns/2010-03-31/paginators-1.json
213
148
  - apis/sns/2010-03-31/resources-1.json
214
149
  - apis/sqs/2012-11-05/api-2.json
215
- - apis/sqs/2012-11-05/docs-2.json
216
150
  - apis/sqs/2012-11-05/paginators-1.json
217
151
  - apis/ssm/2014-11-06/api-2.json
218
- - apis/ssm/2014-11-06/docs-2.json
219
152
  - apis/storagegateway/2013-06-30/api-2.json
220
- - apis/storagegateway/2013-06-30/docs-2.json
221
153
  - apis/storagegateway/2013-06-30/paginators-1.json
222
154
  - apis/sts/2011-06-15/api-2.json
223
- - apis/sts/2011-06-15/docs-2.json
224
155
  - apis/support/2013-04-15/api-2.json
225
- - apis/support/2013-04-15/docs-2.json
226
156
  - apis/support/2013-04-15/paginators-1.json
227
157
  - apis/swf/2012-01-25/api-2.json
228
- - apis/swf/2012-01-25/docs-2.json
229
158
  - apis/swf/2012-01-25/paginators-1.json
230
159
  - apis/workspaces/2015-04-08/api-2.json
231
- - apis/workspaces/2015-04-08/docs-2.json
232
160
  - apis/workspaces/2015-04-08/paginators-1.json
233
161
  - bin/aws.rb
162
+ - ca-bundle.crt
234
163
  - endpoints.json
235
164
  - lib/aws-sdk-core.rb
236
- - lib/aws-sdk-core/api/customizer.rb
237
- - lib/aws-sdk-core/api/docstrings.rb
238
- - lib/aws-sdk-core/api/documenter.rb
239
- - lib/aws-sdk-core/api/operation_documenter.rb
240
- - lib/aws-sdk-core/api/operation_example.rb
241
- - lib/aws-sdk-core/api/service_customizations.rb
165
+ - lib/aws-sdk-core/api/builder.rb
166
+ - lib/aws-sdk-core/api/customizations.rb
167
+ - lib/aws-sdk-core/api/docs/builder.rb
168
+ - lib/aws-sdk-core/api/docs/client_type_documenter.rb
169
+ - lib/aws-sdk-core/api/docs/docstring_provider.rb
170
+ - lib/aws-sdk-core/api/docs/operation_documenter.rb
171
+ - lib/aws-sdk-core/api/docs/param_formatter.rb
172
+ - lib/aws-sdk-core/api/docs/request_syntax_example.rb
173
+ - lib/aws-sdk-core/api/docs/response_structure_example.rb
174
+ - lib/aws-sdk-core/api/docs/utils.rb
175
+ - lib/aws-sdk-core/api/shape_map.rb
242
176
  - lib/aws-sdk-core/assume_role_credentials.rb
243
177
  - lib/aws-sdk-core/autoscaling.rb
244
178
  - lib/aws-sdk-core/client.rb
245
- - lib/aws-sdk-core/client_paging.rb
246
179
  - lib/aws-sdk-core/client_stubs.rb
247
180
  - lib/aws-sdk-core/client_waiters.rb
248
181
  - lib/aws-sdk-core/cloudformation.rb
@@ -257,13 +190,16 @@ files:
257
190
  - lib/aws-sdk-core/cognitoidentity.rb
258
191
  - lib/aws-sdk-core/cognitosync.rb
259
192
  - lib/aws-sdk-core/configservice.rb
193
+ - lib/aws-sdk-core/credential_provider.rb
260
194
  - lib/aws-sdk-core/credential_provider_chain.rb
261
195
  - lib/aws-sdk-core/credentials.rb
262
196
  - lib/aws-sdk-core/datapipeline.rb
197
+ - lib/aws-sdk-core/deprecations.rb
263
198
  - lib/aws-sdk-core/directconnect.rb
264
199
  - lib/aws-sdk-core/directoryservice.rb
265
200
  - lib/aws-sdk-core/dynamodb.rb
266
201
  - lib/aws-sdk-core/dynamodb/attribute_value.rb
202
+ - lib/aws-sdk-core/eager_loader.rb
267
203
  - lib/aws-sdk-core/ec2.rb
268
204
  - lib/aws-sdk-core/ecs.rb
269
205
  - lib/aws-sdk-core/efs.rb
@@ -279,13 +215,13 @@ files:
279
215
  - lib/aws-sdk-core/iam.rb
280
216
  - lib/aws-sdk-core/importexport.rb
281
217
  - lib/aws-sdk-core/instance_profile_credentials.rb
218
+ - lib/aws-sdk-core/json.rb
282
219
  - lib/aws-sdk-core/json/builder.rb
283
220
  - lib/aws-sdk-core/json/error_handler.rb
221
+ - lib/aws-sdk-core/json/handler.rb
222
+ - lib/aws-sdk-core/json/json_engine.rb
223
+ - lib/aws-sdk-core/json/oj_engine.rb
284
224
  - lib/aws-sdk-core/json/parser.rb
285
- - lib/aws-sdk-core/json/rest_handler.rb
286
- - lib/aws-sdk-core/json/rpc_body_handler.rb
287
- - lib/aws-sdk-core/json/rpc_headers_handler.rb
288
- - lib/aws-sdk-core/json/simple_body_handler.rb
289
225
  - lib/aws-sdk-core/kinesis.rb
290
226
  - lib/aws-sdk-core/kms.rb
291
227
  - lib/aws-sdk-core/lambda.rb
@@ -293,10 +229,9 @@ files:
293
229
  - lib/aws-sdk-core/machinelearning.rb
294
230
  - lib/aws-sdk-core/opsworks.rb
295
231
  - lib/aws-sdk-core/pageable_response.rb
296
- - lib/aws-sdk-core/paging/null_pager.rb
297
- - lib/aws-sdk-core/paging/null_provider.rb
298
- - lib/aws-sdk-core/paging/pager.rb
299
- - lib/aws-sdk-core/paging/provider.rb
232
+ - lib/aws-sdk-core/pager.rb
233
+ - lib/aws-sdk-core/param_converter.rb
234
+ - lib/aws-sdk-core/param_validator.rb
300
235
  - lib/aws-sdk-core/plugins/csd_conditional_signing.rb
301
236
  - lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb
302
237
  - lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb
@@ -307,6 +242,8 @@ files:
307
242
  - lib/aws-sdk-core/plugins/glacier_checksums.rb
308
243
  - lib/aws-sdk-core/plugins/global_configuration.rb
309
244
  - lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb
245
+ - lib/aws-sdk-core/plugins/param_converter.rb
246
+ - lib/aws-sdk-core/plugins/param_validator.rb
310
247
  - lib/aws-sdk-core/plugins/protocols/ec2.rb
311
248
  - lib/aws-sdk-core/plugins/protocols/json_rpc.rb
312
249
  - lib/aws-sdk-core/plugins/protocols/query.rb
@@ -339,7 +276,15 @@ files:
339
276
  - lib/aws-sdk-core/rds.rb
340
277
  - lib/aws-sdk-core/redshift.rb
341
278
  - lib/aws-sdk-core/refreshing_credentials.rb
342
- - lib/aws-sdk-core/rest_body_handler.rb
279
+ - lib/aws-sdk-core/rest/handler.rb
280
+ - lib/aws-sdk-core/rest/request/body.rb
281
+ - lib/aws-sdk-core/rest/request/builder.rb
282
+ - lib/aws-sdk-core/rest/request/endpoint.rb
283
+ - lib/aws-sdk-core/rest/request/headers.rb
284
+ - lib/aws-sdk-core/rest/response/body.rb
285
+ - lib/aws-sdk-core/rest/response/headers.rb
286
+ - lib/aws-sdk-core/rest/response/parser.rb
287
+ - lib/aws-sdk-core/rest/response/status_code.rb
343
288
  - lib/aws-sdk-core/route53.rb
344
289
  - lib/aws-sdk-core/route53domains.rb
345
290
  - lib/aws-sdk-core/s3.rb
@@ -349,7 +294,6 @@ files:
349
294
  - lib/aws-sdk-core/ses.rb
350
295
  - lib/aws-sdk-core/shared_credentials.rb
351
296
  - lib/aws-sdk-core/signers/base.rb
352
- - lib/aws-sdk-core/signers/handler.rb
353
297
  - lib/aws-sdk-core/signers/s3.rb
354
298
  - lib/aws-sdk-core/signers/v2.rb
355
299
  - lib/aws-sdk-core/signers/v3.rb
@@ -361,6 +305,15 @@ files:
361
305
  - lib/aws-sdk-core/storagegateway.rb
362
306
  - lib/aws-sdk-core/structure.rb
363
307
  - lib/aws-sdk-core/sts.rb
308
+ - lib/aws-sdk-core/stubbing/data_applicator.rb
309
+ - lib/aws-sdk-core/stubbing/empty_stub.rb
310
+ - lib/aws-sdk-core/stubbing/protocols/ec2.rb
311
+ - lib/aws-sdk-core/stubbing/protocols/json.rb
312
+ - lib/aws-sdk-core/stubbing/protocols/query.rb
313
+ - lib/aws-sdk-core/stubbing/protocols/rest.rb
314
+ - lib/aws-sdk-core/stubbing/protocols/rest_json.rb
315
+ - lib/aws-sdk-core/stubbing/protocols/rest_xml.rb
316
+ - lib/aws-sdk-core/stubbing/stub_data.rb
364
317
  - lib/aws-sdk-core/support.rb
365
318
  - lib/aws-sdk-core/swf.rb
366
319
  - lib/aws-sdk-core/tree_hash.rb
@@ -373,6 +326,8 @@ files:
373
326
  - lib/aws-sdk-core/workspaces.rb
374
327
  - lib/aws-sdk-core/xml/builder.rb
375
328
  - lib/aws-sdk-core/xml/default_list.rb
329
+ - lib/aws-sdk-core/xml/default_map.rb
330
+ - lib/aws-sdk-core/xml/doc_builder.rb
376
331
  - lib/aws-sdk-core/xml/error_handler.rb
377
332
  - lib/aws-sdk-core/xml/parser.rb
378
333
  - lib/aws-sdk-core/xml/parser/engines/libxml.rb
@@ -382,7 +337,6 @@ files:
382
337
  - lib/aws-sdk-core/xml/parser/frame.rb
383
338
  - lib/aws-sdk-core/xml/parser/parsing_error.rb
384
339
  - lib/aws-sdk-core/xml/parser/stack.rb
385
- - lib/aws-sdk-core/xml/rest_handler.rb
386
340
  - lib/seahorse.rb
387
341
  - lib/seahorse/client/base.rb
388
342
  - lib/seahorse/client/block_io.rb
@@ -402,28 +356,21 @@ files:
402
356
  - lib/seahorse/client/net_http/handler.rb
403
357
  - lib/seahorse/client/net_http/patches.rb
404
358
  - lib/seahorse/client/networking_error.rb
405
- - lib/seahorse/client/param_converter.rb
406
- - lib/seahorse/client/param_validator.rb
407
359
  - lib/seahorse/client/plugin.rb
408
360
  - lib/seahorse/client/plugin_list.rb
409
361
  - lib/seahorse/client/plugins/content_length.rb
410
362
  - lib/seahorse/client/plugins/endpoint.rb
411
- - lib/seahorse/client/plugins/json_simple.rb
412
363
  - lib/seahorse/client/plugins/logging.rb
413
364
  - lib/seahorse/client/plugins/net_http.rb
414
365
  - lib/seahorse/client/plugins/operation_methods.rb
415
- - lib/seahorse/client/plugins/param_conversion.rb
416
- - lib/seahorse/client/plugins/param_validation.rb
417
366
  - lib/seahorse/client/plugins/raise_response_errors.rb
418
367
  - lib/seahorse/client/plugins/response_target.rb
419
368
  - lib/seahorse/client/plugins/restful_bindings.rb
420
369
  - lib/seahorse/client/request.rb
421
370
  - lib/seahorse/client/request_context.rb
422
371
  - lib/seahorse/client/response.rb
423
- - lib/seahorse/client/xml/builder.rb
424
372
  - lib/seahorse/model/api.rb
425
373
  - lib/seahorse/model/operation.rb
426
- - lib/seahorse/model/shape_map.rb
427
374
  - lib/seahorse/model/shapes.rb
428
375
  - lib/seahorse/util.rb
429
376
  - lib/seahorse/version.rb
@@ -1,1246 +0,0 @@
1
- {
2
- "operations": {
3
- "AttachInstances": "<p>Attaches one or more EC2 instances to the specified Auto Scaling group.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/attach-instance-asg.html\">Attach Amazon EC2 Instances to Your Existing Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
4
- "CompleteLifecycleAction": "<p>Completes the lifecycle action for the associated token initiated under the given lifecycle hook with the specified result. </p> <p>This operation is a part of the basic sequence for adding a lifecycle hook to an Auto Scaling group:</p> <ol> <li>Create a notification target. A target can be either an Amazon SQS queue or an Amazon SNS topic.</li> <li>Create an IAM role. This role allows Auto Scaling to publish lifecycle notifications to the designated SQS queue or SNS topic.</li> <li>Create the lifecycle hook. You can create a hook that acts when instances launch or when instances terminate.</li> <li>If necessary, record the lifecycle action heartbeat to keep the instance in a pending state.</li> <li> <b>Complete the lifecycle action</b>.</li> </ol> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingPendingState.html\">Auto Scaling Pending State</a> and <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingTerminatingState.html\">Auto Scaling Terminating State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
5
- "CreateAutoScalingGroup": "<p>Creates an Auto Scaling group with the specified name and attributes.</p> <p>If you exceed your maximum limit of Auto Scaling groups, which by default is 20 per region, the call fails. For information about viewing and updating these limits, see <a>DescribeAccountLimits</a>.</p>",
6
- "CreateLaunchConfiguration": "<p>Creates a launch configuration.</p> <p>If you exceed your maximum limit of launch configurations, which by default is 100 per region, the call fails. For information about viewing and updating these limits, see <a>DescribeAccountLimits</a>.</p>",
7
- "CreateOrUpdateTags": "<p>Creates or updates tags for the specified Auto Scaling group.</p> <note> A tag's definition is composed of a resource ID, resource type, key and value, and the propagate flag. Value and the propagate flag are optional parameters. See the Request Parameters for more information. </note> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/ASTagging.html\">Add, Modify, or Remove Auto Scaling Group Tags</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
8
- "DeleteAutoScalingGroup": "<p>Deletes the specified Auto Scaling group.</p> <p>The group must have no instances and no scaling activities in progress.</p> <p>To remove all instances before calling <a>DeleteAutoScalingGroup</a>, you can call <a>UpdateAutoScalingGroup</a> to set the minimum and maximum size of the AutoScalingGroup to zero.</p>",
9
- "DeleteLaunchConfiguration": "<p>Deletes the specified launch configuration.</p> <p>The launch configuration must not be attached to an Auto Scaling group. When this call completes, the launch configuration is no longer available for use.</p>",
10
- "DeleteLifecycleHook": "<p>Deletes the specified lifecycle hook.</p> <p>If there are any outstanding lifecycle actions, they are completed first (<code>ABANDON</code> for launching instances, <code>CONTINUE</code> for terminating instances).</p>",
11
- "DeleteNotificationConfiguration": "<p>Deletes the specified notification.</p>",
12
- "DeletePolicy": "<p>Deletes the specified Auto Scaling policy.</p>",
13
- "DeleteScheduledAction": "<p>Deletes the specified scheduled action.</p>",
14
- "DeleteTags": "<p>Deletes the specified tags.</p>",
15
- "DescribeAccountLimits": "<p>Describes the current Auto Scaling resource limits for your AWS account.</p> <p>For information about requesting an increase in these limits, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html\">AWS Service Limits</a>.</p>",
16
- "DescribeAdjustmentTypes": "<p>Lists the policy adjustment types for use with <a>PutScalingPolicy</a>.</p>",
17
- "DescribeAutoScalingGroups": "<p>Describes one or more Auto Scaling groups. If a list of names is not provided, the call describes all Auto Scaling groups.</p> <p>You can specify a maximum number of items to be returned with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>",
18
- "DescribeAutoScalingInstances": "<p>Describes one or more Auto Scaling instances. If a list is not provided, the call describes all instances.</p> <p>You can describe up to a maximum of 50 instances with a single call. By default, a call returns up to 20 instances. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>",
19
- "DescribeAutoScalingNotificationTypes": "<p>Lists the notification types that are supported by Auto Scaling.</p>",
20
- "DescribeLaunchConfigurations": "<p>Describes one or more launch configurations. If you omit the list of names, then the call describes all launch configurations.</p> <p>You can specify a maximum number of items to be returned with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>",
21
- "DescribeLifecycleHookTypes": "<p>Describes the available types of lifecycle hooks.</p>",
22
- "DescribeLifecycleHooks": "<p>Describes the lifecycle hooks for the specified Auto Scaling group.</p>",
23
- "DescribeMetricCollectionTypes": "<p> Returns a list of metrics and a corresponding list of granularities for each metric. </p> <note> <p>The <code>GroupStandbyInstances</code> metric is not returned by default. You must explicitly request it when calling <a>EnableMetricsCollection</a>.</p> </note>",
24
- "DescribeNotificationConfigurations": "<p>Describes the notification actions associated with the specified Auto Scaling group.</p>",
25
- "DescribePolicies": "<p>Describes the policies for the specified Auto Scaling group.</p> <p>You can specify a maximum number of items to be returned with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>",
26
- "DescribeScalingActivities": "<p>Describes one or more scaling activities for the specified Auto Scaling group. If you omit the <code>ActivityIds</code>, the call returns all activities from the past six weeks. Activities are sorted by the start time. Activities still in progress appear first on the list.</p> <p>You can specify a maximum number of items to be returned with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>",
27
- "DescribeScalingProcessTypes": "<p>Returns scaling process types for use in the <a>ResumeProcesses</a> and <a>SuspendProcesses</a> actions.</p>",
28
- "DescribeScheduledActions": "<p>Lists the actions scheduled for your Auto Scaling group that haven't been executed. To list the actions that were already executed, use <a>DescribeScalingActivities</a>.</p>",
29
- "DescribeTags": "<p>Describes the specified tags.</p> <p>You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results.</p> <p>You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned.</p>",
30
- "DescribeTerminationPolicyTypes": "<p>Lists the termination policies supported by Auto Scaling.</p>",
31
- "DetachInstances": "<p>Removes one or more instances from the specified Auto Scaling group. After the instances are detached, you can manage them independently from the rest of the Auto Scaling group.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/detach-instance-asg.html\">Detach EC2 Instances from Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
32
- "DisableMetricsCollection": "<p>Disables monitoring of the specified metrics for the specified Auto Scaling group.</p>",
33
- "EnableMetricsCollection": "<p>Enables monitoring of the specified metrics for the specified Auto Scaling group.</p> <p>You can only enable metrics collection if <code>InstanceMonitoring</code> in the launch configuration for the group is set to <code>True</code>.</p>",
34
- "EnterStandby": "<p>Moves the specified instances into <code>Standby</code> mode.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingInServiceState.html\">Auto Scaling InService State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
35
- "ExecutePolicy": "<p>Executes the specified policy.</p>",
36
- "ExitStandby": "<p>Moves the specified instances out of <code>Standby</code> mode.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingInServiceState.html\">Auto Scaling InService State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
37
- "PutLifecycleHook": "<p>Creates or updates a lifecycle hook for the specified Auto Scaling Group.</p> <p>A lifecycle hook tells Auto Scaling that you want to perform an action on an instance that is not actively in service; for example, either when the instance launches or before the instance terminates.</p> <p>This operation is a part of the basic sequence for adding a lifecycle hook to an Auto Scaling group:</p> <ol> <li>Create a notification target. A target can be either an Amazon SQS queue or an Amazon SNS topic.</li> <li>Create an IAM role. This role allows Auto Scaling to publish lifecycle notifications to the designated SQS queue or SNS topic.</li> <li><b>Create the lifecycle hook. You can create a hook that acts when instances launch or when instances terminate.</b></li> <li>If necessary, record the lifecycle action heartbeat to keep the instance in a pending state.</li> <li>Complete the lifecycle action.</li> </ol> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingPendingState.html\">Auto Scaling Pending State</a> and <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingTerminatingState.html\">Auto Scaling Terminating State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
38
- "PutNotificationConfiguration": "<p> Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to this topic can have messages for events delivered to an endpoint such as a web server or email address. </p> <p>For more information see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/ASGettingNotifications.html\">Getting Notifications When Your Auto Scaling Group Changes</a> in the <i>Auto Scaling Developer Guide</i>.</p> <p>This configuration overwrites an existing configuration.</p>",
39
- "PutScalingPolicy": "<p>Creates or updates a policy for an Auto Scaling group. To update an existing policy, use the existing policy name and set the parameters you want to change. Any existing parameter not changed in an update to an existing policy is not changed in this update request.</p>",
40
- "PutScheduledUpdateGroupAction": "<p> Creates or updates a scheduled scaling action for an Auto Scaling group. When updating a scheduled scaling action, if you leave a parameter unspecified, the corresponding value remains unchanged in the affected Auto Scaling group. </p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/schedule_time.html\">Scheduled Scaling</a> in the <i>Auto Scaling Developer Guide</i>.</p> <note> <p>Auto Scaling supports the date and time expressed in \"YYYY-MM-DDThh:mm:ssZ\" format in UTC/GMT only.</p> </note>",
41
- "RecordLifecycleActionHeartbeat": "<p>Records a heartbeat for the lifecycle action associated with a specific token. This extends the timeout by the length of time defined by the <code>HeartbeatTimeout</code> parameter of <a>PutLifecycleHook</a>.</p> <p>This operation is a part of the basic sequence for adding a lifecycle hook to an Auto Scaling group:</p> <ol> <li>Create a notification target. A target can be either an Amazon SQS queue or an Amazon SNS topic.</li> <li>Create an IAM role. This role allows Auto Scaling to publish lifecycle notifications to the designated SQS queue or SNS topic.</li> <li>Create the lifecycle hook. You can create a hook that acts when instances launch or when instances terminate.</li> <li><b>If necessary, record the lifecycle action heartbeat to keep the instance in a pending state.</b></li> <li>Complete the lifecycle action.</li> </ol> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingPendingState.html\">Auto Scaling Pending State</a> and <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingTerminatingState.html\">Auto Scaling Terminating State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
42
- "ResumeProcesses": "<p>Resumes the specified suspended Auto Scaling processes for the specified Auto Scaling group. To resume specific processes, use the <code>ScalingProcesses</code> parameter. To resume all processes, omit the <code>ScalingProcesses</code> parameter. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/US_SuspendResume.html\">Suspend and Resume Auto Scaling Processes</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
43
- "SetDesiredCapacity": "<p>Sets the size of the specified <a>AutoScalingGroup</a>.</p>",
44
- "SetInstanceHealth": "<p>Sets the health status of the specified instance.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/healthcheck.html\">Health Checks</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
45
- "SuspendProcesses": "<p>Suspends the specified Auto Scaling processes for the specified Auto Scaling group. To suspend specific processes, use the <code>ScalingProcesses</code> parameter. To suspend all processes, omit the <code>ScalingProcesses</code> parameter.</p> <p>Note that if you suspend either the <code>Launch</code> or <code>Terminate</code> process types, it can prevent other process types from functioning properly.</p> <p>To resume processes that have been suspended, use <a>ResumeProcesses</a>.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/US_SuspendResume.html\">Suspend and Resume Auto Scaling Processes</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
46
- "TerminateInstanceInAutoScalingGroup": "<p>Terminates the specified instance and optionally adjusts the desired group size.</p> <note>This call simply makes a termination request. The instances is not terminated immediately.</note>",
47
- "UpdateAutoScalingGroup": "<p> Updates the configuration for the specified <a>AutoScalingGroup</a>. </p> <note> <p> To update an Auto Scaling group with a launch configuration that has the <code>InstanceMonitoring</code> flag set to <code>False</code>, you must first ensure that collection of group metrics is disabled. Otherwise, calls to <a>UpdateAutoScalingGroup</a> will fail. If you have previously enabled group metrics collection, you can disable collection of all group metrics by calling <a>DisableMetricsCollection</a>. </p> </note> <p> The new settings are registered upon the completion of this call. Any launch configuration settings take effect on any triggers after this call returns. Scaling activities that are currently in progress aren't affected. </p> <note> <ul> <li> <p>If a new value is specified for <i>MinSize</i> without specifying the value for <i>DesiredCapacity</i>, and if the new <i>MinSize</i> is larger than the current size of the Auto Scaling group, there will be an implicit call to <a>SetDesiredCapacity</a> to set the group to the new <i>MinSize</i>. </p> </li> <li> <p>If a new value is specified for <i>MaxSize</i> without specifying the value for <i>DesiredCapacity</i>, and the new <i>MaxSize</i> is smaller than the current size of the Auto Scaling group, there will be an implicit call to <a>SetDesiredCapacity</a> to set the group to the new <i>MaxSize</i>. </p> </li> <li> <p>All other optional parameters are left unchanged if not passed in the request.</p> </li> </ul> </note>"
48
- },
49
- "service": "<fullname>Auto Scaling</fullname> <p>Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined policies, schedules, and health checks. Use this service in conjunction with the Amazon CloudWatch and Elastic Load Balancing services.</p>",
50
- "shapes": {
51
- "Activities": {
52
- "base": null,
53
- "refs": {
54
- "ActivitiesType$Activities": "<p>The scaling activities.</p>",
55
- "DetachInstancesAnswer$Activities": "<p>The activities related to detaching the instances from the Auto Scaling group.</p>",
56
- "EnterStandbyAnswer$Activities": "<p>The activities related to moving instances into <code>Standby</code> mode.</p>",
57
- "ExitStandbyAnswer$Activities": "<p>The activities related to moving instances out of <code>Standby</code> mode.</p>"
58
- }
59
- },
60
- "ActivitiesType": {
61
- "base": null,
62
- "refs": {
63
- }
64
- },
65
- "Activity": {
66
- "base": "<p>Describes a long-running process that represents a change to your Auto Scaling group, such as changing its size. This can also be a process to replace an instance, or a process to perform any other long-running operations.</p>",
67
- "refs": {
68
- "Activities$member": null,
69
- "ActivityType$Activity": "<p>A scaling activity.</p>"
70
- }
71
- },
72
- "ActivityIds": {
73
- "base": null,
74
- "refs": {
75
- "DescribeScalingActivitiesType$ActivityIds": "<p> A list containing the activity IDs of the desired scaling activities. If this list is omitted, all activities are described. If an <code>AutoScalingGroupName</code> is provided, the results are limited to that group. The list of requested activities cannot contain more than 50 items. If unknown activities are requested, they are ignored with no error. </p>"
76
- }
77
- },
78
- "ActivityType": {
79
- "base": null,
80
- "refs": {
81
- }
82
- },
83
- "AdjustmentType": {
84
- "base": "<p>Describes a policy adjustment type.</p>",
85
- "refs": {
86
- "AdjustmentTypes$member": null
87
- }
88
- },
89
- "AdjustmentTypes": {
90
- "base": null,
91
- "refs": {
92
- "DescribeAdjustmentTypesAnswer$AdjustmentTypes": "<p>The policy adjustment types.</p>"
93
- }
94
- },
95
- "Alarm": {
96
- "base": "<p>Describes an alarm.</p>",
97
- "refs": {
98
- "Alarms$member": null
99
- }
100
- },
101
- "Alarms": {
102
- "base": null,
103
- "refs": {
104
- "ScalingPolicy$Alarms": "<p>The CloudWatch Alarms related to the policy.</p>"
105
- }
106
- },
107
- "AlreadyExistsFault": {
108
- "base": "<p>You already have an Auto Scaling group or launch configuration with this name.</p>",
109
- "refs": {
110
- }
111
- },
112
- "AsciiStringMaxLen255": {
113
- "base": null,
114
- "refs": {
115
- "CompleteLifecycleActionType$LifecycleHookName": "<p>The name of the lifecycle hook.</p>",
116
- "DeleteLifecycleHookType$LifecycleHookName": "<p>The name of the lifecycle hook.</p>",
117
- "LifecycleHook$LifecycleHookName": "<p>The name of the lifecycle hook.</p>",
118
- "LifecycleHookNames$member": null,
119
- "PutLifecycleHookType$LifecycleHookName": "<p>The name of the lifecycle hook.</p>",
120
- "RecordLifecycleActionHeartbeatType$LifecycleHookName": "<p>The name of the lifecycle hook.</p>"
121
- }
122
- },
123
- "AssociatePublicIpAddress": {
124
- "base": null,
125
- "refs": {
126
- "CreateLaunchConfigurationType$AssociatePublicIpAddress": "<p>Used for groups that launch instances into a virtual private cloud (VPC). Specifies whether to assign a public IP address to each instance. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/autoscalingsubnets.html\">Auto Scaling and Amazon VPC</a> in the <i>Auto Scaling Developer Guide</i>.</p> <note> <p>If you specify a value for this parameter, be sure to specify at least one subnet using the <i>VPCZoneIdentifier</i> parameter when you create your group. </p> </note> <p>Default: If the instance is launched into a default subnet, the default is <code>true</code>. If the instance is launched into a nondefault subnet, the default is <code>false</code>. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide//as-supported-platforms.html\">Supported Platforms</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
127
- "LaunchConfiguration$AssociatePublicIpAddress": "<p>Specifies whether the EC2 instances are associated with a public IP address (<code>true</code>) or not (<code>false</code>).</p>"
128
- }
129
- },
130
- "AttachInstancesQuery": {
131
- "base": null,
132
- "refs": {
133
- }
134
- },
135
- "AutoScalingGroup": {
136
- "base": "<p>Describes an Auto Scaling group.</p>",
137
- "refs": {
138
- "AutoScalingGroups$member": null
139
- }
140
- },
141
- "AutoScalingGroupDesiredCapacity": {
142
- "base": null,
143
- "refs": {
144
- "AutoScalingGroup$DesiredCapacity": "<p>The size of the group.</p>",
145
- "CreateAutoScalingGroupType$DesiredCapacity": "<p>The number of EC2 instances that should be running in the group. This value must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group.</p>",
146
- "PutScheduledUpdateGroupActionType$DesiredCapacity": "<p> The number of Amazon EC2 instances that should be running in the group. </p>",
147
- "ScheduledUpdateGroupAction$DesiredCapacity": "<p>The number of instances you prefer to maintain in the group.</p>",
148
- "SetDesiredCapacityType$DesiredCapacity": "<p>The number of EC2 instances that should be running in the Auto Scaling group.</p>",
149
- "UpdateAutoScalingGroupType$DesiredCapacity": "<p>The number of EC2 instances that should be running in the Auto Scaling group. This value must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group.</p>"
150
- }
151
- },
152
- "AutoScalingGroupMaxSize": {
153
- "base": null,
154
- "refs": {
155
- "AutoScalingGroup$MaxSize": "<p>The maximum size of the group.</p>",
156
- "CreateAutoScalingGroupType$MaxSize": "<p>The maximum size of the group.</p>",
157
- "PutScheduledUpdateGroupActionType$MaxSize": "<p> The maximum size for the Auto Scaling group. </p>",
158
- "ScheduledUpdateGroupAction$MaxSize": "<p>The maximum size of the group.</p>",
159
- "UpdateAutoScalingGroupType$MaxSize": "<p>The maximum size of the Auto Scaling group.</p>"
160
- }
161
- },
162
- "AutoScalingGroupMinSize": {
163
- "base": null,
164
- "refs": {
165
- "AutoScalingGroup$MinSize": "<p>The minimum size of the group.</p>",
166
- "CreateAutoScalingGroupType$MinSize": "<p>The minimum size of the group.</p>",
167
- "PutScheduledUpdateGroupActionType$MinSize": "<p> The minimum size for the new Auto Scaling group. </p>",
168
- "ScheduledUpdateGroupAction$MinSize": "<p>The minimum size of the group.</p>",
169
- "UpdateAutoScalingGroupType$MinSize": "<p>The minimum size of the Auto Scaling group.</p>"
170
- }
171
- },
172
- "AutoScalingGroupNames": {
173
- "base": null,
174
- "refs": {
175
- "AutoScalingGroupNamesType$AutoScalingGroupNames": "<p>The group names.</p>",
176
- "DescribeNotificationConfigurationsType$AutoScalingGroupNames": "<p>The name of the group.</p>"
177
- }
178
- },
179
- "AutoScalingGroupNamesType": {
180
- "base": null,
181
- "refs": {
182
- }
183
- },
184
- "AutoScalingGroups": {
185
- "base": null,
186
- "refs": {
187
- "AutoScalingGroupsType$AutoScalingGroups": "<p>The groups.</p>"
188
- }
189
- },
190
- "AutoScalingGroupsType": {
191
- "base": null,
192
- "refs": {
193
- }
194
- },
195
- "AutoScalingInstanceDetails": {
196
- "base": "<p>Describes an EC2 instance associated with an Auto Scaling group.</p>",
197
- "refs": {
198
- "AutoScalingInstances$member": null
199
- }
200
- },
201
- "AutoScalingInstances": {
202
- "base": null,
203
- "refs": {
204
- "AutoScalingInstancesType$AutoScalingInstances": "<p>The instances.</p>"
205
- }
206
- },
207
- "AutoScalingInstancesType": {
208
- "base": null,
209
- "refs": {
210
- }
211
- },
212
- "AutoScalingNotificationTypes": {
213
- "base": null,
214
- "refs": {
215
- "DescribeAutoScalingNotificationTypesAnswer$AutoScalingNotificationTypes": "<p>One or more of the following notification types:</p> <ul> <li><p><code>autoscaling:EC2_INSTANCE_LAUNCH</code></p></li> <li><p><code>autoscaling:EC2_INSTANCE_LAUNCH_ERROR</code></p></li> <li><p><code>autoscaling:EC2_INSTANCE_TERMINATE</code></p></li> <li><p><code>autoscaling:EC2_INSTANCE_TERMINATE_ERROR</code></p></li> <li><p><code>autoscaling:TEST_NOTIFICATION</code></p></li> </ul>",
216
- "DescribeLifecycleHookTypesAnswer$LifecycleHookTypes": "<p>One or more of the following notification types:</p> <ul> <li><p><code>autoscaling:EC2_INSTANCE_LAUNCHING</code></p></li> <li><p><code>autoscaling:EC2_INSTANCE_TERMINATING</code></p></li> </ul>",
217
- "PutNotificationConfigurationType$NotificationTypes": "<p>The type of event that will cause the notification to be sent. For details about notification types supported by Auto Scaling, see <a>DescribeAutoScalingNotificationTypes</a>.</p>"
218
- }
219
- },
220
- "AvailabilityZones": {
221
- "base": null,
222
- "refs": {
223
- "AutoScalingGroup$AvailabilityZones": "<p>One or more Availability Zones for the group.</p>",
224
- "CreateAutoScalingGroupType$AvailabilityZones": "<p>One or more Availability Zones for the group. This parameter is optional if you specify subnets using the <code>VPCZoneIdentifier</code> parameter.</p>",
225
- "UpdateAutoScalingGroupType$AvailabilityZones": "<p>One or more Availability Zones for the group.</p>"
226
- }
227
- },
228
- "BlockDeviceEbsDeleteOnTermination": {
229
- "base": null,
230
- "refs": {
231
- "Ebs$DeleteOnTermination": "<p>Indicates whether to delete the volume on instance termination.</p> <p>Default: <code>true</code></p>"
232
- }
233
- },
234
- "BlockDeviceEbsIops": {
235
- "base": null,
236
- "refs": {
237
- "Ebs$Iops": "<p>For Provisioned IOPS (SSD) volumes only. The number of I/O operations per second (IOPS) to provision for the volume.</p> <p>Valid values: Range is 100 to 4000.</p> <p>Default: None</p>"
238
- }
239
- },
240
- "BlockDeviceEbsVolumeSize": {
241
- "base": null,
242
- "refs": {
243
- "Ebs$VolumeSize": "<p>The volume size, in gigabytes.</p> <p>Valid values: If the volume type is <code>io1</code>, the minimum size of the volume is 10 GiB. If you specify <code>SnapshotId</code> and <code>VolumeSize</code>, <code>VolumeSize</code> must be equal to or larger than the size of the snapshot.</p> <p>Default: If you create a volume from a snapshot and you don't specify a volume size, the default is the size of the snapshot.</p> <p>Required: Required when the volume type is <code>io1</code>. </p>"
244
- }
245
- },
246
- "BlockDeviceEbsVolumeType": {
247
- "base": null,
248
- "refs": {
249
- "Ebs$VolumeType": "<p>The volume type.</p> <p>Valid values: <code>standard | io1 | gp2</code></p> <p>Default: <code>standard</code></p>"
250
- }
251
- },
252
- "BlockDeviceMapping": {
253
- "base": "<p>Describes a block device mapping.</p>",
254
- "refs": {
255
- "BlockDeviceMappings$member": null
256
- }
257
- },
258
- "BlockDeviceMappings": {
259
- "base": null,
260
- "refs": {
261
- "CreateLaunchConfigurationType$BlockDeviceMappings": "<p>One or more mappings that specify how block devices are exposed to the instance. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html\">Block Device Mapping</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
262
- "LaunchConfiguration$BlockDeviceMappings": "<p>A block device mapping that specifies how block devices are exposed to the instance. Each mapping is made up of a <code>virtualName</code> and a <code>deviceName</code>.</p>"
263
- }
264
- },
265
- "ClassicLinkVPCSecurityGroups": {
266
- "base": null,
267
- "refs": {
268
- "CreateLaunchConfigurationType$ClassicLinkVPCSecurityGroups": "<p>The IDs of one or more security groups for the VPC specified in <code>ClassicLinkVPCId</code>. This parameter is required if <code>ClassicLinkVPCId</code> is specified, and cannot be used otherwise. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html\">ClassicLink</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
269
- "LaunchConfiguration$ClassicLinkVPCSecurityGroups": "<p>The IDs of one or more security groups for the VPC specified in <code>ClassicLinkVPCId</code>. This parameter is required if <code>ClassicLinkVPCId</code> is specified, and cannot be used otherwise. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html\">ClassicLink</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>"
270
- }
271
- },
272
- "CompleteLifecycleActionAnswer": {
273
- "base": null,
274
- "refs": {
275
- }
276
- },
277
- "CompleteLifecycleActionType": {
278
- "base": null,
279
- "refs": {
280
- }
281
- },
282
- "Cooldown": {
283
- "base": null,
284
- "refs": {
285
- "AutoScalingGroup$DefaultCooldown": "<p>The number of seconds after a scaling activity completes before any further scaling activities can start.</p>",
286
- "CreateAutoScalingGroupType$DefaultCooldown": "<p>The amount of time, in seconds, after a scaling activity completes before another scaling activity can start.</p> <p>If <code>DefaultCooldown</code> is not specified, the default value is 300. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/Cooldown.html\">Understanding Auto Scaling Cooldowns</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
287
- "PutScalingPolicyType$Cooldown": "<p>The amount of time, in seconds, after a scaling activity completes and before the next scaling activity can start.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/Cooldown.html\">Understanding Auto Scaling Cooldowns</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
288
- "ScalingPolicy$Cooldown": "<p>The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.</p>",
289
- "UpdateAutoScalingGroupType$DefaultCooldown": "<p>The amount of time, in seconds, after a scaling activity completes before another scaling activity can start. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/Cooldown.html\">Understanding Auto Scaling Cooldowns</a>.</p>"
290
- }
291
- },
292
- "CreateAutoScalingGroupType": {
293
- "base": null,
294
- "refs": {
295
- }
296
- },
297
- "CreateLaunchConfigurationType": {
298
- "base": null,
299
- "refs": {
300
- }
301
- },
302
- "CreateOrUpdateTagsType": {
303
- "base": null,
304
- "refs": {
305
- }
306
- },
307
- "DeleteAutoScalingGroupType": {
308
- "base": null,
309
- "refs": {
310
- }
311
- },
312
- "DeleteLifecycleHookAnswer": {
313
- "base": null,
314
- "refs": {
315
- }
316
- },
317
- "DeleteLifecycleHookType": {
318
- "base": null,
319
- "refs": {
320
- }
321
- },
322
- "DeleteNotificationConfigurationType": {
323
- "base": null,
324
- "refs": {
325
- }
326
- },
327
- "DeletePolicyType": {
328
- "base": "<p></p>",
329
- "refs": {
330
- }
331
- },
332
- "DeleteScheduledActionType": {
333
- "base": null,
334
- "refs": {
335
- }
336
- },
337
- "DeleteTagsType": {
338
- "base": null,
339
- "refs": {
340
- }
341
- },
342
- "DescribeAccountLimitsAnswer": {
343
- "base": null,
344
- "refs": {
345
- }
346
- },
347
- "DescribeAdjustmentTypesAnswer": {
348
- "base": null,
349
- "refs": {
350
- }
351
- },
352
- "DescribeAutoScalingInstancesType": {
353
- "base": null,
354
- "refs": {
355
- }
356
- },
357
- "DescribeAutoScalingNotificationTypesAnswer": {
358
- "base": null,
359
- "refs": {
360
- }
361
- },
362
- "DescribeLifecycleHookTypesAnswer": {
363
- "base": null,
364
- "refs": {
365
- }
366
- },
367
- "DescribeLifecycleHooksAnswer": {
368
- "base": null,
369
- "refs": {
370
- }
371
- },
372
- "DescribeLifecycleHooksType": {
373
- "base": null,
374
- "refs": {
375
- }
376
- },
377
- "DescribeMetricCollectionTypesAnswer": {
378
- "base": null,
379
- "refs": {
380
- }
381
- },
382
- "DescribeNotificationConfigurationsAnswer": {
383
- "base": null,
384
- "refs": {
385
- }
386
- },
387
- "DescribeNotificationConfigurationsType": {
388
- "base": null,
389
- "refs": {
390
- }
391
- },
392
- "DescribePoliciesType": {
393
- "base": null,
394
- "refs": {
395
- }
396
- },
397
- "DescribeScalingActivitiesType": {
398
- "base": null,
399
- "refs": {
400
- }
401
- },
402
- "DescribeScheduledActionsType": {
403
- "base": null,
404
- "refs": {
405
- }
406
- },
407
- "DescribeTagsType": {
408
- "base": null,
409
- "refs": {
410
- }
411
- },
412
- "DescribeTerminationPolicyTypesAnswer": {
413
- "base": null,
414
- "refs": {
415
- }
416
- },
417
- "DetachInstancesAnswer": {
418
- "base": null,
419
- "refs": {
420
- }
421
- },
422
- "DetachInstancesQuery": {
423
- "base": null,
424
- "refs": {
425
- }
426
- },
427
- "DisableMetricsCollectionQuery": {
428
- "base": null,
429
- "refs": {
430
- }
431
- },
432
- "Ebs": {
433
- "base": "<p>Describes an Amazon EBS volume.</p>",
434
- "refs": {
435
- "BlockDeviceMapping$Ebs": "<p>The information about the Amazon EBS volume.</p>"
436
- }
437
- },
438
- "EbsOptimized": {
439
- "base": null,
440
- "refs": {
441
- "CreateLaunchConfigurationType$EbsOptimized": "<p>Indicates whether the instance is optimized for Amazon EBS I/O. By default, the instance is not optimized for EBS I/O. The optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization is not available with all instance types. Additional usage charges apply. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html\">Amazon EBS-Optimized Instances</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
442
- "LaunchConfiguration$EbsOptimized": "<p>Controls whether the instance is optimized for EBS I/O (<code>true</code>) or not (<code>false</code>).</p>"
443
- }
444
- },
445
- "EnableMetricsCollectionQuery": {
446
- "base": null,
447
- "refs": {
448
- }
449
- },
450
- "EnabledMetric": {
451
- "base": "<p>Describes an enabled metric.</p>",
452
- "refs": {
453
- "EnabledMetrics$member": null
454
- }
455
- },
456
- "EnabledMetrics": {
457
- "base": null,
458
- "refs": {
459
- "AutoScalingGroup$EnabledMetrics": "<p>The metrics enabled for this Auto Scaling group.</p>"
460
- }
461
- },
462
- "EnterStandbyAnswer": {
463
- "base": null,
464
- "refs": {
465
- }
466
- },
467
- "EnterStandbyQuery": {
468
- "base": null,
469
- "refs": {
470
- }
471
- },
472
- "ExecutePolicyType": {
473
- "base": null,
474
- "refs": {
475
- }
476
- },
477
- "ExitStandbyAnswer": {
478
- "base": null,
479
- "refs": {
480
- }
481
- },
482
- "ExitStandbyQuery": {
483
- "base": null,
484
- "refs": {
485
- }
486
- },
487
- "Filter": {
488
- "base": "<p>Describes a filter.</p>",
489
- "refs": {
490
- "Filters$member": null
491
- }
492
- },
493
- "Filters": {
494
- "base": null,
495
- "refs": {
496
- "DescribeTagsType$Filters": "<p>The value of the filter type used to identify the tags to be returned. For example, you can filter so that tags are returned according to Auto Scaling group, the key and value, or whether the new tag will be applied to instances launched after the tag is created (PropagateAtLaunch).</p>"
497
- }
498
- },
499
- "ForceDelete": {
500
- "base": null,
501
- "refs": {
502
- "DeleteAutoScalingGroupType$ForceDelete": "<p>Specifies that the group will be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This parameter also deletes any lifecycle actions associated with the group.</p>"
503
- }
504
- },
505
- "GlobalTimeout": {
506
- "base": null,
507
- "refs": {
508
- "LifecycleHook$GlobalTimeout": "<p>The maximum length of time an instance can remain in a <code>Pending:Wait</code> or <code>Terminating:Wait</code> state. Currently, this value is set at 48 hours.</p>"
509
- }
510
- },
511
- "HealthCheckGracePeriod": {
512
- "base": null,
513
- "refs": {
514
- "AutoScalingGroup$HealthCheckGracePeriod": "<p>The amount of time that Auto Scaling waits before checking an instance's health status. The grace period begins when an instance comes into service.</p>",
515
- "CreateAutoScalingGroupType$HealthCheckGracePeriod": "<p>The amount of time, in seconds, after an EC2 instance comes into service that Auto Scaling starts checking its health. During this time, any health check failures for the instance are ignored.</p> <p>This parameter is required if you are adding an <code>ELB</code> health check. Frequently, new instances need to warm up, briefly, before they can pass a health check. To provide ample warm-up time, set the health check grace period of the group to match the expected startup period of your application.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-add-elb-healthcheck.html\">Add an Elastic Load Balancing Health Check to Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
516
- "UpdateAutoScalingGroupType$HealthCheckGracePeriod": "<p>The amount of time, in second, that Auto Scaling waits before checking the health status of an instance. The grace period begins when the instance passes System Status and the Instance Status checks from Amazon EC2. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeInstanceStatus.html\">DescribeInstanceStatus</a>. </p>"
517
- }
518
- },
519
- "HeartbeatTimeout": {
520
- "base": null,
521
- "refs": {
522
- "LifecycleHook$HeartbeatTimeout": "<p>The amount of time that can elapse before the lifecycle hook times out. When the lifecycle hook times out, Auto Scaling performs the action defined in the <code>DefaultResult</code> parameter. You can prevent the lifecycle hook from timing out by calling <a>RecordLifecycleActionHeartbeat</a>.</p>",
523
- "PutLifecycleHookType$HeartbeatTimeout": "<p>Defines the amount of time, in seconds, that can elapse before the lifecycle hook times out. When the lifecycle hook times out, Auto Scaling performs the action defined in the <code>DefaultResult</code> parameter. You can prevent the lifecycle hook from timing out by calling <a>RecordLifecycleActionHeartbeat</a>. The default value for this parameter is 3600 seconds (1 hour).</p>"
524
- }
525
- },
526
- "HonorCooldown": {
527
- "base": null,
528
- "refs": {
529
- "ExecutePolicyType$HonorCooldown": "<p>Set to <code>True</code> if you want Auto Scaling to wait for the cooldown period associated with the Auto Scaling group to complete before executing the policy.</p> <p>Set to <code>False</code> if you want Auto Scaling to circumvent the cooldown period associated with the Auto Scaling group and execute the policy before the cooldown period ends.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/Cooldown.html\">Understanding Auto Scaling Cooldowns</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
530
- "SetDesiredCapacityType$HonorCooldown": "<p>By default, <code>SetDesiredCapacity</code> overrides any cooldown period associated with the Auto Scaling group. Specify <code>True</code> to make Auto Scaling to wait for the cool-down period associated with the Auto Scaling group to complete before initiating a scaling activity to set your Auto Scaling group to its new capacity.</p>"
531
- }
532
- },
533
- "Instance": {
534
- "base": "<p>Describes an EC2 instance.</p>",
535
- "refs": {
536
- "Instances$member": null
537
- }
538
- },
539
- "InstanceIds": {
540
- "base": null,
541
- "refs": {
542
- "AttachInstancesQuery$InstanceIds": "<p>One or more EC2 instance IDs. You must specify at least one ID.</p>",
543
- "DescribeAutoScalingInstancesType$InstanceIds": "<p>One or more Auto Scaling instances to describe, up to 50 instances. If you omit this parameter, all Auto Scaling instances are described. If you specify an ID that does not exist, it is ignored with no error.</p>",
544
- "DetachInstancesQuery$InstanceIds": "<p>One or more instance IDs.</p>",
545
- "EnterStandbyQuery$InstanceIds": "<p>One or more instances to move into <code>Standby</code> mode. You must specify at least one instance ID.</p>",
546
- "ExitStandbyQuery$InstanceIds": "<p>One or more instance IDs. You must specify at least one instance ID.</p>"
547
- }
548
- },
549
- "InstanceMonitoring": {
550
- "base": "<p>Describes whether instance monitoring is enabled.</p>",
551
- "refs": {
552
- "CreateLaunchConfigurationType$InstanceMonitoring": "<p>Enables detailed monitoring if it is disabled. Detailed monitoring is enabled by default.</p> <p>When detailed monitoring is enabled, Amazon Cloudwatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, by specifying <code>False</code>, Cloudwatch generates metrics every 5 minutes. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-instance-monitoring.html\">Monitor Your Auto Scaling Instances</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
553
- "LaunchConfiguration$InstanceMonitoring": "<p>Controls whether instances in this group are launched with detailed monitoring.</p>"
554
- }
555
- },
556
- "Instances": {
557
- "base": null,
558
- "refs": {
559
- "AutoScalingGroup$Instances": "<p>The EC2 instances associated with the group.</p>"
560
- }
561
- },
562
- "InvalidNextToken": {
563
- "base": "<p>The <code>NextToken</code> value is not valid.</p>",
564
- "refs": {
565
- }
566
- },
567
- "LaunchConfiguration": {
568
- "base": "<p>Describes a launch configuration.</p>",
569
- "refs": {
570
- "LaunchConfigurations$member": null
571
- }
572
- },
573
- "LaunchConfigurationNameType": {
574
- "base": null,
575
- "refs": {
576
- }
577
- },
578
- "LaunchConfigurationNames": {
579
- "base": null,
580
- "refs": {
581
- "LaunchConfigurationNamesType$LaunchConfigurationNames": "<p>The launch configuration names.</p>"
582
- }
583
- },
584
- "LaunchConfigurationNamesType": {
585
- "base": null,
586
- "refs": {
587
- }
588
- },
589
- "LaunchConfigurations": {
590
- "base": null,
591
- "refs": {
592
- "LaunchConfigurationsType$LaunchConfigurations": "<p>The launch configurations.</p>"
593
- }
594
- },
595
- "LaunchConfigurationsType": {
596
- "base": null,
597
- "refs": {
598
- }
599
- },
600
- "LifecycleActionResult": {
601
- "base": null,
602
- "refs": {
603
- "CompleteLifecycleActionType$LifecycleActionResult": "<p>The action for the group to take. This parameter can be either <code>CONTINUE</code> or <code>ABANDON</code>.</p>",
604
- "LifecycleHook$DefaultResult": "<p>Defines the action the Auto Scaling group should take when the lifecycle hook timeout elapses or if an unexpected failure occurs. The valid values are <code>CONTINUE</code> and <code>ABANDON</code>. The default value is <code>CONTINUE</code>.</p>",
605
- "PutLifecycleHookType$DefaultResult": "<p>Defines the action the Auto Scaling group should take when the lifecycle hook timeout elapses or if an unexpected failure occurs. The value for this parameter can be either <code>CONTINUE</code> or <code>ABANDON</code>. The default value for this parameter is <code>ABANDON</code>.</p>"
606
- }
607
- },
608
- "LifecycleActionToken": {
609
- "base": null,
610
- "refs": {
611
- "CompleteLifecycleActionType$LifecycleActionToken": "<p>A universally unique identifier (UUID) that identifies a specific lifecycle action associated with an instance. Auto Scaling sends this token to the notification target you specified when you created the lifecycle hook.</p>",
612
- "RecordLifecycleActionHeartbeatType$LifecycleActionToken": "<p>A token that uniquely identifies a specific lifecycle action associated with an instance. Auto Scaling sends this token to the notification target you specified when you created the lifecycle hook.</p>"
613
- }
614
- },
615
- "LifecycleHook": {
616
- "base": "<p>Describes a lifecycle hook, which tells Auto Scaling that you want to perform an action when an instance launches or terminates. When you have a lifecycle hook in place, the Auto Scaling group will either:</p> <ul> <li>Pause the instance after it launches, but before it is put into service</li> <li>Pause the instance as it terminates, but before it is fully terminated</li> </ul> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingPendingState.html\">Auto Scaling Pending State</a> and <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingTerminatingState.html\">Auto Scaling Terminating State</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
617
- "refs": {
618
- "LifecycleHooks$member": null
619
- }
620
- },
621
- "LifecycleHookNames": {
622
- "base": null,
623
- "refs": {
624
- "DescribeLifecycleHooksType$LifecycleHookNames": "<p>The names of one or more lifecycle hooks.</p>"
625
- }
626
- },
627
- "LifecycleHooks": {
628
- "base": null,
629
- "refs": {
630
- "DescribeLifecycleHooksAnswer$LifecycleHooks": "<p>The lifecycle hooks for the specified group.</p>"
631
- }
632
- },
633
- "LifecycleState": {
634
- "base": null,
635
- "refs": {
636
- "Instance$LifecycleState": "<p>A description of the current lifecycle state.</p> <note> <p>The <code>Quarantined</code> lifecycle state is not used.</p> </note>"
637
- }
638
- },
639
- "LifecycleTransition": {
640
- "base": null,
641
- "refs": {
642
- "LifecycleHook$LifecycleTransition": "<p>The state of the EC2 instance to which you want to attach the lifecycle hook. For a list of lifecycle hook types, see <a>DescribeLifecycleHooks</a>.</p>",
643
- "PutLifecycleHookType$LifecycleTransition": "<p>The Amazon EC2 instance state to which you want to attach the lifecycle hook. See <a>DescribeLifecycleHookTypes</a> for a list of available lifecycle hook types.</p> <note> <p>This parameter is required for new lifecycle hooks, but optional when updating existing hooks.</p> </note>"
644
- }
645
- },
646
- "LimitExceededFault": {
647
- "base": "<p>The limit for the number of Auto Scaling groups or launch configurations has already been reached.</p>",
648
- "refs": {
649
- }
650
- },
651
- "LoadBalancerNames": {
652
- "base": null,
653
- "refs": {
654
- "AutoScalingGroup$LoadBalancerNames": "<p>One or more load balancers associated with the group.</p>",
655
- "CreateAutoScalingGroupType$LoadBalancerNames": "<p>One or more load balancers.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/US_SetUpASLBApp.html\">Load Balance Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>"
656
- }
657
- },
658
- "MaxNumberOfAutoScalingGroups": {
659
- "base": null,
660
- "refs": {
661
- "DescribeAccountLimitsAnswer$MaxNumberOfAutoScalingGroups": "<p>The maximum number of groups allowed for your AWS account. The default limit is 20 per region.</p>"
662
- }
663
- },
664
- "MaxNumberOfLaunchConfigurations": {
665
- "base": null,
666
- "refs": {
667
- "DescribeAccountLimitsAnswer$MaxNumberOfLaunchConfigurations": "<p>The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.</p>"
668
- }
669
- },
670
- "MaxRecords": {
671
- "base": null,
672
- "refs": {
673
- "AutoScalingGroupNamesType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
674
- "DescribeAutoScalingInstancesType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
675
- "DescribeNotificationConfigurationsType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
676
- "DescribePoliciesType$MaxRecords": "<p>The maximum number of items to be returned with each call.</p>",
677
- "DescribeScalingActivitiesType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
678
- "DescribeScheduledActionsType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
679
- "DescribeTagsType$MaxRecords": "<p>The maximum number of items to return with this call.</p>",
680
- "LaunchConfigurationNamesType$MaxRecords": "<p>The maximum number of items to return with this call. The default is 100.</p>"
681
- }
682
- },
683
- "MetricCollectionType": {
684
- "base": "<p>Describes a metric.</p>",
685
- "refs": {
686
- "MetricCollectionTypes$member": null
687
- }
688
- },
689
- "MetricCollectionTypes": {
690
- "base": null,
691
- "refs": {
692
- "DescribeMetricCollectionTypesAnswer$Metrics": "<p>One or more of the following metrics:</p> <ul> <li><p>GroupMinSize</p></li> <li><p>GroupMaxSize</p></li> <li><p>GroupDesiredCapacity</p></li> <li><p>GroupInServiceInstances</p></li> <li><p>GroupPendingInstances</p></li> <li><p>GroupStandbyInstances</p></li> <li><p>GroupTerminatingInstances</p></li> <li><p>GroupTotalInstances</p></li> </ul> <note> <p>The <code>GroupStandbyInstances</code> metric is not returned by default. You must explicitly request it when calling <a>EnableMetricsCollection</a>.</p> </note>"
693
- }
694
- },
695
- "MetricGranularityType": {
696
- "base": "<p>Describes a granularity of a metric.</p>",
697
- "refs": {
698
- "MetricGranularityTypes$member": null
699
- }
700
- },
701
- "MetricGranularityTypes": {
702
- "base": null,
703
- "refs": {
704
- "DescribeMetricCollectionTypesAnswer$Granularities": "<p>The granularities for the listed metrics.</p>"
705
- }
706
- },
707
- "Metrics": {
708
- "base": null,
709
- "refs": {
710
- "DisableMetricsCollectionQuery$Metrics": "<p>One or more of the following metrics:</p> <ul> <li><p>GroupMinSize</p></li> <li><p>GroupMaxSize</p></li> <li><p>GroupDesiredCapacity</p></li> <li><p>GroupInServiceInstances</p></li> <li><p>GroupPendingInstances</p></li> <li><p>GroupStandbyInstances</p></li> <li><p>GroupTerminatingInstances</p></li> <li><p>GroupTotalInstances</p></li> </ul> <p>If you omit this parameter, all metrics are disabled.</p>",
711
- "EnableMetricsCollectionQuery$Metrics": "<p>One or more of the following metrics:</p> <ul> <li><p>GroupMinSize</p></li> <li><p>GroupMaxSize</p></li> <li><p>GroupDesiredCapacity</p></li> <li><p>GroupInServiceInstances</p></li> <li><p>GroupPendingInstances</p></li> <li><p>GroupStandbyInstances</p></li> <li><p>GroupTerminatingInstances</p></li> <li><p>GroupTotalInstances</p></li> </ul> <p>If you omit this parameter, all metrics are enabled.</p> <note> <p>The <code>GroupStandbyInstances</code> metric is not returned by default. You must explicitly request it when calling <a>EnableMetricsCollection</a>.</p> </note>"
712
- }
713
- },
714
- "MinAdjustmentStep": {
715
- "base": null,
716
- "refs": {
717
- "PutScalingPolicyType$MinAdjustmentStep": "<p>Used with <code>AdjustmentType</code> with the value <code>PercentChangeInCapacity</code>, the scaling policy changes the <code>DesiredCapacity</code> of the Auto Scaling group by at least the number of instances specified in the value. </p> <p>You will get a <code>ValidationError</code> if you use <code>MinAdjustmentStep</code> on a policy with an <code>AdjustmentType</code> other than <code>PercentChangeInCapacity</code>.</p>",
718
- "ScalingPolicy$MinAdjustmentStep": "<p>Changes the <code>DesiredCapacity</code> of the Auto Scaling group by at least the specified number of instances.</p>"
719
- }
720
- },
721
- "MonitoringEnabled": {
722
- "base": null,
723
- "refs": {
724
- "InstanceMonitoring$Enabled": "<p>If <code>True</code>, instance monitoring is enabled.</p>"
725
- }
726
- },
727
- "NoDevice": {
728
- "base": null,
729
- "refs": {
730
- "BlockDeviceMapping$NoDevice": "<p>Suppresses a device mapping.</p> <note>If <code>NoDevice</code> is set to <code>true</code> for the root device, the instance might fail the EC2 health check. Auto Scaling launches a replacement instance if the instance fails the health check.</note>"
731
- }
732
- },
733
- "NotificationConfiguration": {
734
- "base": "<p>Describes a notification.</p>",
735
- "refs": {
736
- "NotificationConfigurations$member": null
737
- }
738
- },
739
- "NotificationConfigurations": {
740
- "base": null,
741
- "refs": {
742
- "DescribeNotificationConfigurationsAnswer$NotificationConfigurations": "<p>The notification configurations.</p>"
743
- }
744
- },
745
- "PoliciesType": {
746
- "base": null,
747
- "refs": {
748
- }
749
- },
750
- "PolicyARNType": {
751
- "base": null,
752
- "refs": {
753
- }
754
- },
755
- "PolicyIncrement": {
756
- "base": null,
757
- "refs": {
758
- "PutScalingPolicyType$ScalingAdjustment": "<p>The number of instances by which to scale. <code>AdjustmentType</code> determines the interpretation of this number (e.g., as an absolute number or as a percentage of the existing Auto Scaling group size). A positive increment adds to the current capacity and a negative value removes from the current capacity.</p>",
759
- "ScalingPolicy$ScalingAdjustment": "<p>The number associated with the specified adjustment type. A positive value adds to the current capacity and a negative value removes from the current capacity.</p>"
760
- }
761
- },
762
- "PolicyNames": {
763
- "base": null,
764
- "refs": {
765
- "DescribePoliciesType$PolicyNames": "<p>One or more policy names or policy ARNs to be described. If you omit this list, all policy names are described. If an group name is provided, the results are limited to that group. This list is limited to 50 items. If you specify an unknown policy name, it is ignored with no error.</p>"
766
- }
767
- },
768
- "ProcessNames": {
769
- "base": null,
770
- "refs": {
771
- "ScalingProcessQuery$ScalingProcesses": "<p>One or more of the following processes:</p> <ul> <li>Launch</li> <li>Terminate</li> <li>HealthCheck</li> <li>ReplaceUnhealthy</li> <li>AZRebalance</li> <li>AlarmNotification</li> <li>ScheduledActions</li> <li>AddToLoadBalancer</li> </ul>"
772
- }
773
- },
774
- "ProcessType": {
775
- "base": "<p>Describes a process type.</p> <p>There are two primary Auto Scaling process types--<code>Launch</code> and <code>Terminate</code>. The <code>Launch</code> process creates a new EC2 instance for an Auto Scaling group, and the <code>Terminate</code> process removes an existing EC2 instance. The remaining Auto Scaling process types relate to specific Auto Scaling features:</p> <ul> <li>AddToLoadBalancer</li> <li>AlarmNotification</li> <li>AZRebalance</li> <li>HealthCheck</li> <li>ReplaceUnhealthy</li> <li>ScheduledActions</li> </ul> <important> If you suspend <code>Launch</code> or <code>Terminate</code>, all other process types are affected to varying degrees. The following descriptions discuss how each process type is affected by a suspension of <code>Launch</code> or <code>Terminate</code>. </important> <p>The <code>AddToLoadBalancer</code> process type adds instances to the load balancer when the instances are launched. If you suspend this process, Auto Scaling will launch the instances but will not add them to the load balancer. If you resume the <code>AddToLoadBalancer</code> process, Auto Scaling will also resume adding new instances to the load balancer when they are launched. However, Auto Scaling will not add running instances that were launched while the process was suspended; those instances must be added manually using the <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/APIReference/API_RegisterInstancesWithLoadBalancer.html\"> RegisterInstancesWithLoadBalancer</a> call.</p> <p>The <code>AlarmNotification</code> process type accepts notifications from Amazon CloudWatch alarms that are associated with the Auto Scaling group. If you suspend the <code>AlarmNotification</code> process type, Auto Scaling will not automatically execute scaling policies that would be triggered by alarms.</p> <p>Although the <code>AlarmNotification</code> process type is not directly affected by a suspension of <code>Launch</code> or <code>Terminate</code>, alarm notifications are often used to signal that a change in the size of the Auto Scaling group is warranted. If you suspend <code>Launch</code> or <code>Terminate</code>, Auto Scaling might not be able to implement the alarm's associated policy.</p> <p>The <code>AZRebalance</code> process type seeks to maintain a balanced number of instances across Availability Zones within a Region. If you remove an Availability Zone from your Auto Scaling group or an Availability Zone otherwise becomes unhealthy or unavailable, Auto Scaling launches new instances in an unaffected Availability Zone before terminating the unhealthy or unavailable instances. When the unhealthy Availability Zone returns to a healthy state, Auto Scaling automatically redistributes the application instances evenly across all of the designated Availability Zones.</p> <important> <p>If you call <a>SuspendProcesses</a> on the <code>launch</code> process type, the <code>AZRebalance</code> process will neither launch new instances nor terminate existing instances. This is because the <code>AZRebalance</code> process terminates existing instances only after launching the replacement instances.</p> <p>If you call <a>SuspendProcesses</a> on the <code>terminate</code> process type, the <code>AZRebalance</code> process can cause your Auto Scaling group to grow up to ten percent larger than the maximum size. This is because Auto Scaling allows groups to temporarily grow larger than the maximum size during rebalancing activities. If Auto Scaling cannot terminate instances, your Auto Scaling group could remain up to ten percent larger than the maximum size until you resume the <code>terminate</code> process type.</p> </important> <p>The <code>HealthCheck</code> process type checks the health of the instances. Auto Scaling marks an instance as unhealthy if Amazon EC2 or Elastic Load Balancing informs Auto Scaling that the instance is unhealthy. The <code>HealthCheck</code> process can override the health status of an instance that you set with <a>SetInstanceHealth</a>.</p> <p>The <code>ReplaceUnhealthy</code> process type terminates instances that are marked as unhealthy and subsequently creates new instances to replace them. This process calls both of the primary process types--first <code>Terminate</code> and then <code>Launch</code>.</p> <important> <p>The <code>HealthCheck</code> process type works in conjunction with the <code>ReplaceUnhealthly</code> process type to provide health check functionality. If you suspend either <code>Launch</code> or <code>Terminate</code>, the <code>ReplaceUnhealthy</code> process type will not function properly.</p> </important> <p>The <code>ScheduledActions</code> process type performs scheduled actions that you create with <a>PutScheduledUpdateGroupAction</a>. Scheduled actions often involve launching new instances or terminating existing instances. If you suspend either <code>Launch</code> or <code>Terminate</code>, your scheduled actions might not function as expected.</p>",
776
- "refs": {
777
- "Processes$member": null
778
- }
779
- },
780
- "Processes": {
781
- "base": null,
782
- "refs": {
783
- "ProcessesType$Processes": "<p>The names of the process types.</p>"
784
- }
785
- },
786
- "ProcessesType": {
787
- "base": null,
788
- "refs": {
789
- }
790
- },
791
- "Progress": {
792
- "base": null,
793
- "refs": {
794
- "Activity$Progress": "<p>A value between 0 and 100 that indicates the progress of the activity.</p>"
795
- }
796
- },
797
- "PropagateAtLaunch": {
798
- "base": null,
799
- "refs": {
800
- "Tag$PropagateAtLaunch": "<p>Specifies whether the tag is applied to instances launched after the tag is created. The same behavior applies to updates: If you change a tag, it is applied to all instances launched after you made the change.</p>",
801
- "TagDescription$PropagateAtLaunch": "<p>Specifies whether the tag is applied to instances launched after the tag is created. The same behavior applies to updates: If you change a tag, it is applied to all instances launched after you made the change.</p>"
802
- }
803
- },
804
- "PutLifecycleHookAnswer": {
805
- "base": null,
806
- "refs": {
807
- }
808
- },
809
- "PutLifecycleHookType": {
810
- "base": null,
811
- "refs": {
812
- }
813
- },
814
- "PutNotificationConfigurationType": {
815
- "base": null,
816
- "refs": {
817
- }
818
- },
819
- "PutScalingPolicyType": {
820
- "base": null,
821
- "refs": {
822
- }
823
- },
824
- "PutScheduledUpdateGroupActionType": {
825
- "base": null,
826
- "refs": {
827
- }
828
- },
829
- "RecordLifecycleActionHeartbeatAnswer": {
830
- "base": null,
831
- "refs": {
832
- }
833
- },
834
- "RecordLifecycleActionHeartbeatType": {
835
- "base": null,
836
- "refs": {
837
- }
838
- },
839
- "ResourceInUseFault": {
840
- "base": "<p>The Auto Scaling group or launch configuration can't be deleted because it is in use.</p>",
841
- "refs": {
842
- }
843
- },
844
- "ResourceName": {
845
- "base": null,
846
- "refs": {
847
- "Alarm$AlarmARN": "<p>The Amazon Resource Name (ARN) of the alarm.</p>",
848
- "AttachInstancesQuery$AutoScalingGroupName": "<p>The name of the group.</p>",
849
- "AutoScalingGroup$AutoScalingGroupARN": "<p>The Amazon Resource Name (ARN) of the group.</p>",
850
- "AutoScalingGroupNames$member": null,
851
- "CompleteLifecycleActionType$AutoScalingGroupName": "<p>The name of the group for the lifecycle hook.</p>",
852
- "CreateAutoScalingGroupType$LaunchConfigurationName": "<p>The name of the launch configuration. Alternatively, use the <code>InstanceId</code> parameter to specify an EC2 instance instead of a launch configuration.</p>",
853
- "DeleteAutoScalingGroupType$AutoScalingGroupName": "<p>The name of the group to delete.</p>",
854
- "DeleteLifecycleHookType$AutoScalingGroupName": "<p>The name of the Auto Scaling group for the lifecycle hook.</p>",
855
- "DeleteNotificationConfigurationType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
856
- "DeleteNotificationConfigurationType$TopicARN": "<p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic.</p>",
857
- "DeletePolicyType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
858
- "DeletePolicyType$PolicyName": "<p>The name or Amazon Resource Name (ARN) of the policy.</p>",
859
- "DeleteScheduledActionType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
860
- "DeleteScheduledActionType$ScheduledActionName": "<p>The name of the action to delete.</p>",
861
- "DescribeLifecycleHooksType$AutoScalingGroupName": "<p>The name of the group.</p>",
862
- "DescribePoliciesType$AutoScalingGroupName": "<p>The name of the group.</p>",
863
- "DescribeScalingActivitiesType$AutoScalingGroupName": "<p>The name of the group.</p>",
864
- "DescribeScheduledActionsType$AutoScalingGroupName": "<p>The name of the group.</p>",
865
- "DetachInstancesQuery$AutoScalingGroupName": "<p>The name of the group.</p>",
866
- "DisableMetricsCollectionQuery$AutoScalingGroupName": "<p>The name or Amazon Resource Name (ARN) of the group.</p>",
867
- "EnableMetricsCollectionQuery$AutoScalingGroupName": "<p>The name or ARN of the Auto Scaling group.</p>",
868
- "EnterStandbyQuery$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
869
- "ExecutePolicyType$AutoScalingGroupName": "<p>The name or Amazon Resource Name (ARN) of the Auto Scaling group.</p>",
870
- "ExecutePolicyType$PolicyName": "<p>The name or ARN of the policy.</p>",
871
- "ExitStandbyQuery$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
872
- "LaunchConfiguration$LaunchConfigurationARN": "<p>The Amazon Resource Name (ARN) of the launch configuration.</p>",
873
- "LaunchConfigurationNameType$LaunchConfigurationName": "<p>The name of the launch configuration.</p>",
874
- "LaunchConfigurationNames$member": null,
875
- "LifecycleHook$AutoScalingGroupName": "<p>The name of the Auto Scaling group for the lifecycle hook.</p>",
876
- "LifecycleHook$NotificationTargetARN": "<p>The ARN of the notification target that Auto Scaling uses to notify you when an instance is in the transition state for the lifecycle hook. This ARN target can be either an SQS queue or an SNS topic. The notification message sent to the target includes the following:</p> <ul> <li>Lifecycle action token</li> <li>User account ID</li> <li>Name of the Auto Scaling group</li> <li>Lifecycle hook name</li> <li>EC2 instance ID</li> <li>Lifecycle transition</li> <li>Notification metadata</li> </ul>",
877
- "LifecycleHook$RoleARN": "<p>The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target.</p>",
878
- "NotificationConfiguration$AutoScalingGroupName": "<p>The name of the group.</p>",
879
- "NotificationConfiguration$TopicARN": "<p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic.</p>",
880
- "PolicyARNType$PolicyARN": "<p>The Amazon Resource Name (ARN) of the policy.</p>",
881
- "PolicyNames$member": null,
882
- "PutLifecycleHookType$AutoScalingGroupName": "<p>The name of the Auto Scaling group to which you want to assign the lifecycle hook.</p>",
883
- "PutLifecycleHookType$RoleARN": "<p>The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target.</p> <note> <p>This parameter is required for new lifecycle hooks, but optional when updating existing hooks.</p> </note>",
884
- "PutLifecycleHookType$NotificationTargetARN": "<p>The ARN of the notification target that Auto Scaling will use to notify you when an instance is in the transition state for the lifecycle hook. This ARN target can be either an SQS queue or an SNS topic. </p> <note> <p>This parameter is required for new lifecycle hooks, but optional when updating existing hooks.</p> </note> <p>The notification message sent to the target will include:</p> <ul> <li> <b>LifecycleActionToken</b>. The Lifecycle action token.</li> <li> <b>AccountId</b>. The user account ID.</li> <li> <b>AutoScalingGroupName</b>. The name of the Auto Scaling group.</li> <li> <b>LifecycleHookName</b>. The lifecycle hook name.</li> <li> <b>EC2InstanceId</b>. The EC2 instance ID.</li> <li> <b>LifecycleTransition</b>. The lifecycle transition.</li> <li> <b>NotificationMetadata</b>. The notification metadata.</li> </ul> <p>This operation uses the JSON format when sending notifications to an Amazon SQS queue, and an email key/value pair format when sending notifications to an Amazon SNS topic.</p> <p>When you call this operation, a test message is sent to the notification target. This test message contains an additional key/value pair: <code>Event:autoscaling:TEST_NOTIFICATION</code>.</p>",
885
- "PutNotificationConfigurationType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
886
- "PutNotificationConfigurationType$TopicARN": "<p> The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic. </p>",
887
- "PutScalingPolicyType$AutoScalingGroupName": "<p>The name or ARN of the group.</p>",
888
- "PutScheduledUpdateGroupActionType$AutoScalingGroupName": "<p>The name or Amazon Resource Name (ARN) of the Auto Scaling group.</p>",
889
- "RecordLifecycleActionHeartbeatType$AutoScalingGroupName": "<p>The name of the Auto Scaling group for the hook.</p>",
890
- "ScalingPolicy$PolicyARN": "<p>The Amazon Resource Name (ARN) of the policy.</p>",
891
- "ScalingProcessQuery$AutoScalingGroupName": "<p>The name or Amazon Resource Name (ARN) of the Auto Scaling group.</p>",
892
- "ScheduledActionNames$member": null,
893
- "ScheduledUpdateGroupAction$ScheduledActionARN": "<p>The Amazon Resource Name (ARN) of the scheduled action.</p>",
894
- "SetDesiredCapacityType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
895
- "UpdateAutoScalingGroupType$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
896
- "UpdateAutoScalingGroupType$LaunchConfigurationName": "<p>The name of the launch configuration.</p>"
897
- }
898
- },
899
- "ScalingActivityInProgressFault": {
900
- "base": "<p>The Auto Scaling group can't be deleted because there are scaling activities in progress.</p>",
901
- "refs": {
902
- }
903
- },
904
- "ScalingActivityStatusCode": {
905
- "base": null,
906
- "refs": {
907
- "Activity$StatusCode": "<p>The current status of the activity.</p>"
908
- }
909
- },
910
- "ScalingPolicies": {
911
- "base": null,
912
- "refs": {
913
- "PoliciesType$ScalingPolicies": "<p>The scaling policies.</p>"
914
- }
915
- },
916
- "ScalingPolicy": {
917
- "base": "<p>Describes a scaling policy.</p>",
918
- "refs": {
919
- "ScalingPolicies$member": null
920
- }
921
- },
922
- "ScalingProcessQuery": {
923
- "base": null,
924
- "refs": {
925
- }
926
- },
927
- "ScheduledActionNames": {
928
- "base": null,
929
- "refs": {
930
- "DescribeScheduledActionsType$ScheduledActionNames": "<p>Describes one or more scheduled actions. If you omit this list, the call describes all scheduled actions. If you specify an unknown scheduled action it is ignored with no error.</p> <p>You can describe up to a maximum of 50 instances with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token in the <code>NextToken</code> parameter.</p>"
931
- }
932
- },
933
- "ScheduledActionsType": {
934
- "base": null,
935
- "refs": {
936
- }
937
- },
938
- "ScheduledUpdateGroupAction": {
939
- "base": "<p>Describes a scheduled update to an Auto Scaling group.</p>",
940
- "refs": {
941
- "ScheduledUpdateGroupActions$member": null
942
- }
943
- },
944
- "ScheduledUpdateGroupActions": {
945
- "base": null,
946
- "refs": {
947
- "ScheduledActionsType$ScheduledUpdateGroupActions": "<p>The scheduled actions.</p>"
948
- }
949
- },
950
- "SecurityGroups": {
951
- "base": null,
952
- "refs": {
953
- "CreateLaunchConfigurationType$SecurityGroups": "<p>One or more security groups with which to associate the instances.</p> <p>If your instances are launched in EC2-Classic, you can either specify security group names or the security group IDs. For more information about security groups for EC2-Classic, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html\">Amazon EC2 Security Groups</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p> <p>If your instances are launched in a VPC, specify security group IDs. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html\">Security Groups for Your VPC</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>",
954
- "LaunchConfiguration$SecurityGroups": "<p>The security groups to associate with the EC2 instances.</p>"
955
- }
956
- },
957
- "SetDesiredCapacityType": {
958
- "base": null,
959
- "refs": {
960
- }
961
- },
962
- "SetInstanceHealthQuery": {
963
- "base": null,
964
- "refs": {
965
- }
966
- },
967
- "ShouldDecrementDesiredCapacity": {
968
- "base": null,
969
- "refs": {
970
- "DetachInstancesQuery$ShouldDecrementDesiredCapacity": "<p>If <code>True</code>, the Auto Scaling group decrements the desired capacity value by the number of instances detached.</p>",
971
- "EnterStandbyQuery$ShouldDecrementDesiredCapacity": "<p>Specifies whether the instances moved to <code>Standby</code> mode count as part of the Auto Scaling group's desired capacity. If set, the desired capacity for the Auto Scaling group decrements by the number of instances moved to <code>Standby</code> mode.</p>",
972
- "TerminateInstanceInAutoScalingGroupType$ShouldDecrementDesiredCapacity": "<p>If <code>true</code>, terminating this instance also decrements the size of the Auto Scaling group.</p>"
973
- }
974
- },
975
- "ShouldRespectGracePeriod": {
976
- "base": null,
977
- "refs": {
978
- "SetInstanceHealthQuery$ShouldRespectGracePeriod": "<p>If the Auto Scaling group of the specified instance has a <code>HealthCheckGracePeriod</code> specified for the group, by default, this call will respect the grace period. Set this to <code>False</code>, if you do not want the call to respect the grace period associated with the group.</p> <p>For more information, see the <code>HealthCheckGracePeriod</code> parameter description for <a>CreateAutoScalingGroup</a>.</p>"
979
- }
980
- },
981
- "SpotPrice": {
982
- "base": null,
983
- "refs": {
984
- "CreateLaunchConfigurationType$SpotPrice": "<p>The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot market price. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/US-SpotInstances.html\">Launch Spot Instances in Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
985
- "LaunchConfiguration$SpotPrice": "<p>The price to bid when launching Spot Instances.</p>"
986
- }
987
- },
988
- "SuspendedProcess": {
989
- "base": "<p>Describes an Auto Scaling process that has been suspended. For more information, see <a>ProcessType</a>.</p>",
990
- "refs": {
991
- "SuspendedProcesses$member": null
992
- }
993
- },
994
- "SuspendedProcesses": {
995
- "base": null,
996
- "refs": {
997
- "AutoScalingGroup$SuspendedProcesses": "<p>The suspended processes associated with the group.</p>"
998
- }
999
- },
1000
- "Tag": {
1001
- "base": "<p>Describes a tag applied to an Auto Scaling group.</p>",
1002
- "refs": {
1003
- "Tags$member": null
1004
- }
1005
- },
1006
- "TagDescription": {
1007
- "base": "<p>Describes a tag applied to an Auto Scaling group.</p>",
1008
- "refs": {
1009
- "TagDescriptionList$member": null
1010
- }
1011
- },
1012
- "TagDescriptionList": {
1013
- "base": null,
1014
- "refs": {
1015
- "AutoScalingGroup$Tags": "<p>The tags for the Auto Scaling group.</p>",
1016
- "TagsType$Tags": "<p>The tags.</p>"
1017
- }
1018
- },
1019
- "TagKey": {
1020
- "base": null,
1021
- "refs": {
1022
- "Tag$Key": "<p>The tag key.</p>",
1023
- "TagDescription$Key": "<p>The tag key.</p>"
1024
- }
1025
- },
1026
- "TagValue": {
1027
- "base": null,
1028
- "refs": {
1029
- "Tag$Value": "<p>The tag value.</p>",
1030
- "TagDescription$Value": "<p>The tag value.</p>"
1031
- }
1032
- },
1033
- "Tags": {
1034
- "base": null,
1035
- "refs": {
1036
- "CreateAutoScalingGroupType$Tags": "<p>The tag to be created or updated. Each tag should be defined by its resource type, resource ID, key, value, and a propagate flag. Valid values: key=<i>value</i>, value=<i>value</i>, propagate=<i>true</i> or <i>false</i>. Value and propagate are optional parameters.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/ASTagging.html\">Add, Modify, or Remove Auto Scaling Group Tags</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1037
- "CreateOrUpdateTagsType$Tags": "<p> The tag to be created or updated. Each tag should be defined by its resource type, resource ID, key, value, and a propagate flag. The resource type and resource ID identify the type and name of resource for which the tag is created. Currently, <code>auto-scaling-group</code> is the only supported resource type. The valid value for the resource ID is <i>groupname</i>. </p> <p>The <code>PropagateAtLaunch</code> flag defines whether the new tag will be applied to instances launched by the group. Valid values are <code>true</code> or <code>false</code>. However, instances that are already running will not get the new or updated tag. Likewise, when you modify a tag, the updated version will be applied only to new instances launched by the group after the change. Running instances that had the previous version of the tag will continue to have the older tag. </p> <p>When you create a tag and a tag of the same name already exists, the operation overwrites the previous tag definition, but you will not get an error message. </p>",
1038
- "DeleteTagsType$Tags": "<p>Each tag should be defined by its resource type, resource ID, key, value, and a propagate flag. Valid values are: Resource type = <i>auto-scaling-group</i>, Resource ID = <i>AutoScalingGroupName</i>, key=<i>value</i>, value=<i>value</i>, propagate=<i>true</i> or <i>false</i>.</p>"
1039
- }
1040
- },
1041
- "TagsType": {
1042
- "base": null,
1043
- "refs": {
1044
- }
1045
- },
1046
- "TerminateInstanceInAutoScalingGroupType": {
1047
- "base": null,
1048
- "refs": {
1049
- }
1050
- },
1051
- "TerminationPolicies": {
1052
- "base": null,
1053
- "refs": {
1054
- "AutoScalingGroup$TerminationPolicies": "<p>The termination policies for this Auto Scaling group.</p>",
1055
- "CreateAutoScalingGroupType$TerminationPolicies": "<p>One or more termination policies used to select the instance to terminate. These policies are executed in the order that they are listed.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/us-termination-policy.html\">Choosing a Termination Policy for Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1056
- "DescribeTerminationPolicyTypesAnswer$TerminationPolicyTypes": "<p>The Termination policies supported by Auto Scaling. They are: <code>OldestInstance</code>, <code>OldestLaunchConfiguration</code>, <code>NewestInstance</code>, <code>ClosestToNextInstanceHour</code>, and <code>Default</code>.</p>",
1057
- "UpdateAutoScalingGroupType$TerminationPolicies": "<p> A standalone termination policy or a list of termination policies used to select the instance to terminate. The policies are executed in the order that they are listed. </p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/us-termination-policy.html\">Choosing a Termination Policy for Your Auto Scaling Group</a> in the <i>Auto Scaling Developer Guide</i>.</p>"
1058
- }
1059
- },
1060
- "TimestampType": {
1061
- "base": null,
1062
- "refs": {
1063
- "Activity$StartTime": "<p>The start time of this activity.</p>",
1064
- "Activity$EndTime": "<p>The end time of this activity.</p>",
1065
- "AutoScalingGroup$CreatedTime": "<p>The date and time the group was created.</p>",
1066
- "DescribeScheduledActionsType$StartTime": "<p>The earliest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.</p>",
1067
- "DescribeScheduledActionsType$EndTime": "<p>The latest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.</p>",
1068
- "LaunchConfiguration$CreatedTime": "<p>The creation date and time for the launch configuration.</p>",
1069
- "PutScheduledUpdateGroupActionType$Time": "<p><code>Time</code> is deprecated.</p> <p>The time for this action to start. <code>Time</code> is an alias for <code>StartTime</code> and can be specified instead of <code>StartTime</code>, or vice versa. If both <code>Time</code> and <code>StartTime</code> are specified, their values should be identical. Otherwise, <code>PutScheduledUpdateGroupAction</code> will return an error.</p>",
1070
- "PutScheduledUpdateGroupActionType$StartTime": "<p>The time for this action to start, as in <code>--start-time 2010-06-01T00:00:00Z</code>.</p> <p>If you try to schedule your action in the past, Auto Scaling returns an error message. </p> <p>When <code>StartTime</code> and <code>EndTime</code> are specified with <code>Recurrence</code>, they form the boundaries of when the recurring action will start and stop.</p>",
1071
- "PutScheduledUpdateGroupActionType$EndTime": "<p>The time for this action to end.</p>",
1072
- "ScheduledUpdateGroupAction$Time": "<p><code>Time</code> is deprecated.</p> <p>The time that the action is scheduled to begin. <code>Time</code> is an alias for <code>StartTime</code>.</p>",
1073
- "ScheduledUpdateGroupAction$StartTime": "<p>The time that the action is scheduled to begin. This value can be up to one month in the future.</p> <p>When <code>StartTime</code> and <code>EndTime</code> are specified with <code>Recurrence</code>, they form the boundaries of when the recurring action will start and stop.</p>",
1074
- "ScheduledUpdateGroupAction$EndTime": "<p>The time that the action is scheduled to end. This value can be up to one month in the future.</p>"
1075
- }
1076
- },
1077
- "UpdateAutoScalingGroupType": {
1078
- "base": null,
1079
- "refs": {
1080
- }
1081
- },
1082
- "Values": {
1083
- "base": null,
1084
- "refs": {
1085
- "Filter$Values": "<p>The value of the filter.</p>"
1086
- }
1087
- },
1088
- "XmlString": {
1089
- "base": null,
1090
- "refs": {
1091
- "ActivitiesType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1092
- "Activity$ActivityId": "<p>The ID of the activity.</p>",
1093
- "Activity$Description": "<p>A friendly, more verbose description of the scaling activity.</p>",
1094
- "Activity$Details": "<p>The details about the scaling activity.</p>",
1095
- "ActivityIds$member": null,
1096
- "AutoScalingGroupNamesType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1097
- "AutoScalingGroupsType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1098
- "AutoScalingInstancesType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1099
- "DescribeAutoScalingInstancesType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1100
- "DescribeNotificationConfigurationsAnswer$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1101
- "DescribeNotificationConfigurationsType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1102
- "DescribePoliciesType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1103
- "DescribeScalingActivitiesType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1104
- "DescribeScheduledActionsType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1105
- "DescribeTagsType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1106
- "Filter$Name": "<p>The name of the filter. The valid values are: <code>\"auto-scaling-group\"</code>, <code>\"key\"</code>, <code>\"value\"</code>, and <code>\"propagate-at-launch\"</code>.</p>",
1107
- "LaunchConfigurationNamesType$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
1108
- "LaunchConfigurationsType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1109
- "PoliciesType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1110
- "ScheduledActionsType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1111
- "SecurityGroups$member": null,
1112
- "Tag$ResourceId": "<p>The name of the group.</p>",
1113
- "Tag$ResourceType": "<p>The kind of resource to which the tag is applied. Currently, Auto Scaling supports the <code>auto-scaling-group</code> resource type.</p>",
1114
- "TagDescription$ResourceId": "<p>The name of the group.</p>",
1115
- "TagDescription$ResourceType": "<p>The kind of resource to which the tag is applied. Currently, Auto Scaling supports the <code>auto-scaling-group</code> resource type.</p>",
1116
- "TagsType$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
1117
- "Values$member": null
1118
- }
1119
- },
1120
- "XmlStringMaxLen1023": {
1121
- "base": null,
1122
- "refs": {
1123
- "Activity$Cause": "<p>The reason the activity was begun.</p>",
1124
- "LifecycleHook$NotificationMetadata": "<p>Additional information that you want to include any time Auto Scaling sends a message to the notification target.</p>",
1125
- "PutLifecycleHookType$NotificationMetadata": "<p>Contains additional information that you want to include any time Auto Scaling sends a message to the notification target.</p>"
1126
- }
1127
- },
1128
- "XmlStringMaxLen16": {
1129
- "base": null,
1130
- "refs": {
1131
- "AutoScalingInstanceDetails$InstanceId": "<p>The ID of the instance.</p>",
1132
- "CreateAutoScalingGroupType$InstanceId": "<p>The ID of the EC2 instance used to create a launch configuration for the group. Alternatively, use the <code>LaunchConfigurationName</code> parameter to specify a launch configuration instead of an EC2 instance.</p> <p>When you specify an ID of an instance, Auto Scaling creates a new launch configuration and associates it with the group. This launch configuration derives its attributes from the specified instance, with the exception of the block device mapping.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/create-asg-from-instance.html\">Create an Auto Scaling Group Using an EC2 Instance ID</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1133
- "CreateLaunchConfigurationType$InstanceId": "<p>The ID of the EC2 instance to use to create the launch configuration.</p> <p>The new launch configuration derives attributes from the instance, with the exception of the block device mapping.</p> <p>To create a launch configuration with a block device mapping or override any other instance attributes, specify them as part of the same request.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/create-lc-with-instanceID.html\">Create a Launch Configuration Using an EC2 Instance</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1134
- "Instance$InstanceId": "<p>The ID of the instance.</p>",
1135
- "InstanceIds$member": null,
1136
- "SetInstanceHealthQuery$InstanceId": "<p>The ID of the EC2 instance.</p>",
1137
- "TerminateInstanceInAutoScalingGroupType$InstanceId": "<p>The ID of the EC2 instance.</p>"
1138
- }
1139
- },
1140
- "XmlStringMaxLen1600": {
1141
- "base": null,
1142
- "refs": {
1143
- "CreateLaunchConfigurationType$IamInstanceProfile": "<p>The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.</p> <p>Amazon EC2 instances launched with an IAM role will automatically have AWS security credentials available. You can use IAM roles with Auto Scaling to automatically enable applications running on your Amazon EC2 instances to securely access other AWS resources. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/us-iam-role.html\">Launch Auto Scaling Instances with an IAM Role</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1144
- "LaunchConfiguration$IamInstanceProfile": "<p>The name or Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.</p>",
1145
- "TerminationPolicies$member": null
1146
- }
1147
- },
1148
- "XmlStringMaxLen255": {
1149
- "base": null,
1150
- "refs": {
1151
- "Activity$AutoScalingGroupName": "<p>The name of the Auto Scaling group.</p>",
1152
- "Activity$StatusMessage": "<p>A friendly, more verbose description of the activity status.</p>",
1153
- "AdjustmentType$AdjustmentType": "<p>The policy adjustment type. The valid values are <code>ChangeInCapacity</code>, <code>ExactCapacity</code>, and <code>PercentChangeInCapacity</code>.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-scale-based-on-demand.html\">Dynamic Scaling</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1154
- "Alarm$AlarmName": "<p>The name of the alarm.</p>",
1155
- "AlreadyExistsFault$message": null,
1156
- "AutoScalingGroup$AutoScalingGroupName": "<p>The name of the group.</p>",
1157
- "AutoScalingGroup$LaunchConfigurationName": "<p>The name of the associated launch configuration.</p>",
1158
- "AutoScalingGroup$PlacementGroup": "<p>The name of the placement group into which you'll launch your instances, if any. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html\">Placement Groups</a>.</p>",
1159
- "AutoScalingGroup$VPCZoneIdentifier": "<p>One or more subnet IDs, if applicable, separated by commas.</p> <p>If you specify <code>VPCZoneIdentifier</code> and <code>AvailabilityZones</code>, ensure that the Availability Zones of the subnets match the values for <code>AvailabilityZones</code>.</p>",
1160
- "AutoScalingGroup$Status": "<p>The current state of the Auto Scaling group when a <a>DeleteAutoScalingGroup</a> action is in progress.</p>",
1161
- "AutoScalingInstanceDetails$AutoScalingGroupName": "<p>The name of the Auto Scaling group associated with the instance.</p>",
1162
- "AutoScalingInstanceDetails$AvailabilityZone": "<p>The Availability Zone for the instance.</p>",
1163
- "AutoScalingInstanceDetails$LaunchConfigurationName": "<p>The launch configuration associated with the instance.</p>",
1164
- "AutoScalingNotificationTypes$member": null,
1165
- "AvailabilityZones$member": null,
1166
- "BlockDeviceMapping$VirtualName": "<p>The name of the virtual device, <code>ephemeral0</code> to <code>ephemeral3</code>.</p>",
1167
- "BlockDeviceMapping$DeviceName": "<p>The device name exposed to the EC2 instance (for example, <code>/dev/sdh</code> or <code>xvdh</code>).</p>",
1168
- "ClassicLinkVPCSecurityGroups$member": null,
1169
- "CreateAutoScalingGroupType$AutoScalingGroupName": "<p>The name of the group. This name must be unique within the scope of your AWS account.</p>",
1170
- "CreateAutoScalingGroupType$PlacementGroup": "<p>The name of the placement group into which you'll launch your instances, if any. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html\">Placement Groups</a>.</p>",
1171
- "CreateAutoScalingGroupType$VPCZoneIdentifier": "<p>A comma-separated list of subnet identifiers for your virtual private cloud (VPC).</p> <p>If you specify subnets and Availability Zones with this call, ensure that the subnets' Availability Zones match the Availability Zones specified.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/autoscalingsubnets.html\">Auto Scaling and Amazon VPC</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1172
- "CreateLaunchConfigurationType$LaunchConfigurationName": "<p>The name of the launch configuration. This name must be unique within the scope of your AWS account.</p>",
1173
- "CreateLaunchConfigurationType$ImageId": "<p>The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html\">Finding an AMI</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
1174
- "CreateLaunchConfigurationType$KeyName": "<p>The name of the key pair. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html\">Amazon EC2 Key Pairs</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
1175
- "CreateLaunchConfigurationType$ClassicLinkVPCId": "<p>The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. This parameter can only be used if you are launching EC2-Classic instances. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html\">ClassicLink</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
1176
- "CreateLaunchConfigurationType$InstanceType": "<p> The instance type of the Amazon EC2 instance. For information about available Amazon EC2 instance types, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes\"> Available Instance Types</a> in the <i>Amazon Elastic Cloud Compute User Guide.</i> </p>",
1177
- "CreateLaunchConfigurationType$KernelId": "<p> The ID of the kernel associated with the Amazon EC2 AMI. </p>",
1178
- "CreateLaunchConfigurationType$RamdiskId": "<p> The ID of the RAM disk associated with the Amazon EC2 AMI. </p>",
1179
- "Ebs$SnapshotId": "<p>The ID of the snapshot.</p>",
1180
- "EnableMetricsCollectionQuery$Granularity": "<p>The granularity to associate with the metrics to collect. Currently, the only valid value is \"1Minute\".</p>",
1181
- "EnabledMetric$Metric": "<p>The name of the metric.</p>",
1182
- "EnabledMetric$Granularity": "<p>The granularity of the metric.</p>",
1183
- "Instance$AvailabilityZone": "<p>The Availability Zone associated with this instance.</p>",
1184
- "Instance$LaunchConfigurationName": "<p>The launch configuration associated with the instance.</p>",
1185
- "InvalidNextToken$message": null,
1186
- "LaunchConfiguration$LaunchConfigurationName": "<p>The name of the launch configuration.</p>",
1187
- "LaunchConfiguration$ImageId": "<p>The ID of the Amazon Machine Image (AMI).</p>",
1188
- "LaunchConfiguration$KeyName": "<p>The name of the key pair.</p>",
1189
- "LaunchConfiguration$ClassicLinkVPCId": "<p>The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. This parameter can only be used if you are launching EC2-Classic instances. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html\">ClassicLink</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
1190
- "LaunchConfiguration$InstanceType": "<p>The instance type for the EC2 instances.</p>",
1191
- "LaunchConfiguration$KernelId": "<p>The ID of the kernel associated with the AMI.</p>",
1192
- "LaunchConfiguration$RamdiskId": "<p>The ID of the RAM disk associated with the AMI.</p>",
1193
- "LimitExceededFault$message": null,
1194
- "LoadBalancerNames$member": null,
1195
- "MetricCollectionType$Metric": "<p>The metric.</p>",
1196
- "MetricGranularityType$Granularity": "<p>The granularity.</p>",
1197
- "Metrics$member": null,
1198
- "NotificationConfiguration$NotificationType": "<p>The types of events for an action to start.</p>",
1199
- "ProcessNames$member": null,
1200
- "ProcessType$ProcessName": "<p>The name of the process.</p>",
1201
- "PutScalingPolicyType$PolicyName": "<p>The name of the policy.</p>",
1202
- "PutScalingPolicyType$AdjustmentType": "<p>Specifies whether the <code>ScalingAdjustment</code> is an absolute number or a percentage of the current capacity. Valid values are <code>ChangeInCapacity</code>, <code>ExactCapacity</code>, and <code>PercentChangeInCapacity</code>.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/as-scale-based-on-demand.html\">Dynamic Scaling</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1203
- "PutScheduledUpdateGroupActionType$ScheduledActionName": "<p> The name of this scaling action. </p>",
1204
- "PutScheduledUpdateGroupActionType$Recurrence": "<p> The time when recurring future actions will start. Start time is specified by the user following the Unix cron syntax format. For information about cron syntax, go to <a href=\"http://en.wikipedia.org/wiki/Cron\">Wikipedia, The Free Encyclopedia</a>.</p> <p>When <code>StartTime</code> and <code>EndTime</code> are specified with <code>Recurrence</code>, they form the boundaries of when the recurring action will start and stop.</p>",
1205
- "ResourceInUseFault$message": null,
1206
- "ScalingActivityInProgressFault$message": null,
1207
- "ScalingPolicy$AutoScalingGroupName": "<p>The name of the Auto Scaling group associated with this scaling policy.</p>",
1208
- "ScalingPolicy$PolicyName": "<p>The name of the scaling policy.</p>",
1209
- "ScalingPolicy$AdjustmentType": "<p>Specifies whether the <code>ScalingAdjustment</code> is an absolute number or a percentage of the current capacity. Valid values are <code>ChangeInCapacity</code>, <code>ExactCapacity</code>, and <code>PercentChangeInCapacity</code>.</p>",
1210
- "ScheduledUpdateGroupAction$AutoScalingGroupName": "<p>The name of the group.</p>",
1211
- "ScheduledUpdateGroupAction$ScheduledActionName": "<p>The name of the scheduled action.</p>",
1212
- "ScheduledUpdateGroupAction$Recurrence": "<p>The regular schedule that an action occurs.</p>",
1213
- "SuspendedProcess$ProcessName": "<p>The name of the suspended process.</p>",
1214
- "SuspendedProcess$SuspensionReason": "<p>The reason that the process was suspended.</p>",
1215
- "UpdateAutoScalingGroupType$PlacementGroup": "<p>The name of the placement group into which you'll launch your instances, if any. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html\">Placement Groups</a>.</p>",
1216
- "UpdateAutoScalingGroupType$VPCZoneIdentifier": "<p> The subnet identifier for the Amazon VPC connection, if applicable. You can specify several subnets in a comma-separated list. </p> <p> When you specify <code>VPCZoneIdentifier</code> with <code>AvailabilityZones</code>, ensure that the subnets' Availability Zones match the values you specify for <code>AvailabilityZones</code>. </p> <p> For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/autoscalingsubnets.html\">Auto Scaling and Amazon VPC</a> in the <i>Auto Scaling Developer Guide</i>. </p>"
1217
- }
1218
- },
1219
- "XmlStringMaxLen32": {
1220
- "base": null,
1221
- "refs": {
1222
- "AutoScalingGroup$HealthCheckType": "<p>The service of interest for the health status check, which can be either <code>EC2</code> for Amazon EC2 or <code>ELB</code> for Elastic Load Balancing.</p>",
1223
- "AutoScalingInstanceDetails$LifecycleState": "<p>The lifecycle state for the instance. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AutoScalingGroupLifecycle.html#AutoScalingStates\">Auto Scaling Instance States</a> in the <i>Auto Scaling Developer Guide</i>.</p>",
1224
- "AutoScalingInstanceDetails$HealthStatus": "<p>The health status of this instance. \"Healthy\" means that the instance is healthy and should remain in service. \"Unhealthy\" means that the instance is unhealthy and Auto Scaling should terminate and replace it.</p>",
1225
- "CreateAutoScalingGroupType$HealthCheckType": "<p>The service to use for the health checks. The valid values are <code>EC2</code> and <code>ELB</code>.</p> <p>By default, health checks use Amazon EC2 instance status checks to determine the health of an instance. For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/healthcheck.html\">Health Checks</a>.</p>",
1226
- "Instance$HealthStatus": "<p>The health status of the instance.</p>",
1227
- "SetInstanceHealthQuery$HealthStatus": "<p> The health status of the instance. Set to <code>Healthy</code> if you want the instance to remain in service. Set to <code>Unhealthy</code> if you want the instance to be out of service. Auto Scaling will terminate and replace the unhealthy instance. </p>",
1228
- "UpdateAutoScalingGroupType$HealthCheckType": "<p> The type of health check for the instances in the Auto Scaling group. The health check type can either be <code>EC2</code> for Amazon EC2 or <code>ELB</code> for Elastic Load Balancing. </p>"
1229
- }
1230
- },
1231
- "XmlStringMaxLen64": {
1232
- "base": null,
1233
- "refs": {
1234
- "CreateLaunchConfigurationType$PlacementTenancy": "<p>The tenancy of the instance. An instance with a tenancy of <code>dedicated</code> runs on single-tenant hardware and can only be launched in a VPC.</p> <p>You must set the value of this parameter to <code>dedicated</code> if want to launch Dedicated Instances in a shared tenancy VPC (VPC with instance placement tenancy attribute set to <code>default</code>).</p> <p>If you specify a value for this parameter, be sure to specify at least one VPC subnet using the <i>VPCZoneIdentifier</i> parameter when you create your group. </p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/autoscalingsubnets.html\">Auto Scaling and Amazon VPC</a> in the <i>Auto Scaling Developer Guide</i>. </p> <p>Valid values: <code>default</code> | <code>dedicated</code></p>",
1235
- "LaunchConfiguration$PlacementTenancy": "<p>The tenancy of the instance, either <code>default</code> or <code>dedicated</code>. An instance with <code>dedicated</code> tenancy runs in an isolated, single-tenant hardware and can only be launched in a VPC.</p>"
1236
- }
1237
- },
1238
- "XmlStringUserData": {
1239
- "base": null,
1240
- "refs": {
1241
- "CreateLaunchConfigurationType$UserData": "<p>The user data to make available to the launched EC2 instances. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html\">Instance Metadata and User Data</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p> <note>At this time, launch configurations don't support compressed (zipped) user data files.</note>",
1242
- "LaunchConfiguration$UserData": "<p>The user data available to the EC2 instances.</p>"
1243
- }
1244
- }
1245
- }
1246
- }