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,1592 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AssignInstance": "<p>Assign a registered instance to a layer.</p> <ul> <li>You can assign registered on-premises instances to any layer type.</li> <li>You can assign registered Amazon EC2 instances only to custom layers.</li> <li>You cannot use this action with instances that were created with AWS OpsWorks.</li> </ul> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
5
- "AssignVolume": "<p>Assigns one of the stack's registered Amazon EBS volumes to a specified instance. The volume must first be registered with the stack by calling <a>RegisterVolume</a>. After you register the volume, you must call <a>UpdateVolume</a> to specify a mount point before calling <code>AssignVolume</code>. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
6
- "AssociateElasticIp": "<p>Associates one of the stack's registered Elastic IP addresses with a specified instance. The address must first be registered with the stack by calling <a>RegisterElasticIp</a>. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
7
- "AttachElasticLoadBalancer": "<p>Attaches an Elastic Load Balancing load balancer to a specified layer. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/load-balancer-elb.html\">Elastic Load Balancing</a>.</p> <note> <p>You must create the Elastic Load Balancing instance separately, by using the Elastic Load Balancing console, API, or CLI. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/Welcome.html\"> Elastic Load Balancing Developer Guide</a>.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
8
- "CloneStack": "<p>Creates a clone of a specified stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-cloning.html\">Clone a Stack</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
9
- "CreateApp": "<p>Creates an app for a specified stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html\">Creating Apps</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
10
- "CreateDeployment": "<p>Runs deployment or stack commands. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-deploying.html\">Deploying Apps</a> and <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-commands.html\">Run Stack Commands</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Deploy or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
11
- "CreateInstance": "<p>Creates an instance in a specified stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html\">Adding an Instance to a Layer</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
12
- "CreateLayer": "<p>Creates a layer. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-create.html\">How to Create a Layer</a>.</p> <note> <p>You should use <b>CreateLayer</b> for noncustom layer types such as PHP App Server only if the stack does not have an existing layer of that type. A stack can have at most one instance of each noncustom layer; if you attempt to create a second instance, <b>CreateLayer</b> fails. A stack can have an arbitrary number of custom layers, so you can call <b>CreateLayer</b> as many times as you like for that layer type.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
13
- "CreateStack": "<p>Creates a new stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-edit.html\">Create a New Stack</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
14
- "CreateUserProfile": "<p>Creates a new user profile.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
15
- "DeleteApp": "<p>Deletes a specified app.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
16
- "DeleteInstance": "<p>Deletes a specified instance, which terminates the associated Amazon EC2 instance. You must stop an instance before you can delete it.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-delete.html\">Deleting Instances</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
17
- "DeleteLayer": "<p>Deletes a specified layer. You must first stop and then delete all associated instances or unassign registered instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-delete.html\">How to Delete a Layer</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
18
- "DeleteStack": "<p>Deletes a specified stack. You must first delete all instances, layers, and apps or deregister registered instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-shutting.html\">Shut Down a Stack</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
19
- "DeleteUserProfile": "<p>Deletes a user profile.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
20
- "DeregisterElasticIp": "<p>Deregisters a specified Elastic IP address. The address can then be registered by another stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
21
- "DeregisterInstance": "<p>Deregister a registered Amazon EC2 or on-premises instance. This action removes the instance from the stack and returns it to your control. This action can not be used with instances that were created with AWS OpsWorks.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
22
- "DeregisterRdsDbInstance": "<p>Deregisters an Amazon RDS instance.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
23
- "DeregisterVolume": "<p>Deregisters an Amazon EBS volume. The volume can then be registered by another stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
24
- "DescribeApps": "<p>Requests a description of a specified set of apps.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
25
- "DescribeCommands": "<p>Describes the results of specified commands.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
26
- "DescribeDeployments": "<p>Requests a description of a specified set of deployments.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
27
- "DescribeElasticIps": "<p>Describes <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP addresses</a>.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
28
- "DescribeElasticLoadBalancers": "<p>Describes a stack's Elastic Load Balancing instances.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
29
- "DescribeInstances": "<p>Requests a description of a set of instances.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
30
- "DescribeLayers": "<p>Requests a description of one or more layers in a specified stack.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
31
- "DescribeLoadBasedAutoScaling": "<p>Describes load-based auto scaling configurations for specified layers.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
32
- "DescribeMyUserProfile": "<p>Describes a user's SSH information.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have self-management enabled or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
33
- "DescribePermissions": "<p>Describes the permissions for a specified stack.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
34
- "DescribeRaidArrays": "<p>Describe an instance's RAID arrays.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
35
- "DescribeRdsDbInstances": "<p>Describes Amazon RDS instances.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
36
- "DescribeServiceErrors": "<p>Describes AWS OpsWorks service errors.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
37
- "DescribeStackProvisioningParameters": "<p>Requests a description of a stack's provisioning parameters.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
38
- "DescribeStackSummary": "<p>Describes the number of layers and apps in a specified stack, and the number of instances in each state, such as <code>running_setup</code> or <code>online</code>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
39
- "DescribeStacks": "<p>Requests a description of one or more stacks.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
40
- "DescribeTimeBasedAutoScaling": "<p>Describes time-based auto scaling configurations for specified instances.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
41
- "DescribeUserProfiles": "<p>Describe specified users.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
42
- "DescribeVolumes": "<p>Describes an instance's Amazon EBS volumes.</p> <note> <p>You must specify at least one of the parameters.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
43
- "DetachElasticLoadBalancer": "<p>Detaches a specified Elastic Load Balancing instance from its layer.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
44
- "DisassociateElasticIp": "<p>Disassociates an Elastic IP address from its instance. The address remains registered with the stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
45
- "GetHostnameSuggestion": "<p>Gets a generated host name for the specified layer, based on the current host name theme.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
46
- "GrantAccess": "<note>This API can be used only with Windows stacks.</note> <p>Grants RDP access to a Windows instance for a specified time period.</p>",
47
- "RebootInstance": "<p>Reboots a specified instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-starting.html\">Starting, Stopping, and Rebooting Instances</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
48
- "RegisterElasticIp": "<p>Registers an Elastic IP address with a specified stack. An address can be registered with only one stack at a time. If the address is already registered, you must first deregister it by calling <a>DeregisterElasticIp</a>. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
49
- "RegisterInstance": "<p>Registers instances with a specified stack that were created outside of AWS OpsWorks.</p> <note>We do not recommend using this action to register instances. The complete registration operation has two primary steps, installing the AWS OpsWorks agent on the instance and registering the instance with the stack. <code>RegisterInstance</code> handles only the second step. You should instead use the AWS CLI <code>register</code> command, which performs the entire registration operation.</note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
50
- "RegisterRdsDbInstance": "<p>Registers an Amazon RDS instance with a stack.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
51
- "RegisterVolume": "<p>Registers an Amazon EBS volume with a specified stack. A volume can be registered with only one stack at a time. If the volume is already registered, you must first deregister it by calling <a>DeregisterVolume</a>. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
52
- "SetLoadBasedAutoScaling": "<p>Specify the load-based auto scaling configuration for a specified layer. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-autoscaling.html\">Managing Load with Time-based and Load-based Instances</a>.</p> <note> <p>To use load-based auto scaling, you must create a set of load-based auto scaling instances. Load-based auto scaling operates only on the instances from that set, so you must ensure that you have created enough instances to handle the maximum anticipated load.</p> </note> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
53
- "SetPermission": "<p>Specifies a user's permissions. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingsecurity.html\">Security and Permissions</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
54
- "SetTimeBasedAutoScaling": "<p>Specify the time-based auto scaling configuration for a specified instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-autoscaling.html\">Managing Load with Time-based and Load-based Instances</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
55
- "StartInstance": "<p>Starts a specified instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-starting.html\">Starting, Stopping, and Rebooting Instances</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
56
- "StartStack": "<p>Starts a stack's instances. </p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
57
- "StopInstance": "<p>Stops a specified instance. When you stop a standard instance, the data disappears and must be reinstalled when you restart the instance. You can stop an Amazon EBS-backed instance without losing data. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-starting.html\">Starting, Stopping, and Rebooting Instances</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
58
- "StopStack": "<p>Stops a specified stack.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
59
- "UnassignInstance": "<p>Unassigns a registered instance from all of it's layers. The instance remains in the stack as an unassigned instance and can be assigned to another layer, as needed. You cannot use this action with instances that were created with AWS OpsWorks.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
60
- "UnassignVolume": "<p>Unassigns an assigned Amazon EBS volume. The volume remains registered with the stack. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
61
- "UpdateApp": "<p>Updates a specified app.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Deploy or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
62
- "UpdateElasticIp": "<p>Updates a registered Elastic IP address's name. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
63
- "UpdateInstance": "<p>Updates a specified instance.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
64
- "UpdateLayer": "<p>Updates a specified layer.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
65
- "UpdateMyUserProfile": "<p>Updates a user's SSH public key.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have self-management enabled or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
66
- "UpdateRdsDbInstance": "<p>Updates an Amazon RDS instance.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
67
- "UpdateStack": "<p>Updates a specified stack.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
68
- "UpdateUserProfile": "<p>Updates a specified user profile.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>",
69
- "UpdateVolume": "<p>Updates an Amazon EBS volume's name or mount point. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/resources.html\">Resource Management</a>.</p> <p><b>Required Permissions</b>: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a>.</p>"
70
- },
71
- "service": "<fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks API Reference</i>. This guide provides descriptions, syntax, and usage examples about AWS OpsWorks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href=\"http://aws.amazon.com/opsworks/\">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html\">AWS CLI</a> </li> <li> <a href=\"http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/opsworks/AWSOpsWorksClient.html\">AWS SDK for Java</a> </li> <li> <a href=\"http://docs.aws.amazon.com/sdkfornet/latest/apidocs/html/N_Amazon_OpsWorks.htm\">AWS SDK for .NET</a> </li> <li> <a href=\"http://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.OpsWorks.OpsWorksClient.html\">AWS SDK for PHP 2</a> </li> <li> <a href=\"http://docs.aws.amazon.com/AWSRubySDK/latest/AWS/OpsWorks/Client.html\">AWS SDK for Ruby</a> </li> <li> <a href=\"http://aws.amazon.com/documentation/sdkforjavascript/\">AWS SDK for Node.js</a> </li> <li> <a href=\"http://docs.pythonboto.org/en/latest/ref/opsworks.html\">AWS SDK for Python(Boto)</a> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks supports only one endpoint, opsworks.us-east-1.amazonaws.com (HTTPS), so you must connect to that endpoint. You can then use the API to direct AWS OpsWorks to create stacks in any AWS Region.</p> <p> <b>Chef Versions</b> </p> <p>When you call <a>CreateStack</a>, <a>CloneStack</a>, or <a>UpdateStack</a> we recommend you use the <code>ConfigurationManager</code> parameter to specify the Chef version, 0.9, 11.4, or 11.10. The default value is currently 11.10. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-chef11.html\">Chef Versions</a>.</p> <note>You can still specify Chef 0.9 for your stack, but new features are not available for Chef 0.9 stacks, and support is scheduled to end on July 24, 2014. We do not recommend using Chef 0.9 for new stacks, and we recommend migrating your existing Chef 0.9 stacks to Chef 11.10 as soon as possible.</note>",
72
- "shapes": {
73
- "App": {
74
- "base": "<p>A description of the app.</p>",
75
- "refs": {
76
- "Apps$member": null
77
- }
78
- },
79
- "AppAttributes": {
80
- "base": null,
81
- "refs": {
82
- "App$Attributes": "<p>The stack attributes.</p>",
83
- "CreateAppRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>",
84
- "UpdateAppRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>"
85
- }
86
- },
87
- "AppAttributesKeys": {
88
- "base": null,
89
- "refs": {
90
- "AppAttributes$key": null
91
- }
92
- },
93
- "AppType": {
94
- "base": null,
95
- "refs": {
96
- "App$Type": "<p>The app type.</p>",
97
- "CreateAppRequest$Type": "<p>The app type. Each supported type is associated with a particular layer. For example, PHP applications are associated with a PHP layer. AWS OpsWorks deploys an application to those instances that are members of the corresponding layer. If your app isn't one of the standard types, or you prefer to implement your own Deploy recipes, specify <code>other</code>.</p>",
98
- "UpdateAppRequest$Type": "<p>The app type.</p>"
99
- }
100
- },
101
- "Apps": {
102
- "base": null,
103
- "refs": {
104
- "DescribeAppsResult$Apps": "<p>An array of <code>App</code> objects that describe the specified apps. </p>"
105
- }
106
- },
107
- "Architecture": {
108
- "base": null,
109
- "refs": {
110
- "CreateInstanceRequest$Architecture": "<p>The instance architecture. The default option is <code>x86_64</code>. Instance types do not necessarily support both architectures. For a list of the architectures that are supported by the different instance types, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\">Instance Families and Types</a>.</p>",
111
- "Instance$Architecture": "<p>The instance architecture, \"i386\" or \"x86_64\".</p>",
112
- "UpdateInstanceRequest$Architecture": "<p>The instance architecture. Instance types do not necessarily support both architectures. For a list of the architectures that are supported by the different instance types, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\">Instance Families and Types</a>.</p>"
113
- }
114
- },
115
- "AssignInstanceRequest": {
116
- "base": null,
117
- "refs": {
118
- }
119
- },
120
- "AssignVolumeRequest": {
121
- "base": null,
122
- "refs": {
123
- }
124
- },
125
- "AssociateElasticIpRequest": {
126
- "base": null,
127
- "refs": {
128
- }
129
- },
130
- "AttachElasticLoadBalancerRequest": {
131
- "base": null,
132
- "refs": {
133
- }
134
- },
135
- "AutoScalingThresholds": {
136
- "base": "<p>Describes a load-based auto scaling upscaling or downscaling threshold configuration, which specifies when AWS OpsWorks starts or stops load-based instances.</p>",
137
- "refs": {
138
- "LoadBasedAutoScalingConfiguration$UpScaling": "<p>An <code>AutoScalingThresholds</code> object that describes the upscaling configuration, which defines how and when AWS OpsWorks increases the number of instances.</p>",
139
- "LoadBasedAutoScalingConfiguration$DownScaling": "<p>An <code>AutoScalingThresholds</code> object that describes the downscaling configuration, which defines how and when AWS OpsWorks reduces the number of instances.</p>",
140
- "SetLoadBasedAutoScalingRequest$UpScaling": "<p>An <code>AutoScalingThresholds</code> object with the upscaling threshold configuration. If the load exceeds these thresholds for a specified amount of time, AWS OpsWorks starts a specified number of instances.</p>",
141
- "SetLoadBasedAutoScalingRequest$DownScaling": "<p>An <code>AutoScalingThresholds</code> object with the downscaling threshold configuration. If the load falls below these thresholds for a specified amount of time, AWS OpsWorks stops a specified number of instances.</p>"
142
- }
143
- },
144
- "AutoScalingType": {
145
- "base": null,
146
- "refs": {
147
- "CreateInstanceRequest$AutoScalingType": "<p>For load-based or time-based instances, the type. Windows stacks can use only time-based instances.</p>",
148
- "Instance$AutoScalingType": "<p>For load-based or time-based instances, the type.</p>",
149
- "UpdateInstanceRequest$AutoScalingType": "<p>For load-based or time-based instances, the type. Windows stacks can use only time-based instances.</p>"
150
- }
151
- },
152
- "BlockDeviceMapping": {
153
- "base": "<p>Describes a block device mapping. This data type maps directly to the Amazon EC2 <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html\">BlockDeviceMapping</a> data type. </p>",
154
- "refs": {
155
- "BlockDeviceMappings$member": null
156
- }
157
- },
158
- "BlockDeviceMappings": {
159
- "base": null,
160
- "refs": {
161
- "CreateInstanceRequest$BlockDeviceMappings": "<p>An array of <code>BlockDeviceMapping</code> objects that specify the instance's block devices. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html\">Block Device Mapping</a>.</p>",
162
- "Instance$BlockDeviceMappings": "<p>An array of <code>BlockDeviceMapping</code> objects that specify the instance's block device mappings.</p>"
163
- }
164
- },
165
- "Boolean": {
166
- "base": null,
167
- "refs": {
168
- "App$EnableSsl": "<p>Whether to enable SSL for the app.</p>",
169
- "ChefConfiguration$ManageBerkshelf": "<p>Whether to enable Berkshelf.</p>",
170
- "CloneStackRequest$UseCustomCookbooks": "<p>Whether to use custom cookbooks.</p>",
171
- "CloneStackRequest$UseOpsworksSecurityGroups": "<p>Whether to associate the AWS OpsWorks built-in security groups with the stack's layers.</p> <p>AWS OpsWorks provides a standard set of built-in security groups, one for each layer, which are associated with layers by default. With <code>UseOpsworksSecurityGroups</code> you can instead provide your own custom security groups. <code>UseOpsworksSecurityGroups</code> has the following settings: </p> <ul> <li>True - AWS OpsWorks automatically associates the appropriate built-in security group with each layer (default setting). You can associate additional security groups with a layer after you create it but you cannot delete the built-in security group. </li> <li>False - AWS OpsWorks does not associate built-in security groups with layers. You must create appropriate EC2 security groups and associate a security group with each layer that you create. However, you can still manually associate a built-in security group with a layer on creation; custom security groups are required only for those layers that need custom settings. </li> </ul> <p>For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
172
- "CloneStackRequest$ClonePermissions": "<p>Whether to clone the source stack's permissions.</p>",
173
- "CreateAppRequest$EnableSsl": "<p>Whether to enable SSL for the app.</p>",
174
- "CreateInstanceRequest$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. To control when updates are installed, set this value to <code>false</code>. You must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code> to ensure that your instances have the latest security updates.</p> </note>",
175
- "CreateInstanceRequest$EbsOptimized": "<p>Whether to create an Amazon EBS-optimized instance.</p>",
176
- "CreateLayerRequest$EnableAutoHealing": "<p>Whether to disable auto healing for the layer.</p>",
177
- "CreateLayerRequest$AutoAssignElasticIps": "<p>Whether to automatically assign an <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP address</a> to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
178
- "CreateLayerRequest$AutoAssignPublicIps": "<p>For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
179
- "CreateLayerRequest$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. To control when updates are installed, set this value to <code>false</code>. You must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code>, to ensure that your instances have the latest security updates.</p> </note>",
180
- "CreateLayerRequest$UseEbsOptimizedInstances": "<p>Whether to use Amazon EBS-optimized instances.</p>",
181
- "CreateStackRequest$UseCustomCookbooks": "<p>Whether the stack uses custom cookbooks.</p>",
182
- "CreateStackRequest$UseOpsworksSecurityGroups": "<p>Whether to associate the AWS OpsWorks built-in security groups with the stack's layers.</p> <p>AWS OpsWorks provides a standard set of built-in security groups, one for each layer, which are associated with layers by default. With <code>UseOpsworksSecurityGroups</code> you can instead provide your own custom security groups. <code>UseOpsworksSecurityGroups</code> has the following settings: </p> <ul> <li>True - AWS OpsWorks automatically associates the appropriate built-in security group with each layer (default setting). You can associate additional security groups with a layer after you create it but you cannot delete the built-in security group. </li> <li>False - AWS OpsWorks does not associate built-in security groups with layers. You must create appropriate EC2 security groups and associate a security group with each layer that you create. However, you can still manually associate a built-in security group with a layer on creation; custom security groups are required only for those layers that need custom settings. </li> </ul> <p>For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
183
- "CreateUserProfileRequest$AllowSelfManagement": "<p>Whether users can specify their own SSH public key through the My Settings page. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html\">Setting an IAM User's Public SSH Key</a>.</p>",
184
- "DeleteInstanceRequest$DeleteElasticIp": "<p>Whether to delete the instance Elastic IP address.</p>",
185
- "DeleteInstanceRequest$DeleteVolumes": "<p>Whether to delete the instance's Amazon EBS volumes.</p>",
186
- "EbsBlockDevice$DeleteOnTermination": "<p>Whether the volume is deleted on instance termination.</p>",
187
- "EnvironmentVariable$Secure": "<p>(Optional) Whether the variable's value will be returned by the <a>DescribeApps</a> action. To conceal an environment variable's value, set <code>Secure</code> to <code>true</code>. <code>DescribeApps</code> then returns <code>*****FILTERED*****</code> instead of the actual value. The default value for <code>Secure</code> is <code>false</code>. </p>",
188
- "Instance$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. If this value is set to <code>false</code>, you must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code>, to ensure that your instances have the latest security updates.</p> </note>",
189
- "Instance$EbsOptimized": "<p>Whether this is an Amazon EBS-optimized instance.</p>",
190
- "Layer$EnableAutoHealing": "<p>Whether auto healing is disabled for the layer.</p>",
191
- "Layer$AutoAssignElasticIps": "<p>Whether to automatically assign an <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP address</a> to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
192
- "Layer$AutoAssignPublicIps": "<p>For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
193
- "Layer$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. If this value is set to <code>false</code>, you must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code>, to ensure that your instances have the latest security updates.</p> </note>",
194
- "Layer$UseEbsOptimizedInstances": "<p>Whether the layer uses Amazon EBS-optimized instances.</p>",
195
- "LoadBasedAutoScalingConfiguration$Enable": "<p>Whether load-based auto scaling is enabled for the layer.</p>",
196
- "Permission$AllowSsh": "<p>Whether the user can use SSH.</p>",
197
- "Permission$AllowSudo": "<p>Whether the user can use <b>sudo</b>.</p>",
198
- "RdsDbInstance$MissingOnRds": "<p>Set to <code>true</code> if AWS OpsWorks was unable to discover the Amazon RDS instance. AWS OpsWorks attempts to discover the instance only once. If this value is set to <code>true</code>, you must deregister the instance and then register it again.</p>",
199
- "SetLoadBasedAutoScalingRequest$Enable": "<p>Enables load-based auto scaling for the layer.</p>",
200
- "SetPermissionRequest$AllowSsh": "<p>The user is allowed to use SSH to communicate with the instance.</p>",
201
- "SetPermissionRequest$AllowSudo": "<p>The user is allowed to use <b>sudo</b> to elevate privileges.</p>",
202
- "ShutdownEventConfiguration$DelayUntilElbConnectionsDrained": "<p>Whether to enable Elastic Load Balancing connection draining. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#conn-drain\">Connection Draining</a></p>",
203
- "Stack$UseCustomCookbooks": "<p>Whether the stack uses custom cookbooks.</p>",
204
- "Stack$UseOpsworksSecurityGroups": "<p>Whether the stack automatically associates the AWS OpsWorks built-in security groups with the stack's layers.</p>",
205
- "UpdateAppRequest$EnableSsl": "<p>Whether SSL is enabled for the app.</p>",
206
- "UpdateInstanceRequest$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. To control when updates are installed, set this value to <code>false</code>. You must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code>, to ensure that your instances have the latest security updates.</p> </note>",
207
- "UpdateInstanceRequest$EbsOptimized": "<p>Whether this is an Amazon EBS-optimized instance.</p>",
208
- "UpdateLayerRequest$EnableAutoHealing": "<p>Whether to disable auto healing for the layer.</p>",
209
- "UpdateLayerRequest$AutoAssignElasticIps": "<p>Whether to automatically assign an <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP address</a> to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
210
- "UpdateLayerRequest$AutoAssignPublicIps": "<p>For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html\">How to Edit a Layer</a>.</p>",
211
- "UpdateLayerRequest$InstallUpdatesOnBoot": "<p>Whether to install operating system and package updates when the instance boots. The default value is <code>true</code>. To control when updates are installed, set this value to <code>false</code>. You must then update your instances manually by using <a>CreateDeployment</a> to run the <code>update_dependencies</code> stack command or manually running <code>yum</code> (Amazon Linux) or <code>apt-get</code> (Ubuntu) on the instances. </p> <note> <p>We strongly recommend using the default value of <code>true</code>, to ensure that your instances have the latest security updates.</p> </note>",
212
- "UpdateLayerRequest$UseEbsOptimizedInstances": "<p>Whether to use Amazon EBS-optimized instances.</p>",
213
- "UpdateStackRequest$UseCustomCookbooks": "<p>Whether the stack uses custom cookbooks.</p>",
214
- "UpdateStackRequest$UseOpsworksSecurityGroups": "<p>Whether to associate the AWS OpsWorks built-in security groups with the stack's layers.</p> <p>AWS OpsWorks provides a standard set of built-in security groups, one for each layer, which are associated with layers by default. <code>UseOpsworksSecurityGroups</code> allows you to instead provide your own custom security groups. <code>UseOpsworksSecurityGroups</code> has the following settings: </p> <ul> <li>True - AWS OpsWorks automatically associates the appropriate built-in security group with each layer (default setting). You can associate additional security groups with a layer after you create it but you cannot delete the built-in security group. </li> <li>False - AWS OpsWorks does not associate built-in security groups with layers. You must create appropriate EC2 security groups and associate a security group with each layer that you create. However, you can still manually associate a built-in security group with a layer on creation; custom security groups are required only for those layers that need custom settings. </li> </ul> <p>For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
215
- "UpdateUserProfileRequest$AllowSelfManagement": "<p>Whether users can specify their own SSH public key through the My Settings page. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html\">Managing User Permissions</a>.</p>",
216
- "UserProfile$AllowSelfManagement": "<p>Whether users can specify their own SSH public key through the My Settings page. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html\">Managing User Permissions</a>.</p>"
217
- }
218
- },
219
- "ChefConfiguration": {
220
- "base": "<p>Describes the Chef configuration.</p>",
221
- "refs": {
222
- "CloneStackRequest$ChefConfiguration": "<p>A <code>ChefConfiguration</code> object that specifies whether to enable Berkshelf and the Berkshelf version on Chef 11.10 stacks. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
223
- "CreateStackRequest$ChefConfiguration": "<p>A <code>ChefConfiguration</code> object that specifies whether to enable Berkshelf and the Berkshelf version on Chef 11.10 stacks. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
224
- "Stack$ChefConfiguration": "<p>A <code>ChefConfiguration</code> object that specifies whether to enable Berkshelf and the Berkshelf version. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>",
225
- "UpdateStackRequest$ChefConfiguration": "<p>A <code>ChefConfiguration</code> object that specifies whether to enable Berkshelf and the Berkshelf version on Chef 11.10 stacks. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html\">Create a New Stack</a>.</p>"
226
- }
227
- },
228
- "CloneStackRequest": {
229
- "base": null,
230
- "refs": {
231
- }
232
- },
233
- "CloneStackResult": {
234
- "base": "<p>Contains the response to a <code>CloneStack</code> request.</p>",
235
- "refs": {
236
- }
237
- },
238
- "Command": {
239
- "base": "<p>Describes a command.</p>",
240
- "refs": {
241
- "Commands$member": null
242
- }
243
- },
244
- "Commands": {
245
- "base": null,
246
- "refs": {
247
- "DescribeCommandsResult$Commands": "<p>An array of <code>Command</code> objects that describe each of the specified commands.</p>"
248
- }
249
- },
250
- "CreateAppRequest": {
251
- "base": null,
252
- "refs": {
253
- }
254
- },
255
- "CreateAppResult": {
256
- "base": "<p>Contains the response to a <code>CreateApp</code> request.</p>",
257
- "refs": {
258
- }
259
- },
260
- "CreateDeploymentRequest": {
261
- "base": null,
262
- "refs": {
263
- }
264
- },
265
- "CreateDeploymentResult": {
266
- "base": "<p>Contains the response to a <code>CreateDeployment</code> request.</p>",
267
- "refs": {
268
- }
269
- },
270
- "CreateInstanceRequest": {
271
- "base": null,
272
- "refs": {
273
- }
274
- },
275
- "CreateInstanceResult": {
276
- "base": "<p>Contains the response to a <code>CreateInstance</code> request.</p>",
277
- "refs": {
278
- }
279
- },
280
- "CreateLayerRequest": {
281
- "base": null,
282
- "refs": {
283
- }
284
- },
285
- "CreateLayerResult": {
286
- "base": "<p>Contains the response to a <code>CreateLayer</code> request.</p>",
287
- "refs": {
288
- }
289
- },
290
- "CreateStackRequest": {
291
- "base": null,
292
- "refs": {
293
- }
294
- },
295
- "CreateStackResult": {
296
- "base": "<p>Contains the response to a <code>CreateStack</code> request.</p>",
297
- "refs": {
298
- }
299
- },
300
- "CreateUserProfileRequest": {
301
- "base": null,
302
- "refs": {
303
- }
304
- },
305
- "CreateUserProfileResult": {
306
- "base": "<p>Contains the response to a <code>CreateUserProfile</code> request.</p>",
307
- "refs": {
308
- }
309
- },
310
- "DailyAutoScalingSchedule": {
311
- "base": null,
312
- "refs": {
313
- "WeeklyAutoScalingSchedule$Monday": "<p>The schedule for Monday.</p>",
314
- "WeeklyAutoScalingSchedule$Tuesday": "<p>The schedule for Tuesday.</p>",
315
- "WeeklyAutoScalingSchedule$Wednesday": "<p>The schedule for Wednesday.</p>",
316
- "WeeklyAutoScalingSchedule$Thursday": "<p>The schedule for Thursday.</p>",
317
- "WeeklyAutoScalingSchedule$Friday": "<p>The schedule for Friday.</p>",
318
- "WeeklyAutoScalingSchedule$Saturday": "<p>The schedule for Saturday.</p>",
319
- "WeeklyAutoScalingSchedule$Sunday": "<p>The schedule for Sunday.</p>"
320
- }
321
- },
322
- "DataSource": {
323
- "base": "<p>Describes an app's data source.</p>",
324
- "refs": {
325
- "DataSources$member": null
326
- }
327
- },
328
- "DataSources": {
329
- "base": null,
330
- "refs": {
331
- "App$DataSources": "<p>The app's data sources.</p>",
332
- "CreateAppRequest$DataSources": "<p>The app's data source.</p>",
333
- "UpdateAppRequest$DataSources": "<p>The app's data sources.</p>"
334
- }
335
- },
336
- "DateTime": {
337
- "base": null,
338
- "refs": {
339
- "Command$CreatedAt": "<p>Date and time when the command was run.</p>",
340
- "Command$AcknowledgedAt": "<p>Date and time when the command was acknowledged.</p>",
341
- "Command$CompletedAt": "<p>Date when the command completed.</p>",
342
- "Deployment$CreatedAt": "<p>Date when the deployment was created.</p>",
343
- "Deployment$CompletedAt": "<p>Date when the deployment completed.</p>",
344
- "Instance$CreatedAt": "<p>The time that the instance was created.</p>",
345
- "Layer$CreatedAt": "<p>Date when the layer was created.</p>",
346
- "RaidArray$CreatedAt": "<p>When the RAID array was created.</p>",
347
- "ServiceError$CreatedAt": "<p>When the error occurred.</p>",
348
- "Stack$CreatedAt": "<p>Date when the stack was created.</p>"
349
- }
350
- },
351
- "DeleteAppRequest": {
352
- "base": null,
353
- "refs": {
354
- }
355
- },
356
- "DeleteInstanceRequest": {
357
- "base": null,
358
- "refs": {
359
- }
360
- },
361
- "DeleteLayerRequest": {
362
- "base": null,
363
- "refs": {
364
- }
365
- },
366
- "DeleteStackRequest": {
367
- "base": null,
368
- "refs": {
369
- }
370
- },
371
- "DeleteUserProfileRequest": {
372
- "base": null,
373
- "refs": {
374
- }
375
- },
376
- "Deployment": {
377
- "base": "<p>Describes a deployment of a stack or app.</p>",
378
- "refs": {
379
- "Deployments$member": null
380
- }
381
- },
382
- "DeploymentCommand": {
383
- "base": "<p>Used to specify a stack or deployment command.</p>",
384
- "refs": {
385
- "CreateDeploymentRequest$Command": "<p>A <code>DeploymentCommand</code> object that specifies the deployment command and any associated arguments.</p>",
386
- "Deployment$Command": null
387
- }
388
- },
389
- "DeploymentCommandArgs": {
390
- "base": null,
391
- "refs": {
392
- "DeploymentCommand$Args": "<p>The arguments of those commands that take arguments. It should be set to a JSON object with the following format:</p> <p> <code>{\"arg_name1\" : [\"value1\", \"value2\", ...], \"arg_name2\" : [\"value1\", \"value2\", ...], ...}</code> </p> <p>The <code>update_dependencies</code> command takes two arguments:</p> <ul> <li> <code>upgrade_os_to</code> - Specifies the desired Amazon Linux version for instances whose OS you want to upgrade, such as <code>Amazon Linux 2014.09</code>. You must also set the <code>allow_reboot</code> argument to true.</li> <li> <code>allow_reboot</code> - Specifies whether to allow AWS OpsWorks to reboot the instances if necessary, after installing the updates. This argument can be set to either <code>true</code> or <code>false</code>. The default value is <code>false</code>.</li> </ul> <p>For example, to upgrade an instance to Amazon Linux 2014.09, set <code>Args</code> to the following.</p> <code> { \"upgrade_os_to\":[\"Amazon Linux 2014.09\"], \"allow_reboot\":[\"true\"] } </code>"
393
- }
394
- },
395
- "DeploymentCommandName": {
396
- "base": null,
397
- "refs": {
398
- "DeploymentCommand$Name": "<p>Specifies the operation. You can specify only one command.</p> <p>For stacks, the following commands are available:</p> <ul> <li> <code>execute_recipes</code>: Execute one or more recipes. To specify the recipes, set an <code>Args</code> parameter named <code>recipes</code> to the list of recipes to be executed. For example, to execute <code>phpapp::appsetup</code>, set <code>Args</code> to <code>{\"recipes\":[\"phpapp::appsetup\"]}</code>.</li> <li> <code>install_dependencies</code>: Install the stack's dependencies.</li> <li> <code>update_custom_cookbooks</code>: Update the stack's custom cookbooks.</li> <li> <code>update_dependencies</code>: Update the stack's dependencies.</li> </ul> <note>The update_dependencies and install_dependencies commands are supported only for Linux instances. You can run the commands successfully on Windows instances, but they do nothing.</note> <p>For apps, the following commands are available:</p> <ul> <li> <code>deploy</code>: Deploy an app. Ruby on Rails apps have an optional <code>Args</code> parameter named <code>migrate</code>. Set <code>Args</code> to {\"migrate\":[\"true\"]} to migrate the database. The default setting is {\"migrate\":[\"false\"]}.</li> <li> <code>rollback</code> Roll the app back to the previous version. When you update an app, AWS OpsWorks stores the previous version, up to a maximum of five versions. You can use this command to roll an app back as many as four versions.</li> <li> <code>start</code>: Start the app's web or application server.</li> <li> <code>stop</code>: Stop the app's web or application server.</li> <li> <code>restart</code>: Restart the app's web or application server.</li> <li> <code>undeploy</code>: Undeploy the app.</li> </ul>"
399
- }
400
- },
401
- "Deployments": {
402
- "base": null,
403
- "refs": {
404
- "DescribeDeploymentsResult$Deployments": "<p>An array of <code>Deployment</code> objects that describe the deployments.</p>"
405
- }
406
- },
407
- "DeregisterElasticIpRequest": {
408
- "base": null,
409
- "refs": {
410
- }
411
- },
412
- "DeregisterInstanceRequest": {
413
- "base": null,
414
- "refs": {
415
- }
416
- },
417
- "DeregisterRdsDbInstanceRequest": {
418
- "base": null,
419
- "refs": {
420
- }
421
- },
422
- "DeregisterVolumeRequest": {
423
- "base": null,
424
- "refs": {
425
- }
426
- },
427
- "DescribeAppsRequest": {
428
- "base": null,
429
- "refs": {
430
- }
431
- },
432
- "DescribeAppsResult": {
433
- "base": "<p>Contains the response to a <code>DescribeApps</code> request.</p>",
434
- "refs": {
435
- }
436
- },
437
- "DescribeCommandsRequest": {
438
- "base": null,
439
- "refs": {
440
- }
441
- },
442
- "DescribeCommandsResult": {
443
- "base": "<p>Contains the response to a <code>DescribeCommands</code> request.</p>",
444
- "refs": {
445
- }
446
- },
447
- "DescribeDeploymentsRequest": {
448
- "base": null,
449
- "refs": {
450
- }
451
- },
452
- "DescribeDeploymentsResult": {
453
- "base": "<p>Contains the response to a <code>DescribeDeployments</code> request.</p>",
454
- "refs": {
455
- }
456
- },
457
- "DescribeElasticIpsRequest": {
458
- "base": null,
459
- "refs": {
460
- }
461
- },
462
- "DescribeElasticIpsResult": {
463
- "base": "<p>Contains the response to a <code>DescribeElasticIps</code> request.</p>",
464
- "refs": {
465
- }
466
- },
467
- "DescribeElasticLoadBalancersRequest": {
468
- "base": null,
469
- "refs": {
470
- }
471
- },
472
- "DescribeElasticLoadBalancersResult": {
473
- "base": "<p>Contains the response to a <code>DescribeElasticLoadBalancers</code> request.</p>",
474
- "refs": {
475
- }
476
- },
477
- "DescribeInstancesRequest": {
478
- "base": null,
479
- "refs": {
480
- }
481
- },
482
- "DescribeInstancesResult": {
483
- "base": "<p>Contains the response to a <code>DescribeInstances</code> request.</p>",
484
- "refs": {
485
- }
486
- },
487
- "DescribeLayersRequest": {
488
- "base": null,
489
- "refs": {
490
- }
491
- },
492
- "DescribeLayersResult": {
493
- "base": "<p>Contains the response to a <code>DescribeLayers</code> request.</p>",
494
- "refs": {
495
- }
496
- },
497
- "DescribeLoadBasedAutoScalingRequest": {
498
- "base": null,
499
- "refs": {
500
- }
501
- },
502
- "DescribeLoadBasedAutoScalingResult": {
503
- "base": "<p>Contains the response to a <code>DescribeLoadBasedAutoScaling</code> request.</p>",
504
- "refs": {
505
- }
506
- },
507
- "DescribeMyUserProfileResult": {
508
- "base": "<p>Contains the response to a <code>DescribeMyUserProfile</code> request.</p>",
509
- "refs": {
510
- }
511
- },
512
- "DescribePermissionsRequest": {
513
- "base": null,
514
- "refs": {
515
- }
516
- },
517
- "DescribePermissionsResult": {
518
- "base": "<p>Contains the response to a <code>DescribePermissions</code> request.</p>",
519
- "refs": {
520
- }
521
- },
522
- "DescribeRaidArraysRequest": {
523
- "base": null,
524
- "refs": {
525
- }
526
- },
527
- "DescribeRaidArraysResult": {
528
- "base": "<p>Contains the response to a <code>DescribeRaidArrays</code> request.</p>",
529
- "refs": {
530
- }
531
- },
532
- "DescribeRdsDbInstancesRequest": {
533
- "base": null,
534
- "refs": {
535
- }
536
- },
537
- "DescribeRdsDbInstancesResult": {
538
- "base": "<p>Contains the response to a <code>DescribeRdsDbInstances</code> request.</p>",
539
- "refs": {
540
- }
541
- },
542
- "DescribeServiceErrorsRequest": {
543
- "base": null,
544
- "refs": {
545
- }
546
- },
547
- "DescribeServiceErrorsResult": {
548
- "base": "<p>Contains the response to a <code>DescribeServiceErrors</code> request.</p>",
549
- "refs": {
550
- }
551
- },
552
- "DescribeStackProvisioningParametersRequest": {
553
- "base": null,
554
- "refs": {
555
- }
556
- },
557
- "DescribeStackProvisioningParametersResult": {
558
- "base": "<p>Contains the response to a <code>DescribeStackProvisioningParameters</code> request.</p>",
559
- "refs": {
560
- }
561
- },
562
- "DescribeStackSummaryRequest": {
563
- "base": null,
564
- "refs": {
565
- }
566
- },
567
- "DescribeStackSummaryResult": {
568
- "base": "<p>Contains the response to a <code>DescribeStackSummary</code> request.</p>",
569
- "refs": {
570
- }
571
- },
572
- "DescribeStacksRequest": {
573
- "base": null,
574
- "refs": {
575
- }
576
- },
577
- "DescribeStacksResult": {
578
- "base": "<p>Contains the response to a <code>DescribeStacks</code> request.</p>",
579
- "refs": {
580
- }
581
- },
582
- "DescribeTimeBasedAutoScalingRequest": {
583
- "base": null,
584
- "refs": {
585
- }
586
- },
587
- "DescribeTimeBasedAutoScalingResult": {
588
- "base": "<p>Contains the response to a <code>DescribeTimeBasedAutoScaling</code> request.</p>",
589
- "refs": {
590
- }
591
- },
592
- "DescribeUserProfilesRequest": {
593
- "base": null,
594
- "refs": {
595
- }
596
- },
597
- "DescribeUserProfilesResult": {
598
- "base": "<p>Contains the response to a <code>DescribeUserProfiles</code> request.</p>",
599
- "refs": {
600
- }
601
- },
602
- "DescribeVolumesRequest": {
603
- "base": null,
604
- "refs": {
605
- }
606
- },
607
- "DescribeVolumesResult": {
608
- "base": "<p>Contains the response to a <code>DescribeVolumes</code> request.</p>",
609
- "refs": {
610
- }
611
- },
612
- "DetachElasticLoadBalancerRequest": {
613
- "base": null,
614
- "refs": {
615
- }
616
- },
617
- "DisassociateElasticIpRequest": {
618
- "base": null,
619
- "refs": {
620
- }
621
- },
622
- "Double": {
623
- "base": null,
624
- "refs": {
625
- "AutoScalingThresholds$CpuThreshold": "<p>The CPU utilization threshold, as a percent of the available CPU.</p>",
626
- "AutoScalingThresholds$MemoryThreshold": "<p>The memory utilization threshold, as a percent of the available memory.</p>",
627
- "AutoScalingThresholds$LoadThreshold": "<p>The load threshold. For more information about how load is computed, see <a href=\"http://en.wikipedia.org/wiki/Load_%28computing%29\">Load (computing)</a>.</p>"
628
- }
629
- },
630
- "EbsBlockDevice": {
631
- "base": "<p>Describes an Amazon EBS volume. This data type maps directly to the Amazon EC2 <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html\">EbsBlockDevice</a> data type.</p>",
632
- "refs": {
633
- "BlockDeviceMapping$Ebs": "<p>An <code>EBSBlockDevice</code> that defines how to configure an Amazon EBS volume when the instance is launched.</p>"
634
- }
635
- },
636
- "ElasticIp": {
637
- "base": "<p>Describes an Elastic IP address.</p>",
638
- "refs": {
639
- "ElasticIps$member": null
640
- }
641
- },
642
- "ElasticIps": {
643
- "base": null,
644
- "refs": {
645
- "DescribeElasticIpsResult$ElasticIps": "<p>An <code>ElasticIps</code> object that describes the specified Elastic IP addresses.</p>"
646
- }
647
- },
648
- "ElasticLoadBalancer": {
649
- "base": "<p>Describes an Elastic Load Balancing instance.</p>",
650
- "refs": {
651
- "ElasticLoadBalancers$member": null
652
- }
653
- },
654
- "ElasticLoadBalancers": {
655
- "base": null,
656
- "refs": {
657
- "DescribeElasticLoadBalancersResult$ElasticLoadBalancers": "<p>A list of <code>ElasticLoadBalancer</code> objects that describe the specified Elastic Load Balancing instances.</p>"
658
- }
659
- },
660
- "EnvironmentVariable": {
661
- "base": "<p>Represents an app's environment variable.</p>",
662
- "refs": {
663
- "EnvironmentVariables$member": null
664
- }
665
- },
666
- "EnvironmentVariables": {
667
- "base": null,
668
- "refs": {
669
- "App$Environment": "<p>An array of <code>EnvironmentVariable</code> objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instances. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment\"> Environment Variables</a>. </p> <note> There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 10 KB (10240 Bytes). This limit should accommodate most if not all use cases, but if you do exceed it, you will cause an exception (API) with an \"Environment: is too large (maximum is 10KB)\" message. </note>",
670
- "CreateAppRequest$Environment": "<p>An array of <code>EnvironmentVariable</code> objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment\"> Environment Variables</a>.</p> <p> There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 10 KB (10240 Bytes). This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, \"Environment: is too large (maximum is 10KB).\" </p> <note>This parameter is supported only by Chef 11.10 stacks. If you have specified one or more environment variables, you cannot modify the stack's Chef version.</note>",
671
- "UpdateAppRequest$Environment": "<p>An array of <code>EnvironmentVariable</code> objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instances.For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment\"> Environment Variables</a>.</p> <p> There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 10 KB (10240 Bytes). This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, \"Environment: is too large (maximum is 10KB).\" </p> <note>This parameter is supported only by Chef 11.10 stacks. If you have specified one or more environment variables, you cannot modify the stack's Chef version. </note>"
672
- }
673
- },
674
- "GetHostnameSuggestionRequest": {
675
- "base": null,
676
- "refs": {
677
- }
678
- },
679
- "GetHostnameSuggestionResult": {
680
- "base": "<p>Contains the response to a <code>GetHostnameSuggestion</code> request.</p>",
681
- "refs": {
682
- }
683
- },
684
- "GrantAccessRequest": {
685
- "base": null,
686
- "refs": {
687
- }
688
- },
689
- "GrantAccessResult": {
690
- "base": "<p>Contains the response to a <code>GrantAccess</code> request.</p>",
691
- "refs": {
692
- }
693
- },
694
- "Hour": {
695
- "base": null,
696
- "refs": {
697
- "DailyAutoScalingSchedule$key": null
698
- }
699
- },
700
- "Instance": {
701
- "base": "<p>Describes an instance.</p>",
702
- "refs": {
703
- "Instances$member": null
704
- }
705
- },
706
- "InstanceIdentity": {
707
- "base": "<p>Contains a description of an Amazon EC2 instance from the Amazon EC2 metadata service. For more information, see <a href=\"http://docs.aws.amazon.com/sdkfornet/latest/apidocs/Index.html\">Instance Metadata and User Data</a>.</p>",
708
- "refs": {
709
- "RegisterInstanceRequest$InstanceIdentity": "<p>An InstanceIdentity object that contains the instance's identity.</p>"
710
- }
711
- },
712
- "Instances": {
713
- "base": null,
714
- "refs": {
715
- "DescribeInstancesResult$Instances": "<p>An array of <code>Instance</code> objects that describe the instances.</p>"
716
- }
717
- },
718
- "InstancesCount": {
719
- "base": "<p>Describes how many instances a stack has for each status.</p>",
720
- "refs": {
721
- "StackSummary$InstancesCount": "<p>An <code>InstancesCount</code> object with the number of instances in each status.</p>"
722
- }
723
- },
724
- "Integer": {
725
- "base": null,
726
- "refs": {
727
- "AutoScalingThresholds$InstanceCount": "<p>The number of instances to add or remove when the load exceeds a threshold.</p>",
728
- "Command$ExitCode": "<p>The command exit code.</p>",
729
- "Deployment$Duration": "<p>The deployment duration.</p>",
730
- "EbsBlockDevice$Iops": "<p>The number of I/O operations per second (IOPS) that the volume supports. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html\">EbsBlockDevice</a>.</p>",
731
- "EbsBlockDevice$VolumeSize": "<p>The volume size, in GiB. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html\">EbsBlockDevice</a>.</p>",
732
- "InstancesCount$Assigning": "<p>The number of instances in the Assigning state.</p>",
733
- "InstancesCount$Booting": "<p>The number of instances with <code>booting</code> status.</p>",
734
- "InstancesCount$ConnectionLost": "<p>The number of instances with <code>connection_lost</code> status.</p>",
735
- "InstancesCount$Deregistering": "<p>The number of instances in the Deregistering state.</p>",
736
- "InstancesCount$Online": "<p>The number of instances with <code>online</code> status.</p>",
737
- "InstancesCount$Pending": "<p>The number of instances with <code>pending</code> status.</p>",
738
- "InstancesCount$Rebooting": "<p>The number of instances with <code>rebooting</code> status.</p>",
739
- "InstancesCount$Registered": "<p>The number of instances in the Registered state.</p>",
740
- "InstancesCount$Registering": "<p>The number of instances in the Registering state.</p>",
741
- "InstancesCount$Requested": "<p>The number of instances with <code>requested</code> status.</p>",
742
- "InstancesCount$RunningSetup": "<p>The number of instances with <code>running_setup</code> status.</p>",
743
- "InstancesCount$SetupFailed": "<p>The number of instances with <code>setup_failed</code> status.</p>",
744
- "InstancesCount$ShuttingDown": "<p>The number of instances with <code>shutting_down</code> status.</p>",
745
- "InstancesCount$StartFailed": "<p>The number of instances with <code>start_failed</code> status.</p>",
746
- "InstancesCount$Stopped": "<p>The number of instances with <code>stopped</code> status.</p>",
747
- "InstancesCount$Stopping": "<p>The number of instances with <code>stopping</code> status.</p>",
748
- "InstancesCount$Terminated": "<p>The number of instances with <code>terminated</code> status.</p>",
749
- "InstancesCount$Terminating": "<p>The number of instances with <code>terminating</code> status.</p>",
750
- "InstancesCount$Unassigning": "<p>The number of instances in the Unassigning state.</p>",
751
- "RaidArray$RaidLevel": "<p>The <a href=\"http://en.wikipedia.org/wiki/Standard_RAID_levels\">RAID level</a>.</p>",
752
- "RaidArray$NumberOfDisks": "<p>The number of disks in the array.</p>",
753
- "RaidArray$Size": "<p>The array's size.</p>",
754
- "RaidArray$Iops": "<p>For PIOPS volumes, the IOPS per disk.</p>",
755
- "ShutdownEventConfiguration$ExecutionTimeout": "<p>The time, in seconds, that AWS OpsWorks will wait after triggering a Shutdown event before shutting down an instance.</p>",
756
- "StackSummary$LayersCount": "<p>The number of layers.</p>",
757
- "StackSummary$AppsCount": "<p>The number of apps.</p>",
758
- "TemporaryCredential$ValidForInMinutes": "<p>The length of time (in minutes) that the grant is valid. When the grant expires, at the end of this period, the user will no longer be able to use the credentials to log in. If they are logged in at the time, they will be automatically logged out.</p>",
759
- "Volume$Size": "<p>The volume size.</p>",
760
- "Volume$Iops": "<p>For PIOPS volumes, the IOPS per disk.</p>",
761
- "VolumeConfiguration$RaidLevel": "<p>The volume <a href=\"http://en.wikipedia.org/wiki/Standard_RAID_levels\">RAID level</a>.</p>",
762
- "VolumeConfiguration$NumberOfDisks": "<p>The number of disks in the volume.</p>",
763
- "VolumeConfiguration$Size": "<p>The volume size.</p>",
764
- "VolumeConfiguration$Iops": "<p>For PIOPS volumes, the IOPS per disk.</p>"
765
- }
766
- },
767
- "Layer": {
768
- "base": "<p>Describes a layer.</p>",
769
- "refs": {
770
- "Layers$member": null
771
- }
772
- },
773
- "LayerAttributes": {
774
- "base": null,
775
- "refs": {
776
- "CreateLayerRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>",
777
- "Layer$Attributes": "<p>The layer attributes.</p> <note>For the <code>HaproxyStatsPassword</code>, <code>MysqlRootPassword</code>, and <code>GangliaPassword</code> attributes, AWS OpsWorks returns <code>*****FILTERED*****</code> instead of the actual value</note>",
778
- "UpdateLayerRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>"
779
- }
780
- },
781
- "LayerAttributesKeys": {
782
- "base": null,
783
- "refs": {
784
- "LayerAttributes$key": null
785
- }
786
- },
787
- "LayerType": {
788
- "base": null,
789
- "refs": {
790
- "CreateLayerRequest$Type": "<p>The layer type. A stack cannot have more than one built-in layer of the same type. It can have any number of custom layers.</p>",
791
- "Layer$Type": "<p>The layer type.</p>"
792
- }
793
- },
794
- "Layers": {
795
- "base": null,
796
- "refs": {
797
- "DescribeLayersResult$Layers": "<p>An array of <code>Layer</code> objects that describe the layers.</p>"
798
- }
799
- },
800
- "LifecycleEventConfiguration": {
801
- "base": "<p>Specifies the lifecycle event configuration</p>",
802
- "refs": {
803
- "CreateLayerRequest$LifecycleEventConfiguration": "<p>A LifeCycleEventConfiguration object that you can use to configure the Shutdown event to specify an execution timeout and enable or disable Elastic Load Balancer connection draining.</p>",
804
- "Layer$LifecycleEventConfiguration": "<p>A <code>LifeCycleEventConfiguration</code> object that specifies the Shutdown event configuration.</p>",
805
- "UpdateLayerRequest$LifecycleEventConfiguration": "<p></p>"
806
- }
807
- },
808
- "LoadBasedAutoScalingConfiguration": {
809
- "base": "<p>Describes a layer's load-based auto scaling configuration.</p>",
810
- "refs": {
811
- "LoadBasedAutoScalingConfigurations$member": null
812
- }
813
- },
814
- "LoadBasedAutoScalingConfigurations": {
815
- "base": null,
816
- "refs": {
817
- "DescribeLoadBasedAutoScalingResult$LoadBasedAutoScalingConfigurations": "<p>An array of <code>LoadBasedAutoScalingConfiguration</code> objects that describe each layer's configuration.</p>"
818
- }
819
- },
820
- "Minute": {
821
- "base": null,
822
- "refs": {
823
- "AutoScalingThresholds$ThresholdsWaitTime": "<p>The amount of time, in minutes, that the load must exceed a threshold before more instances are added or removed.</p>",
824
- "AutoScalingThresholds$IgnoreMetricsTime": "<p>The amount of time (in minutes) after a scaling event occurs that AWS OpsWorks should ignore metrics and suppress additional scaling events. For example, AWS OpsWorks adds new instances following an upscaling event but the instances won't start reducing the load until they have been booted and configured. There is no point in raising additional scaling events during that operation, which typically takes several minutes. <code>IgnoreMetricsTime</code> allows you to direct AWS OpsWorks to suppress scaling events long enough to get the new instances online.</p>"
825
- }
826
- },
827
- "Parameters": {
828
- "base": null,
829
- "refs": {
830
- "DescribeStackProvisioningParametersResult$Parameters": "<p>An embedded object that contains the provisioning parameters.</p>"
831
- }
832
- },
833
- "Permission": {
834
- "base": "<p>Describes stack or user permissions.</p>",
835
- "refs": {
836
- "Permissions$member": null
837
- }
838
- },
839
- "Permissions": {
840
- "base": null,
841
- "refs": {
842
- "DescribePermissionsResult$Permissions": "<p>An array of <code>Permission</code> objects that describe the stack permissions.</p> <ul> <li>If the request object contains only a stack ID, the array contains a <code>Permission</code> object with permissions for each of the stack IAM ARNs.</li> <li>If the request object contains only an IAM ARN, the array contains a <code>Permission</code> object with permissions for each of the user's stack IDs.</li> <li>If the request contains a stack ID and an IAM ARN, the array contains a single <code>Permission</code> object with permissions for the specified stack and IAM ARN.</li> </ul>"
843
- }
844
- },
845
- "RaidArray": {
846
- "base": "<p>Describes an instance's RAID array.</p>",
847
- "refs": {
848
- "RaidArrays$member": null
849
- }
850
- },
851
- "RaidArrays": {
852
- "base": null,
853
- "refs": {
854
- "DescribeRaidArraysResult$RaidArrays": "<p>A <code>RaidArrays</code> object that describes the specified RAID arrays.</p>"
855
- }
856
- },
857
- "RdsDbInstance": {
858
- "base": "<p>Describes an Amazon RDS instance.</p>",
859
- "refs": {
860
- "RdsDbInstances$member": null
861
- }
862
- },
863
- "RdsDbInstances": {
864
- "base": null,
865
- "refs": {
866
- "DescribeRdsDbInstancesResult$RdsDbInstances": "<p>An a array of <code>RdsDbInstance</code> objects that describe the instances.</p>"
867
- }
868
- },
869
- "RebootInstanceRequest": {
870
- "base": null,
871
- "refs": {
872
- }
873
- },
874
- "Recipes": {
875
- "base": "<p>AWS OpsWorks supports five life<?oxy_delete author=\"witsoej\" timestamp=\"20130319T132659-0700\" content=\"-\">cycle events, <b>setup</b>, <b>configuration</b>, <b>deploy</b>, <b>undeploy</b>, and <b>shutdown</b>. For each layer, AWS OpsWorks runs a set of standard recipes for each event. In addition, you can provide custom recipes for any or all layers and events. AWS OpsWorks runs custom event recipes after the standard recipes. <code>LayerCustomRecipes</code> specifies the custom recipes for a particular layer to be run in response to each of the five events. </p> <p>To specify a recipe, use the cookbook's directory name in the repository followed by two colons and the recipe name, which is the recipe's file name without the .rb extension. For example: phpapp2::dbsetup specifies the dbsetup.rb recipe in the repository's phpapp2 folder. </p>",
876
- "refs": {
877
- "CreateLayerRequest$CustomRecipes": "<p>A <code>LayerCustomRecipes</code> object that specifies the layer custom recipes.</p>",
878
- "Layer$DefaultRecipes": null,
879
- "Layer$CustomRecipes": "<p>A <code>LayerCustomRecipes</code> object that specifies the layer's custom recipes.</p>",
880
- "UpdateLayerRequest$CustomRecipes": "<p>A <code>LayerCustomRecipes</code> object that specifies the layer's custom recipes.</p>"
881
- }
882
- },
883
- "RegisterElasticIpRequest": {
884
- "base": null,
885
- "refs": {
886
- }
887
- },
888
- "RegisterElasticIpResult": {
889
- "base": "<p>Contains the response to a <code>RegisterElasticIp</code> request.</p>",
890
- "refs": {
891
- }
892
- },
893
- "RegisterInstanceRequest": {
894
- "base": null,
895
- "refs": {
896
- }
897
- },
898
- "RegisterInstanceResult": {
899
- "base": "<p>Contains the response to a <code>RegisterInstanceResult</code> request.</p>",
900
- "refs": {
901
- }
902
- },
903
- "RegisterRdsDbInstanceRequest": {
904
- "base": null,
905
- "refs": {
906
- }
907
- },
908
- "RegisterVolumeRequest": {
909
- "base": null,
910
- "refs": {
911
- }
912
- },
913
- "RegisterVolumeResult": {
914
- "base": "<p>Contains the response to a <code>RegisterVolume</code> request.</p>",
915
- "refs": {
916
- }
917
- },
918
- "ReportedOs": {
919
- "base": "<p>A registered instance's reported operating system.</p>",
920
- "refs": {
921
- "Instance$ReportedOs": "<p>For registered instances, the reported operating system.</p>"
922
- }
923
- },
924
- "ResourceNotFoundException": {
925
- "base": "<p>Indicates that a resource was not found.</p>",
926
- "refs": {
927
- }
928
- },
929
- "RootDeviceType": {
930
- "base": null,
931
- "refs": {
932
- "CloneStackRequest$DefaultRootDeviceType": "<p>The default root device type. This value is used by default for all instances in the cloned stack, but you can override it when you create an instance. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>",
933
- "CreateInstanceRequest$RootDeviceType": "<p>The instance root device type. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>",
934
- "CreateStackRequest$DefaultRootDeviceType": "<p>The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. The default option is <code>instance-store</code>. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>",
935
- "Instance$RootDeviceType": "<p>The instance's root device type. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>",
936
- "Stack$DefaultRootDeviceType": "<p>The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>",
937
- "UpdateStackRequest$DefaultRootDeviceType": "<p>The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device\">Storage for the Root Device</a>.</p>"
938
- }
939
- },
940
- "SelfUserProfile": {
941
- "base": "<p>Describes a user's SSH information.</p>",
942
- "refs": {
943
- "DescribeMyUserProfileResult$UserProfile": "<p>A <code>UserProfile</code> object that describes the user's SSH information.</p>"
944
- }
945
- },
946
- "ServiceError": {
947
- "base": "<p>Describes an AWS OpsWorks service error.</p>",
948
- "refs": {
949
- "ServiceErrors$member": null
950
- }
951
- },
952
- "ServiceErrors": {
953
- "base": null,
954
- "refs": {
955
- "DescribeServiceErrorsResult$ServiceErrors": "<p>An array of <code>ServiceError</code> objects that describe the specified service errors.</p>"
956
- }
957
- },
958
- "SetLoadBasedAutoScalingRequest": {
959
- "base": null,
960
- "refs": {
961
- }
962
- },
963
- "SetPermissionRequest": {
964
- "base": null,
965
- "refs": {
966
- }
967
- },
968
- "SetTimeBasedAutoScalingRequest": {
969
- "base": null,
970
- "refs": {
971
- }
972
- },
973
- "ShutdownEventConfiguration": {
974
- "base": "<p>The Shutdown event configuration.</p>",
975
- "refs": {
976
- "LifecycleEventConfiguration$Shutdown": "<p>A <code>ShutdownEventConfiguration</code> object that specifies the Shutdown event configuration.</p>"
977
- }
978
- },
979
- "Source": {
980
- "base": "<p>Contains the information required to retrieve an app or cookbook from a repository. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html\">Creating Apps</a> or <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html\">Custom Recipes and Cookbooks</a>.</p>",
981
- "refs": {
982
- "App$AppSource": "<p>A <code>Source</code> object that describes the app repository.</p>",
983
- "CloneStackRequest$CustomCookbooksSource": null,
984
- "CreateAppRequest$AppSource": "<p>A <code>Source</code> object that specifies the app repository.</p>",
985
- "CreateStackRequest$CustomCookbooksSource": null,
986
- "Stack$CustomCookbooksSource": null,
987
- "UpdateAppRequest$AppSource": "<p>A <code>Source</code> object that specifies the app repository.</p>",
988
- "UpdateStackRequest$CustomCookbooksSource": null
989
- }
990
- },
991
- "SourceType": {
992
- "base": null,
993
- "refs": {
994
- "Source$Type": "<p>The repository type.</p>"
995
- }
996
- },
997
- "SslConfiguration": {
998
- "base": "<p>Describes an app's SSL configuration.</p>",
999
- "refs": {
1000
- "App$SslConfiguration": "<p>An <code>SslConfiguration</code> object with the SSL configuration.</p>",
1001
- "CreateAppRequest$SslConfiguration": "<p>An <code>SslConfiguration</code> object with the SSL configuration.</p>",
1002
- "UpdateAppRequest$SslConfiguration": "<p>An <code>SslConfiguration</code> object with the SSL configuration.</p>"
1003
- }
1004
- },
1005
- "Stack": {
1006
- "base": "<p>Describes a stack.</p>",
1007
- "refs": {
1008
- "Stacks$member": null
1009
- }
1010
- },
1011
- "StackAttributes": {
1012
- "base": null,
1013
- "refs": {
1014
- "CloneStackRequest$Attributes": "<p>A list of stack attributes and values as key/value pairs to be added to the cloned stack.</p>",
1015
- "CreateStackRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>",
1016
- "Stack$Attributes": "<p>The stack's attributes.</p>",
1017
- "UpdateStackRequest$Attributes": "<p>One or more user-defined key/value pairs to be added to the stack attributes.</p>"
1018
- }
1019
- },
1020
- "StackAttributesKeys": {
1021
- "base": null,
1022
- "refs": {
1023
- "StackAttributes$key": null
1024
- }
1025
- },
1026
- "StackConfigurationManager": {
1027
- "base": "<p>Describes the configuration manager.</p>",
1028
- "refs": {
1029
- "CloneStackRequest$ConfigurationManager": "<p>The configuration manager. When you clone a stack we recommend that you use the configuration manager to specify the Chef version, 0.9, 11.4, or 11.10. The default value is currently 11.4.</p>",
1030
- "CreateStackRequest$ConfigurationManager": "<p>The configuration manager. When you clone a stack we recommend that you use the configuration manager to specify the Chef version, 0.9, 11.4, or 11.10. The default value is currently 11.4.</p>",
1031
- "Stack$ConfigurationManager": "<p>The configuration manager.</p>",
1032
- "UpdateStackRequest$ConfigurationManager": "<p>The configuration manager. When you clone a stack we recommend that you use the configuration manager to specify the Chef version, 0.9, 11.4, or 11.10. The default value is currently 11.4.</p>"
1033
- }
1034
- },
1035
- "StackSummary": {
1036
- "base": "<p>Summarizes the number of layers, instances, and apps in a stack.</p>",
1037
- "refs": {
1038
- "DescribeStackSummaryResult$StackSummary": "<p>A <code>StackSummary</code> object that contains the results.</p>"
1039
- }
1040
- },
1041
- "Stacks": {
1042
- "base": null,
1043
- "refs": {
1044
- "DescribeStacksResult$Stacks": "<p>An array of <code>Stack</code> objects that describe the stacks.</p>"
1045
- }
1046
- },
1047
- "StartInstanceRequest": {
1048
- "base": null,
1049
- "refs": {
1050
- }
1051
- },
1052
- "StartStackRequest": {
1053
- "base": null,
1054
- "refs": {
1055
- }
1056
- },
1057
- "StopInstanceRequest": {
1058
- "base": null,
1059
- "refs": {
1060
- }
1061
- },
1062
- "StopStackRequest": {
1063
- "base": null,
1064
- "refs": {
1065
- }
1066
- },
1067
- "String": {
1068
- "base": null,
1069
- "refs": {
1070
- "App$AppId": "<p>The app ID.</p>",
1071
- "App$StackId": "<p>The app stack ID.</p>",
1072
- "App$Shortname": "<p>The app's short name.</p>",
1073
- "App$Name": "<p>The app name.</p>",
1074
- "App$Description": "<p>A description of the app.</p>",
1075
- "App$CreatedAt": "<p>When the app was created.</p>",
1076
- "AppAttributes$value": null,
1077
- "AssignInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1078
- "AssignVolumeRequest$VolumeId": "<p>The volume ID.</p>",
1079
- "AssignVolumeRequest$InstanceId": "<p>The instance ID.</p>",
1080
- "AssociateElasticIpRequest$ElasticIp": "<p>The Elastic IP address.</p>",
1081
- "AssociateElasticIpRequest$InstanceId": "<p>The instance ID.</p>",
1082
- "AttachElasticLoadBalancerRequest$ElasticLoadBalancerName": "<p>The Elastic Load Balancing instance's name.</p>",
1083
- "AttachElasticLoadBalancerRequest$LayerId": "<p>The ID of the layer that the Elastic Load Balancing instance is to be attached to.</p>",
1084
- "BlockDeviceMapping$DeviceName": "<p>The device name that is exposed to the instance, such as <code>/dev/sdh</code>. For the root device, you can use the explicit device name or you can set this parameter to <code>ROOT_DEVICE</code> and AWS OpsWorks will provide the correct device name.</p>",
1085
- "BlockDeviceMapping$NoDevice": "<p>Suppresses the specified device included in the AMI's block device mapping.</p>",
1086
- "BlockDeviceMapping$VirtualName": "<p>The virtual device name. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html\">BlockDeviceMapping</a>.</p>",
1087
- "ChefConfiguration$BerkshelfVersion": "<p>The Berkshelf version.</p>",
1088
- "CloneStackRequest$SourceStackId": "<p>The source stack ID.</p>",
1089
- "CloneStackRequest$Name": "<p>The cloned stack name.</p>",
1090
- "CloneStackRequest$Region": "<p>The cloned stack AWS region, such as \"us-east-1\". For more information about AWS regions, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1091
- "CloneStackRequest$VpcId": "<p>The ID of the VPC that the cloned stack is to be launched into. It must be in the specified region. All instances are launched into this VPC, and you cannot change the ID later.</p> <ul> <li>If your account supports EC2 Classic, the default value is no VPC.</li> <li>If your account does not support EC2 Classic, the default value is the default VPC for the specified region.</li> </ul> <p>If the VPC ID corresponds to a default VPC and you have specified either the <code>DefaultAvailabilityZone</code> or the <code>DefaultSubnetId</code> parameter only, AWS OpsWorks infers the value of the other parameter. If you specify neither parameter, AWS OpsWorks sets these parameters to the first valid Availability Zone for the specified region and the corresponding default VPC subnet ID, respectively. </p> <p>If you specify a nondefault VPC ID, note the following:</p> <ul> <li>It must belong to a VPC in your account that is in the specified region.</li> <li>You must specify a value for <code>DefaultSubnetId</code>.</li> </ul> <p>For more information on how to use AWS OpsWorks with a VPC, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-vpc.html\">Running a Stack in a VPC</a>. For more information on default VPC and EC2 Classic, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html\">Supported Platforms</a>. </p>",
1092
- "CloneStackRequest$ServiceRoleArn": "<p>The stack AWS Identity and Access Management (IAM) role, which allows AWS OpsWorks to work with AWS resources on your behalf. You must set this parameter to the Amazon Resource Name (ARN) for an existing IAM role. If you create a stack by using the AWS OpsWorks console, it creates the role for you. You can obtain an existing stack's IAM ARN programmatically by calling <a>DescribePermissions</a>. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p> <note> <p>You must set this parameter to a valid service role ARN or the action will fail; there is no default value. You can specify the source stack's service role ARN, if you prefer, but you must do so explicitly.</p> </note>",
1093
- "CloneStackRequest$DefaultInstanceProfileArn": "<p>The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1094
- "CloneStackRequest$DefaultOs": "<p>The stack's operating system, which must be set to one of the following.</p> <ul> <li>Standard Linux operating systems: an Amazon Linux version such as <code>Amazon Linux 2014.09</code>, <code>Ubuntu 12.04 LTS</code>, or <code>Ubuntu 14.04 LTS</code>.</li> <li>Custom Linux AMIs: <code>Custom</code>. You specify the custom AMI you want to use when you create instances.</li> <li>Microsoft Windows Server 2012 R2.</li> </ul> <p> The default option is the current Amazon Linux version.</p>",
1095
- "CloneStackRequest$HostnameTheme": "<p>The stack's host name theme, with spaces are replaced by underscores. The theme is used to generate host names for the stack's instances. By default, <code>HostnameTheme</code> is set to <code>Layer_Dependent</code>, which creates host names by appending integers to the layer's short name. The other themes are:</p> <ul> <li> <code>Baked_Goods</code> </li> <li> <code>Clouds</code> </li> <li> <code>Europe_Cities</code> </li> <li> <code>Fruits</code> </li> <li> <code>Greek_Deities</code> </li> <li> <code>Legendary_creatures_from_Japan</code> </li> <li> <code>Planets_and_Moons</code> </li> <li> <code>Roman_Deities</code> </li> <li> <code>Scottish_Islands</code> </li> <li> <code>US_Cities</code> </li> <li> <code>Wild_Cats</code> </li> </ul> <p>To obtain a generated host name, call <code>GetHostNameSuggestion</code>, which returns a host name based on the current theme.</p>",
1096
- "CloneStackRequest$DefaultAvailabilityZone": "<p>The cloned stack's default Availability Zone, which must be in the specified region. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>. If you also specify a value for <code>DefaultSubnetId</code>, the subnet must be in the same zone. For more information, see the <code>VpcId</code> parameter description. </p>",
1097
- "CloneStackRequest$DefaultSubnetId": "<p>The stack's default VPC subnet ID. This parameter is required if you specify a value for the <code>VpcId</code> parameter. All instances are launched into this subnet unless you specify otherwise when you create the instance. If you also specify a value for <code>DefaultAvailabilityZone</code>, the subnet must be in that zone. For information on default values and when this parameter is required, see the <code>VpcId</code> parameter description. </p>",
1098
- "CloneStackRequest$CustomJson": "<p>A string that contains user-defined, custom JSON. It is used to override the corresponding default stack configuration JSON values. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a></p>",
1099
- "CloneStackRequest$DefaultSshKeyName": "<p>A default Amazon EC2 key pair name. The default value is none. If you specify a key pair name, AWS OpsWorks installs the public key on the instance and you can use the private key with an SSH client to log in to the instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html\"> Using SSH to Communicate with an Instance</a> and <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html\"> Managing SSH Access</a>. You can override this setting by specifying a different key pair, or no key pair, when you <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html\"> create an instance</a>. </p>",
1100
- "CloneStackResult$StackId": "<p>The cloned stack ID.</p>",
1101
- "Command$CommandId": "<p>The command ID.</p>",
1102
- "Command$InstanceId": "<p>The ID of the instance where the command was executed.</p>",
1103
- "Command$DeploymentId": "<p>The command deployment ID.</p>",
1104
- "Command$Status": "<p>The command status:</p> <ul> <li>failed</li> <li>successful</li> <li>skipped</li> <li>pending</li> </ul>",
1105
- "Command$LogUrl": "<p>The URL of the command log.</p>",
1106
- "Command$Type": "<p>The command type:</p> <ul> <li> <code>deploy</code> </li> <li> <code>rollback</code> </li> <li> <code>start</code> </li> <li> <code>stop</code> </li> <li> <code>restart</code> </li> <li> <code>undeploy</code> </li> <li> <code>update_dependencies</code> </li> <li> <code>install_dependencies</code> </li> <li> <code>update_custom_cookbooks</code> </li> <li> <code>execute_recipes</code> </li> </ul>",
1107
- "CreateAppRequest$StackId": "<p>The stack ID.</p>",
1108
- "CreateAppRequest$Shortname": "<p>The app's short name.</p>",
1109
- "CreateAppRequest$Name": "<p>The app name.</p>",
1110
- "CreateAppRequest$Description": "<p>A description of the app.</p>",
1111
- "CreateAppResult$AppId": "<p>The app ID.</p>",
1112
- "CreateDeploymentRequest$StackId": "<p>The stack ID.</p>",
1113
- "CreateDeploymentRequest$AppId": "<p>The app ID. This parameter is required for app deployments, but not for other deployment commands.</p>",
1114
- "CreateDeploymentRequest$Comment": "<p>A user-defined comment.</p>",
1115
- "CreateDeploymentRequest$CustomJson": "<p>A string that contains user-defined, custom JSON. It is used to override the corresponding default stack configuration JSON values. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a>.</p>",
1116
- "CreateDeploymentResult$DeploymentId": "<p>The deployment ID, which can be used with other requests to identify the deployment.</p>",
1117
- "CreateInstanceRequest$StackId": "<p>The stack ID.</p>",
1118
- "CreateInstanceRequest$InstanceType": "<p>The instance type. AWS OpsWorks supports all instance types except Cluster Compute, Cluster GPU, and High Memory Cluster. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\">Instance Families and Types</a>. The parameter values that you use to specify the various types are in the API Name column of the Available Instance Types table.</p>",
1119
- "CreateInstanceRequest$Hostname": "<p>The instance host name.</p>",
1120
- "CreateInstanceRequest$Os": "<p>The instance's operating system, which must be set to one of the following.</p> <p>For Windows stacks: Microsoft Windows Server 2012 R2.</p> <p>For Linux stacks:</p> <ul> <li>Standard operating systems: an Amazon Linux version such as <code>Amazon Linux 2014.09</code>, <code>Ubuntu 12.04 LTS</code>, or <code>Ubuntu 14.04 LTS</code>.</li> <li>Custom AMIs: <code>Custom</code> </li> </ul> <p>The default option is the current Amazon Linux version. If you set this parameter to <code>Custom</code>, you must use the <a>CreateInstance</a> action's AmiId parameter to specify the custom AMI that you want to use. For more information on the standard operating systems, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html\">Operating Systems</a>For more information on how to use custom AMIs with OpsWorks, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html\">Using Custom AMIs</a>.</p>",
1121
- "CreateInstanceRequest$AmiId": "<p>A custom AMI ID to be used to create the instance. The AMI should be based on one of the standard AWS OpsWorks AMIs: Amazon Linux, Ubuntu 12.04 LTS, or Ubuntu 14.04 LTS. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances.html\">Instances</a>.</p> <note>If you specify a custom AMI, you must set <code>Os</code> to <code>Custom</code>.</note>",
1122
- "CreateInstanceRequest$SshKeyName": "<p>The instance's Amazon EC2 key pair name.</p>",
1123
- "CreateInstanceRequest$AvailabilityZone": "<p>The instance Availability Zone. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1124
- "CreateInstanceRequest$VirtualizationType": "<p>The instance's virtualization type, <code>paravirtual</code> or <code>hvm</code>.</p>",
1125
- "CreateInstanceRequest$SubnetId": "<p>The ID of the instance's subnet. If the stack is running in a VPC, you can use this parameter to override the stack's default subnet ID value and direct AWS OpsWorks to launch the instance in a different subnet. </p>",
1126
- "CreateInstanceResult$InstanceId": "<p>The instance ID.</p>",
1127
- "CreateLayerRequest$StackId": "<p>The layer stack ID.</p>",
1128
- "CreateLayerRequest$Name": "<p>The layer name, which is used by the console.</p>",
1129
- "CreateLayerRequest$Shortname": "<p>For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks and by Chef recipes. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters, which are limited to the alphanumeric characters, '-', '_', and '.'.</p> <p>The built-in layers' short names are defined by AWS OpsWorks. For more information, see the <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/layers.html\">Layer Reference</a></p>",
1130
- "CreateLayerRequest$CustomInstanceProfileArn": "<p>The ARN of an IAM profile that to be used for the layer's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1131
- "CreateLayerResult$LayerId": "<p>The layer ID.</p>",
1132
- "CreateStackRequest$Name": "<p>The stack name.</p>",
1133
- "CreateStackRequest$Region": "<p>The stack AWS region, such as \"us-east-1\". For more information about Amazon regions, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1134
- "CreateStackRequest$VpcId": "<p>The ID of the VPC that the stack is to be launched into. It must be in the specified region. All instances are launched into this VPC, and you cannot change the ID later.</p> <ul> <li>If your account supports EC2 Classic, the default value is no VPC.</li> <li>If your account does not support EC2 Classic, the default value is the default VPC for the specified region.</li> </ul> <p>If the VPC ID corresponds to a default VPC and you have specified either the <code>DefaultAvailabilityZone</code> or the <code>DefaultSubnetId</code> parameter only, AWS OpsWorks infers the value of the other parameter. If you specify neither parameter, AWS OpsWorks sets these parameters to the first valid Availability Zone for the specified region and the corresponding default VPC subnet ID, respectively.</p> <p>If you specify a nondefault VPC ID, note the following:</p> <ul> <li>It must belong to a VPC in your account that is in the specified region.</li> <li>You must specify a value for <code>DefaultSubnetId</code>.</li> </ul> <p>For more information on how to use AWS OpsWorks with a VPC, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-vpc.html\">Running a Stack in a VPC</a>. For more information on default VPC and EC2 Classic, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html\">Supported Platforms</a>. </p>",
1135
- "CreateStackRequest$ServiceRoleArn": "<p>The stack AWS Identity and Access Management (IAM) role, which allows AWS OpsWorks to work with AWS resources on your behalf. You must set this parameter to the Amazon Resource Name (ARN) for an existing IAM role. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1136
- "CreateStackRequest$DefaultInstanceProfileArn": "<p>The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1137
- "CreateStackRequest$DefaultOs": "<p>The stack's operating system, which must be set to one of the following.</p> <ul> <li>Standard Linux operating systems: an Amazon Linux version such as <code>Amazon Linux 2014.09</code>, <code>Ubuntu 12.04 LTS</code>, or <code>Ubuntu 14.04 LTS</code>.</li> <li>Custom Linux AMIs: <code>Custom</code>. You specify the custom AMI you want to use when you create instances.</li> <li>Microsoft Windows Server 2012 R2.</li> </ul> <p> The default option is the current Amazon Linux version.</p>",
1138
- "CreateStackRequest$HostnameTheme": "<p>The stack's host name theme, with spaces are replaced by underscores. The theme is used to generate host names for the stack's instances. By default, <code>HostnameTheme</code> is set to <code>Layer_Dependent</code>, which creates host names by appending integers to the layer's short name. The other themes are:</p> <ul> <li> <code>Baked_Goods</code> </li> <li> <code>Clouds</code> </li> <li> <code>Europe_Cities</code> </li> <li> <code>Fruits</code> </li> <li> <code>Greek_Deities</code> </li> <li> <code>Legendary_creatures_from_Japan</code> </li> <li> <code>Planets_and_Moons</code> </li> <li> <code>Roman_Deities</code> </li> <li> <code>Scottish_Islands</code> </li> <li> <code>US_Cities</code> </li> <li> <code>Wild_Cats</code> </li> </ul> <p>To obtain a generated host name, call <code>GetHostNameSuggestion</code>, which returns a host name based on the current theme.</p>",
1139
- "CreateStackRequest$DefaultAvailabilityZone": "<p>The stack's default Availability Zone, which must be in the specified region. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>. If you also specify a value for <code>DefaultSubnetId</code>, the subnet must be in the same zone. For more information, see the <code>VpcId</code> parameter description. </p>",
1140
- "CreateStackRequest$DefaultSubnetId": "<p>The stack's default VPC subnet ID. This parameter is required if you specify a value for the <code>VpcId</code> parameter. All instances are launched into this subnet unless you specify otherwise when you create the instance. If you also specify a value for <code>DefaultAvailabilityZone</code>, the subnet must be in that zone. For information on default values and when this parameter is required, see the <code>VpcId</code> parameter description. </p>",
1141
- "CreateStackRequest$CustomJson": "<p>A string that contains user-defined, custom JSON. It can be used to override the corresponding default stack configuration attribute values, or to pass data to recipes. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a>.</p>",
1142
- "CreateStackRequest$DefaultSshKeyName": "<p>A default Amazon EC2 key pair name. The default value is none. If you specify a key pair name, AWS OpsWorks installs the public key on the instance and you can use the private key with an SSH client to log in to the instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html\"> Using SSH to Communicate with an Instance</a> and <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html\"> Managing SSH Access</a>. You can override this setting by specifying a different key pair, or no key pair, when you <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html\"> create an instance</a>. </p>",
1143
- "CreateStackResult$StackId": "<p>The stack ID, which is an opaque string that you use to identify the stack when performing actions such as <code>DescribeStacks</code>.</p>",
1144
- "CreateUserProfileRequest$IamUserArn": "<p>The user's IAM ARN.</p>",
1145
- "CreateUserProfileRequest$SshUsername": "<p>The user's SSH user name. The allowable characters are [a-z], [A-Z], [0-9], '-', and '_'. If the specified name includes other punctuation marks, AWS OpsWorks removes them. For example, <code>my.name</code> will be changed to <code>myname</code>. If you do not specify an SSH user name, AWS OpsWorks generates one from the IAM user name. </p>",
1146
- "CreateUserProfileRequest$SshPublicKey": "<p>The user's public SSH key.</p>",
1147
- "CreateUserProfileResult$IamUserArn": "<p>The user's IAM ARN.</p>",
1148
- "DataSource$Type": "<p>The data source's type, <code>AutoSelectOpsworksMysqlInstance</code>, <code>OpsworksMysqlInstance</code>, or <code>RdsDbInstance</code>.</p>",
1149
- "DataSource$Arn": "<p>The data source's ARN.</p>",
1150
- "DataSource$DatabaseName": "<p>The database name.</p>",
1151
- "DeleteAppRequest$AppId": "<p>The app ID.</p>",
1152
- "DeleteInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1153
- "DeleteLayerRequest$LayerId": "<p>The layer ID.</p>",
1154
- "DeleteStackRequest$StackId": "<p>The stack ID.</p>",
1155
- "DeleteUserProfileRequest$IamUserArn": "<p>The user's IAM ARN.</p>",
1156
- "Deployment$DeploymentId": "<p>The deployment ID.</p>",
1157
- "Deployment$StackId": "<p>The stack ID.</p>",
1158
- "Deployment$AppId": "<p>The app ID.</p>",
1159
- "Deployment$IamUserArn": "<p>The user's IAM ARN.</p>",
1160
- "Deployment$Comment": "<p>A user-defined comment.</p>",
1161
- "Deployment$Status": "<p>The deployment status:</p> <ul> <li>running</li> <li>successful</li> <li>failed</li> </ul>",
1162
- "Deployment$CustomJson": "<p>A string that contains user-defined custom JSON. It can be used to override the corresponding default stack configuration attribute values for stack or to pass data to recipes. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a>.</p>",
1163
- "DeploymentCommandArgs$key": null,
1164
- "DeregisterElasticIpRequest$ElasticIp": "<p>The Elastic IP address.</p>",
1165
- "DeregisterInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1166
- "DeregisterRdsDbInstanceRequest$RdsDbInstanceArn": "<p>The Amazon RDS instance's ARN.</p>",
1167
- "DeregisterVolumeRequest$VolumeId": "<p>The AWS OpsWorks volume ID, which is the GUID that AWS OpsWorks assigned to the instance when you registered the volume with the stack, not the Amazon EC2 volume ID.</p>",
1168
- "DescribeAppsRequest$StackId": "<p>The app stack ID. If you use this parameter, <code>DescribeApps</code> returns a description of the apps in the specified stack.</p>",
1169
- "DescribeCommandsRequest$DeploymentId": "<p>The deployment ID. If you include this parameter, <code>DescribeCommands</code> returns a description of the commands associated with the specified deployment.</p>",
1170
- "DescribeCommandsRequest$InstanceId": "<p>The instance ID. If you include this parameter, <code>DescribeCommands</code> returns a description of the commands associated with the specified instance.</p>",
1171
- "DescribeDeploymentsRequest$StackId": "<p>The stack ID. If you include this parameter, <code>DescribeDeployments</code> returns a description of the commands associated with the specified stack.</p>",
1172
- "DescribeDeploymentsRequest$AppId": "<p>The app ID. If you include this parameter, <code>DescribeDeployments</code> returns a description of the commands associated with the specified app.</p>",
1173
- "DescribeElasticIpsRequest$InstanceId": "<p>The instance ID. If you include this parameter, <code>DescribeElasticIps</code> returns a description of the Elastic IP addresses associated with the specified instance.</p>",
1174
- "DescribeElasticIpsRequest$StackId": "<p>A stack ID. If you include this parameter, <code>DescribeElasticIps</code> returns a description of the Elastic IP addresses that are registered with the specified stack.</p>",
1175
- "DescribeElasticLoadBalancersRequest$StackId": "<p>A stack ID. The action describes the stack's Elastic Load Balancing instances.</p>",
1176
- "DescribeInstancesRequest$StackId": "<p>A stack ID. If you use this parameter, <code>DescribeInstances</code> returns descriptions of the instances associated with the specified stack.</p>",
1177
- "DescribeInstancesRequest$LayerId": "<p>A layer ID. If you use this parameter, <code>DescribeInstances</code> returns descriptions of the instances associated with the specified layer.</p>",
1178
- "DescribeLayersRequest$StackId": "<p>The stack ID.</p>",
1179
- "DescribePermissionsRequest$IamUserArn": "<p>The user's IAM ARN. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1180
- "DescribePermissionsRequest$StackId": "<p>The stack ID.</p>",
1181
- "DescribeRaidArraysRequest$InstanceId": "<p>The instance ID. If you use this parameter, <code>DescribeRaidArrays</code> returns descriptions of the RAID arrays associated with the specified instance. </p>",
1182
- "DescribeRaidArraysRequest$StackId": "<p>The stack ID.</p>",
1183
- "DescribeRdsDbInstancesRequest$StackId": "<p>The stack ID that the instances are registered with. The operation returns descriptions of all registered Amazon RDS instances.</p>",
1184
- "DescribeServiceErrorsRequest$StackId": "<p>The stack ID. If you use this parameter, <code>DescribeServiceErrors</code> returns descriptions of the errors associated with the specified stack.</p>",
1185
- "DescribeServiceErrorsRequest$InstanceId": "<p>The instance ID. If you use this parameter, <code>DescribeServiceErrors</code> returns descriptions of the errors associated with the specified instance.</p>",
1186
- "DescribeStackProvisioningParametersRequest$StackId": "<p>The stack ID</p>",
1187
- "DescribeStackProvisioningParametersResult$AgentInstallerUrl": "<p>The AWS OpsWorks agent installer's URL.</p>",
1188
- "DescribeStackSummaryRequest$StackId": "<p>The stack ID.</p>",
1189
- "DescribeVolumesRequest$InstanceId": "<p>The instance ID. If you use this parameter, <code>DescribeVolumes</code> returns descriptions of the volumes associated with the specified instance.</p>",
1190
- "DescribeVolumesRequest$StackId": "<p>A stack ID. The action describes the stack's registered Amazon EBS volumes.</p>",
1191
- "DescribeVolumesRequest$RaidArrayId": "<p>The RAID array ID. If you use this parameter, <code>DescribeVolumes</code> returns descriptions of the volumes associated with the specified RAID array.</p>",
1192
- "DetachElasticLoadBalancerRequest$ElasticLoadBalancerName": "<p>The Elastic Load Balancing instance's name.</p>",
1193
- "DetachElasticLoadBalancerRequest$LayerId": "<p>The ID of the layer that the Elastic Load Balancing instance is attached to.</p>",
1194
- "DisassociateElasticIpRequest$ElasticIp": "<p>The Elastic IP address.</p>",
1195
- "EbsBlockDevice$SnapshotId": "<p>The snapshot ID.</p>",
1196
- "ElasticIp$Ip": "<p>The IP address.</p>",
1197
- "ElasticIp$Name": "<p>The name.</p>",
1198
- "ElasticIp$Domain": "<p>The domain.</p>",
1199
- "ElasticIp$Region": "<p>The AWS region. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1200
- "ElasticIp$InstanceId": "<p>The ID of the instance that the address is attached to.</p>",
1201
- "ElasticLoadBalancer$ElasticLoadBalancerName": "<p>The Elastic Load Balancing instance's name.</p>",
1202
- "ElasticLoadBalancer$Region": "<p>The instance's AWS region.</p>",
1203
- "ElasticLoadBalancer$DnsName": "<p>The instance's public DNS name.</p>",
1204
- "ElasticLoadBalancer$StackId": "<p>The ID of the stack that the instance is associated with.</p>",
1205
- "ElasticLoadBalancer$LayerId": "<p>The ID of the layer that the instance is attached to.</p>",
1206
- "ElasticLoadBalancer$VpcId": "<p>The VPC ID.</p>",
1207
- "EnvironmentVariable$Key": "<p>(Required) The environment variable's name, which can consist of up to 64 characters and must be specified. The name can contain upper- and lowercase letters, numbers, and underscores (_), but it must start with a letter or underscore.</p>",
1208
- "EnvironmentVariable$Value": "<p>(Optional) The environment variable's value, which can be left empty. If you specify a value, it can contain up to 256 characters, which must all be printable.</p>",
1209
- "GetHostnameSuggestionRequest$LayerId": "<p>The layer ID.</p>",
1210
- "GetHostnameSuggestionResult$LayerId": "<p>The layer ID.</p>",
1211
- "GetHostnameSuggestionResult$Hostname": "<p>The generated host name.</p>",
1212
- "GrantAccessRequest$InstanceId": "<p>The instance's AWS OpsWorks ID.</p>",
1213
- "Instance$InstanceId": "<p>The instance ID.</p>",
1214
- "Instance$Ec2InstanceId": "<p>The ID of the associated Amazon EC2 instance.</p>",
1215
- "Instance$Hostname": "<p>The instance host name.</p>",
1216
- "Instance$StackId": "<p>The stack ID.</p>",
1217
- "Instance$InstanceType": "<p>The instance type. AWS OpsWorks supports all instance types except Cluster Compute, Cluster GPU, and High Memory Cluster. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\">Instance Families and Types</a>. The parameter values that specify the various types are in the API Name column of the Available Instance Types table.</p>",
1218
- "Instance$InstanceProfileArn": "<p>The ARN of the instance's IAM profile. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1219
- "Instance$Status": "<p>The instance status:</p> <ul> <li> <code>booting</code> </li> <li> <code>connection_lost</code> </li> <li> <code>online</code> </li> <li> <code>pending</code> </li> <li> <code>rebooting</code> </li> <li> <code>requested</code> </li> <li> <code>running_setup</code> </li> <li> <code>setup_failed</code> </li> <li> <code>shutting_down</code> </li> <li> <code>start_failed</code> </li> <li> <code>stopped</code> </li> <li> <code>stopping</code> </li> <li> <code>terminated</code> </li> <li> <code>terminating</code> </li> </ul>",
1220
- "Instance$Os": "<p>The instance's operating system.</p>",
1221
- "Instance$AmiId": "<p>A custom AMI ID to be used to create the instance. The AMI should be based on one of the standard AWS OpsWorks APIs: Amazon Linux, Ubuntu 12.04 LTS, or Ubuntu 14.04 LTS. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances.html\">Instances</a></p>",
1222
- "Instance$AvailabilityZone": "<p>The instance Availability Zone. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1223
- "Instance$SubnetId": "<p>The instance's subnet ID, if the stack is running in a VPC.</p>",
1224
- "Instance$PublicDns": "<p>The instance public DNS name.</p>",
1225
- "Instance$PrivateDns": "<p>The instance private DNS name.</p>",
1226
- "Instance$PublicIp": "<p>The instance public IP address.</p>",
1227
- "Instance$PrivateIp": "<p>The instance private IP address.</p>",
1228
- "Instance$ElasticIp": "<p>The instance <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html\">Elastic IP address </a>.</p>",
1229
- "Instance$SshKeyName": "<p>The instance's Amazon EC2 key pair name.</p>",
1230
- "Instance$SshHostRsaKeyFingerprint": "<p>The SSH key's RSA fingerprint.</p>",
1231
- "Instance$SshHostDsaKeyFingerprint": "<p>The SSH key's DSA fingerprint.</p>",
1232
- "Instance$LastServiceErrorId": "<p>The ID of the last service error. For more information, call <a>DescribeServiceErrors</a>.</p>",
1233
- "Instance$RootDeviceVolumeId": "<p>The root device volume ID.</p>",
1234
- "Instance$ReportedAgentVersion": "<p>The instance's reported AWS OpsWorks agent version.</p>",
1235
- "Instance$InfrastructureClass": "<p>For registered instances, the infrastructure class: <code>ec2</code> or <code>on-premises</code></p>",
1236
- "Instance$RegisteredBy": "<p>For registered instances, who performed the registration.</p>",
1237
- "InstanceIdentity$Document": "<p>A JSON document that contains the metadata. </p>",
1238
- "InstanceIdentity$Signature": "<p>A signature that can be used to verify the document's accuracy and authenticity. </p>",
1239
- "Layer$StackId": "<p>The layer stack ID.</p>",
1240
- "Layer$LayerId": "<p>The layer ID.</p>",
1241
- "Layer$Name": "<p>The layer name.</p>",
1242
- "Layer$Shortname": "<p>The layer short name.</p>",
1243
- "Layer$CustomInstanceProfileArn": "<p>The ARN of the default IAM profile to be used for the layer's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1244
- "LayerAttributes$value": null,
1245
- "LoadBasedAutoScalingConfiguration$LayerId": "<p>The layer ID.</p>",
1246
- "Parameters$key": null,
1247
- "Parameters$value": null,
1248
- "Permission$StackId": "<p>A stack ID.</p>",
1249
- "Permission$IamUserArn": "<p>The Amazon Resource Name (ARN) for an AWS Identity and Access Management (IAM) role. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1250
- "Permission$Level": "<p>The user's permission level, which must be the following:</p> <ul> <li> <code>deny</code> </li> <li> <code>show</code> </li> <li> <code>deploy</code> </li> <li> <code>manage</code> </li> <li> <code>iam_only</code> </li> </ul> <p>For more information on the permissions associated with these levels, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a></p>",
1251
- "RaidArray$RaidArrayId": "<p>The array ID.</p>",
1252
- "RaidArray$InstanceId": "<p>The instance ID.</p>",
1253
- "RaidArray$Name": "<p>The array name.</p>",
1254
- "RaidArray$Device": "<p>The array's Linux device. For example /dev/mdadm0.</p>",
1255
- "RaidArray$MountPoint": "<p>The array's mount point.</p>",
1256
- "RaidArray$AvailabilityZone": "<p>The array's Availability Zone. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1257
- "RaidArray$StackId": "<p>The stack ID.</p>",
1258
- "RaidArray$VolumeType": "<p>The volume type, standard or PIOPS.</p>",
1259
- "RdsDbInstance$RdsDbInstanceArn": "<p>The instance's ARN.</p>",
1260
- "RdsDbInstance$DbInstanceIdentifier": "<p>The DB instance identifier.</p>",
1261
- "RdsDbInstance$DbUser": "<p>The master user name.</p>",
1262
- "RdsDbInstance$DbPassword": "<p>AWS OpsWorks returns <code>*****FILTERED*****</code> instead of the actual value.</p>",
1263
- "RdsDbInstance$Region": "<p>The instance's AWS region.</p>",
1264
- "RdsDbInstance$Address": "<p>The instance's address.</p>",
1265
- "RdsDbInstance$Engine": "<p>The instance's database engine.</p>",
1266
- "RdsDbInstance$StackId": "<p>The ID of the stack that the instance is registered with.</p>",
1267
- "RebootInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1268
- "RegisterElasticIpRequest$ElasticIp": "<p>The Elastic IP address.</p>",
1269
- "RegisterElasticIpRequest$StackId": "<p>The stack ID.</p>",
1270
- "RegisterElasticIpResult$ElasticIp": "<p>The Elastic IP address.</p>",
1271
- "RegisterInstanceRequest$StackId": "<p>The ID of the stack that the instance is to be registered with.</p>",
1272
- "RegisterInstanceRequest$Hostname": "<p>The instance's hostname.</p>",
1273
- "RegisterInstanceRequest$PublicIp": "<p>The instance's public IP address.</p>",
1274
- "RegisterInstanceRequest$PrivateIp": "<p>The instance's private IP address.</p>",
1275
- "RegisterInstanceRequest$RsaPublicKey": "<p>The instances public RSA key. This key is used to encrypt communication between the instance and the service.</p>",
1276
- "RegisterInstanceRequest$RsaPublicKeyFingerprint": "<p>The instances public RSA key fingerprint.</p>",
1277
- "RegisterInstanceResult$InstanceId": "<p>The registered instance's AWS OpsWorks ID.</p>",
1278
- "RegisterRdsDbInstanceRequest$StackId": "<p>The stack ID.</p>",
1279
- "RegisterRdsDbInstanceRequest$RdsDbInstanceArn": "<p>The Amazon RDS instance's ARN.</p>",
1280
- "RegisterRdsDbInstanceRequest$DbUser": "<p>The database's master user name.</p>",
1281
- "RegisterRdsDbInstanceRequest$DbPassword": "<p>The database password.</p>",
1282
- "RegisterVolumeRequest$Ec2VolumeId": "<p>The Amazon EBS volume ID.</p>",
1283
- "RegisterVolumeRequest$StackId": "<p>The stack ID.</p>",
1284
- "RegisterVolumeResult$VolumeId": "<p>The volume ID.</p>",
1285
- "ReportedOs$Family": "<p>The operating system family.</p>",
1286
- "ReportedOs$Name": "<p>The operating system name.</p>",
1287
- "ReportedOs$Version": "<p>The operating system version.</p>",
1288
- "ResourceNotFoundException$message": "<p>The exception message.</p>",
1289
- "SelfUserProfile$IamUserArn": "<p>The user's IAM ARN.</p>",
1290
- "SelfUserProfile$Name": "<p>The user's name.</p>",
1291
- "SelfUserProfile$SshUsername": "<p>The user's SSH user name.</p>",
1292
- "SelfUserProfile$SshPublicKey": "<p>The user's SSH public key.</p>",
1293
- "ServiceError$ServiceErrorId": "<p>The error ID.</p>",
1294
- "ServiceError$StackId": "<p>The stack ID.</p>",
1295
- "ServiceError$InstanceId": "<p>The instance ID.</p>",
1296
- "ServiceError$Type": "<p>The error type.</p>",
1297
- "ServiceError$Message": "<p>A message that describes the error.</p>",
1298
- "SetLoadBasedAutoScalingRequest$LayerId": "<p>The layer ID.</p>",
1299
- "SetPermissionRequest$StackId": "<p>The stack ID.</p>",
1300
- "SetPermissionRequest$IamUserArn": "<p>The user's IAM ARN.</p>",
1301
- "SetPermissionRequest$Level": "<p>The user's permission level, which must be set to one of the following strings. You cannot set your own permissions level.</p> <ul> <li> <code>deny</code> </li> <li> <code>show</code> </li> <li> <code>deploy</code> </li> <li> <code>manage</code> </li> <li> <code>iam_only</code> </li> </ul> <p>For more information on the permissions associated with these levels, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html\">Managing User Permissions</a></p>",
1302
- "SetTimeBasedAutoScalingRequest$InstanceId": "<p>The instance ID.</p>",
1303
- "Source$Url": "<p>The source URL. </p>",
1304
- "Source$Username": "<p>This parameter depends on the repository type. </p> <ul> <li>For Amazon S3 bundles, set <code>Username</code> to the appropriate IAM access key ID.</li> <li>For HTTP bundles, Git repositories, and Subversion repositories, set <code>Username</code> to the user name.</li> </ul>",
1305
- "Source$Password": "<p>When included in a request, the parameter depends on the repository type. </p> <ul> <li>For Amazon S3 bundles, set <code>Password</code> to the appropriate IAM secret access key.</li> <li>For HTTP bundles and Subversion repositories, set <code>Password</code> to the password.</li> </ul> <p>For more information on how to safely handle IAM credentials, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html\"></a>.</p> <p>In responses, AWS OpsWorks returns <code>*****FILTERED*****</code> instead of the actual value.</p>",
1306
- "Source$SshKey": "<p>In requests, the repository's SSH key.</p> <p>In responses, AWS OpsWorks returns <code>*****FILTERED*****</code> instead of the actual value.</p>",
1307
- "Source$Revision": "<p>The application's version. AWS OpsWorks enables you to easily deploy new versions of an application. One of the simplest approaches is to have branches or revisions in your repository that represent different versions that can potentially be deployed.</p>",
1308
- "SslConfiguration$Certificate": "<p>The contents of the certificate's domain.crt file.</p>",
1309
- "SslConfiguration$PrivateKey": "<p>The private key; the contents of the certificate's domain.kex file.</p>",
1310
- "SslConfiguration$Chain": "<p>Optional. Can be used to specify an intermediate certificate authority key or client authentication.</p>",
1311
- "Stack$StackId": "<p>The stack ID.</p>",
1312
- "Stack$Name": "<p>The stack name.</p>",
1313
- "Stack$Arn": "<p>The stack's ARN.</p>",
1314
- "Stack$Region": "<p>The stack AWS region, such as \"us-east-1\". For more information about AWS regions, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1315
- "Stack$VpcId": "<p>The VPC ID, if the stack is running in a VPC.</p>",
1316
- "Stack$ServiceRoleArn": "<p>The stack AWS Identity and Access Management (IAM) role.</p>",
1317
- "Stack$DefaultInstanceProfileArn": "<p>The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1318
- "Stack$DefaultOs": "<p>The stack's default operating system. </p>",
1319
- "Stack$HostnameTheme": "<p>The stack host name theme, with spaces replaced by underscores.</p>",
1320
- "Stack$DefaultAvailabilityZone": "<p>The stack's default Availability Zone. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1321
- "Stack$DefaultSubnetId": "<p>The default subnet ID, if the stack is running in a VPC.</p>",
1322
- "Stack$CustomJson": "<p>A string that contains user-defined, custom JSON. It can be used to override the corresponding default stack configuration JSON values or to pass data to recipes. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a>.</p>",
1323
- "Stack$DefaultSshKeyName": "<p>A default Amazon EC2 key pair for the stack's instances. You can override this value when you create or update an instance.</p>",
1324
- "StackAttributes$value": null,
1325
- "StackConfigurationManager$Name": "<p>The name. This parameter must be set to \"Chef\".</p>",
1326
- "StackConfigurationManager$Version": "<p>The Chef version. This parameter must be set to 0.9, 11.4, or 11.10. The default value is 11.4.</p>",
1327
- "StackSummary$StackId": "<p>The stack ID.</p>",
1328
- "StackSummary$Name": "<p>The stack name.</p>",
1329
- "StackSummary$Arn": "<p>The stack's ARN.</p>",
1330
- "StartInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1331
- "StartStackRequest$StackId": "<p>The stack ID.</p>",
1332
- "StopInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1333
- "StopStackRequest$StackId": "<p>The stack ID.</p>",
1334
- "Strings$member": null,
1335
- "TemporaryCredential$Username": "<p>The user name.</p>",
1336
- "TemporaryCredential$Password": "<p>The password.</p>",
1337
- "TemporaryCredential$InstanceId": "<p>The instance's AWS OpsWorks ID.</p>",
1338
- "TimeBasedAutoScalingConfiguration$InstanceId": "<p>The instance ID.</p>",
1339
- "UnassignInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1340
- "UnassignVolumeRequest$VolumeId": "<p>The volume ID.</p>",
1341
- "UpdateAppRequest$AppId": "<p>The app ID.</p>",
1342
- "UpdateAppRequest$Name": "<p>The app name.</p>",
1343
- "UpdateAppRequest$Description": "<p>A description of the app.</p>",
1344
- "UpdateElasticIpRequest$ElasticIp": "<p>The address.</p>",
1345
- "UpdateElasticIpRequest$Name": "<p>The new name.</p>",
1346
- "UpdateInstanceRequest$InstanceId": "<p>The instance ID.</p>",
1347
- "UpdateInstanceRequest$InstanceType": "<p>The instance type. AWS OpsWorks supports all instance types except Cluster Compute, Cluster GPU, and High Memory Cluster. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\">Instance Families and Types</a>. The parameter values that you use to specify the various types are in the API Name column of the Available Instance Types table.</p>",
1348
- "UpdateInstanceRequest$Hostname": "<p>The instance host name.</p>",
1349
- "UpdateInstanceRequest$Os": "<p>The instance's operating system, which must be set to one of the following.</p> <p>For Windows stacks: Microsoft Windows Server 2012 R2.</p> <p>For Linux stacks:</p> <ul> <li>Standard operating systems: an Amazon Linux version such as <code>Amazon Linux 2014.09</code>, <code>Ubuntu 12.04 LTS</code>, or <code>Ubuntu 14.04 LTS</code>.</li> <li>Custom AMIs: <code>Custom</code> </li> </ul> <p>The default option is the current Amazon Linux version. If you set this parameter to <code>Custom</code>, you must use the <a>CreateInstance</a> action's AmiId parameter to specify the custom AMI that you want to use. For more information on the standard operating systems, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html\">Operating Systems</a>For more information on how to use custom AMIs with OpsWorks, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html\">Using Custom AMIs</a>.</p>",
1350
- "UpdateInstanceRequest$AmiId": "<p>A custom AMI ID to be used to create the instance. The AMI should be based on one of the standard AWS OpsWorks AMIs: Amazon Linux, Ubuntu 12.04 LTS, or Ubuntu 14.04 LTS. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances.html\">Instances</a></p> <note>If you specify a custom AMI, you must set <code>Os</code> to <code>Custom</code>.</note>",
1351
- "UpdateInstanceRequest$SshKeyName": "<p>The instance's Amazon EC2 key name.</p>",
1352
- "UpdateLayerRequest$LayerId": "<p>The layer ID.</p>",
1353
- "UpdateLayerRequest$Name": "<p>The layer name, which is used by the console.</p>",
1354
- "UpdateLayerRequest$Shortname": "<p>For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorksand by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\\A[a-z0-9\\-\\_\\.]+\\Z/.</p> <p>The built-in layers' short names are defined by AWS OpsWorks. For more information, see the <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/layers.html\">Layer Reference</a></p>",
1355
- "UpdateLayerRequest$CustomInstanceProfileArn": "<p>The ARN of an IAM profile to be used for all of the layer's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1356
- "UpdateMyUserProfileRequest$SshPublicKey": "<p>The user's SSH public key.</p>",
1357
- "UpdateRdsDbInstanceRequest$RdsDbInstanceArn": "<p>The Amazon RDS instance's ARN.</p>",
1358
- "UpdateRdsDbInstanceRequest$DbUser": "<p>The master user name.</p>",
1359
- "UpdateRdsDbInstanceRequest$DbPassword": "<p>The database password.</p>",
1360
- "UpdateStackRequest$StackId": "<p>The stack ID.</p>",
1361
- "UpdateStackRequest$Name": "<p>The stack's new name.</p>",
1362
- "UpdateStackRequest$ServiceRoleArn": "<p>The stack AWS Identity and Access Management (IAM) role, which allows AWS OpsWorks to work with AWS resources on your behalf. You must set this parameter to the Amazon Resource Name (ARN) for an existing IAM role. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p> <note> <p>You must set this parameter to a valid service role ARN or the action will fail; there is no default value. You can specify the stack's current service role ARN, if you prefer, but you must do so explicitly.</p> </note>",
1363
- "UpdateStackRequest$DefaultInstanceProfileArn": "<p>The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">Using Identifiers</a>.</p>",
1364
- "UpdateStackRequest$DefaultOs": "<p>The stack's operating system, which must be set to one of the following.</p> <ul> <li>Standard Linux operating systems: an Amazon Linux version such as <code>Amazon Linux 2014.09</code>, <code>Ubuntu 12.04 LTS</code>, or <code>Ubuntu 14.04 LTS</code>.</li> <li>Custom Linux AMIs: <code>Custom</code>. You specify the custom AMI you want to use when you create instances.</li> <li>Microsoft Windows Server 2012 R2.</li> </ul> <p> The default option is the current Amazon Linux version.</p>",
1365
- "UpdateStackRequest$HostnameTheme": "<p>The stack's new host name theme, with spaces are replaced by underscores. The theme is used to generate host names for the stack's instances. By default, <code>HostnameTheme</code> is set to <code>Layer_Dependent</code>, which creates host names by appending integers to the layer's short name. The other themes are:</p> <ul> <li> <code>Baked_Goods</code> </li> <li> <code>Clouds</code> </li> <li> <code>Europe_Cities</code> </li> <li> <code>Fruits</code> </li> <li> <code>Greek_Deities</code> </li> <li> <code>Legendary_creatures_from_Japan</code> </li> <li> <code>Planets_and_Moons</code> </li> <li> <code>Roman_Deities</code> </li> <li> <code>Scottish_Islands</code> </li> <li> <code>US_Cities</code> </li> <li> <code>Wild_Cats</code> </li> </ul> <p>To obtain a generated host name, call <code>GetHostNameSuggestion</code>, which returns a host name based on the current theme.</p>",
1366
- "UpdateStackRequest$DefaultAvailabilityZone": "<p>The stack's default Availability Zone, which must be in the specified region. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>. If you also specify a value for <code>DefaultSubnetId</code>, the subnet must be in the same zone. For more information, see <a>CreateStack</a>. </p>",
1367
- "UpdateStackRequest$DefaultSubnetId": "<p>The stack's default VPC subnet ID. This parameter is required if you specify a value for the <code>VpcId</code> parameter. All instances are launched into this subnet unless you specify otherwise when you create the instance. If you also specify a value for <code>DefaultAvailabilityZone</code>, the subnet must be in that zone. For information on default values and when this parameter is required, see the <code>VpcId</code> parameter description. </p>",
1368
- "UpdateStackRequest$CustomJson": "<p>A string that contains user-defined, custom JSON. It can be used to override the corresponding default stack configuration JSON values or to pass data to recipes. The string should be in the following format and must escape characters such as '\"'.:</p> <p> <code>\"{\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\",...}\"</code> </p> <p>For more information on custom JSON, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html\">Use Custom JSON to Modify the Stack Configuration Attributes</a>.</p>",
1369
- "UpdateStackRequest$DefaultSshKeyName": "<p>A default Amazon EC2 key pair name. The default value is none. If you specify a key pair name, AWS OpsWorks installs the public key on the instance and you can use the private key with an SSH client to log in to the instance. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html\"> Using SSH to Communicate with an Instance</a> and <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html\"> Managing SSH Access</a>. You can override this setting by specifying a different key pair, or no key pair, when you <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html\"> create an instance</a>. </p>",
1370
- "UpdateUserProfileRequest$IamUserArn": "<p>The user IAM ARN.</p>",
1371
- "UpdateUserProfileRequest$SshUsername": "<p>The user's SSH user name. The allowable characters are [a-z], [A-Z], [0-9], '-', and '_'. If the specified name includes other punctuation marks, AWS OpsWorks removes them. For example, <code>my.name</code> will be changed to <code>myname</code>. If you do not specify an SSH user name, AWS OpsWorks generates one from the IAM user name. </p>",
1372
- "UpdateUserProfileRequest$SshPublicKey": "<p>The user's new SSH public key.</p>",
1373
- "UpdateVolumeRequest$VolumeId": "<p>The volume ID.</p>",
1374
- "UpdateVolumeRequest$Name": "<p>The new name.</p>",
1375
- "UpdateVolumeRequest$MountPoint": "<p>The new mount point.</p>",
1376
- "UserProfile$IamUserArn": "<p>The user's IAM ARN.</p>",
1377
- "UserProfile$Name": "<p>The user's name.</p>",
1378
- "UserProfile$SshUsername": "<p>The user's SSH user name.</p>",
1379
- "UserProfile$SshPublicKey": "<p>The user's SSH public key.</p>",
1380
- "ValidationException$message": "<p>The exception message.</p>",
1381
- "Volume$VolumeId": "<p>The volume ID.</p>",
1382
- "Volume$Ec2VolumeId": "<p>The Amazon EC2 volume ID.</p>",
1383
- "Volume$Name": "<p>The volume name.</p>",
1384
- "Volume$RaidArrayId": "<p>The RAID array ID.</p>",
1385
- "Volume$InstanceId": "<p>The instance ID.</p>",
1386
- "Volume$Status": "<p>The value returned by <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeVolumes.html\">DescribeVolumes</a>.</p>",
1387
- "Volume$Device": "<p>The device name.</p>",
1388
- "Volume$MountPoint": "<p>The volume mount point. For example \"/dev/sdh\".</p>",
1389
- "Volume$Region": "<p>The AWS region. For more information about AWS regions, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1390
- "Volume$AvailabilityZone": "<p>The volume Availability Zone. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html\">Regions and Endpoints</a>.</p>",
1391
- "Volume$VolumeType": "<p>The volume type, standard or PIOPS.</p>",
1392
- "VolumeConfiguration$MountPoint": "<p>The volume mount point. For example \"/dev/sdh\".</p>",
1393
- "VolumeConfiguration$VolumeType": "<p>The volume type:</p> <ul> <li> <code>standard</code> - Magnetic</li> <li> <code>io1</code> - Provisioned IOPS (SSD)</li> <li> <code>gp2</code> - General Purpose (SSD)</li> </ul>"
1394
- }
1395
- },
1396
- "Strings": {
1397
- "base": null,
1398
- "refs": {
1399
- "App$Domains": "<p>The app vhost settings with multiple domains separated by commas. For example: <code>'www.example.com, example.com'</code></p>",
1400
- "AssignInstanceRequest$LayerIds": "<p>The layer ID, which must correspond to a custom layer. You cannot assign a registered instance to a built-in layer.</p>",
1401
- "AutoScalingThresholds$Alarms": "<p>Custom Cloudwatch auto scaling alarms, to be used as thresholds. This parameter takes a list of up to five alarm names, which are case sensitive and must be in the same region as the stack.</p> <note>To use custom alarms, you must update your service role to allow <code>cloudwatch:DescribeAlarms</code>. You can either have AWS OpsWorks update the role for you when you first use this feature or you can edit the role manually. For more information, see <a href=\"http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-servicerole.html\">Allowing AWS OpsWorks to Act on Your Behalf</a>.</note>",
1402
- "CloneStackRequest$CloneAppIds": "<p>A list of source stack app IDs to be included in the cloned stack.</p>",
1403
- "CreateAppRequest$Domains": "<p>The app virtual host settings, with multiple domains separated by commas. For example: <code>'www.example.com, example.com'</code></p>",
1404
- "CreateDeploymentRequest$InstanceIds": "<p>The instance IDs for the deployment targets.</p>",
1405
- "CreateInstanceRequest$LayerIds": "<p>An array that contains the instance layer IDs.</p>",
1406
- "CreateLayerRequest$CustomSecurityGroupIds": "<p>An array containing the layer custom security group IDs.</p>",
1407
- "CreateLayerRequest$Packages": "<p>An array of <code>Package</code> objects that describe the layer packages.</p>",
1408
- "Deployment$InstanceIds": "<p>The IDs of the target instances.</p>",
1409
- "DeploymentCommandArgs$value": null,
1410
- "DescribeAppsRequest$AppIds": "<p>An array of app IDs for the apps to be described. If you use this parameter, <code>DescribeApps</code> returns a description of the specified apps. Otherwise, it returns a description of every app.</p>",
1411
- "DescribeCommandsRequest$CommandIds": "<p>An array of command IDs. If you include this parameter, <code>DescribeCommands</code> returns a description of the specified commands. Otherwise, it returns a description of every command.</p>",
1412
- "DescribeDeploymentsRequest$DeploymentIds": "<p>An array of deployment IDs to be described. If you include this parameter, <code>DescribeDeployments</code> returns a description of the specified deployments. Otherwise, it returns a description of every deployment.</p>",
1413
- "DescribeElasticIpsRequest$Ips": "<p>An array of Elastic IP addresses to be described. If you include this parameter, <code>DescribeElasticIps</code> returns a description of the specified Elastic IP addresses. Otherwise, it returns a description of every Elastic IP address.</p>",
1414
- "DescribeElasticLoadBalancersRequest$LayerIds": "<p>A list of layer IDs. The action describes the Elastic Load Balancing instances for the specified layers.</p>",
1415
- "DescribeInstancesRequest$InstanceIds": "<p>An array of instance IDs to be described. If you use this parameter, <code>DescribeInstances</code> returns a description of the specified instances. Otherwise, it returns a description of every instance.</p>",
1416
- "DescribeLayersRequest$LayerIds": "<p>An array of layer IDs that specify the layers to be described. If you omit this parameter, <code>DescribeLayers</code> returns a description of every layer in the specified stack.</p>",
1417
- "DescribeLoadBasedAutoScalingRequest$LayerIds": "<p>An array of layer IDs.</p>",
1418
- "DescribeRaidArraysRequest$RaidArrayIds": "<p>An array of RAID array IDs. If you use this parameter, <code>DescribeRaidArrays</code> returns descriptions of the specified arrays. Otherwise, it returns a description of every array.</p>",
1419
- "DescribeRdsDbInstancesRequest$RdsDbInstanceArns": "<p>An array containing the ARNs of the instances to be described.</p>",
1420
- "DescribeServiceErrorsRequest$ServiceErrorIds": "<p>An array of service error IDs. If you use this parameter, <code>DescribeServiceErrors</code> returns descriptions of the specified errors. Otherwise, it returns a description of every error.</p>",
1421
- "DescribeStacksRequest$StackIds": "<p>An array of stack IDs that specify the stacks to be described. If you omit this parameter, <code>DescribeStacks</code> returns a description of every stack.</p>",
1422
- "DescribeTimeBasedAutoScalingRequest$InstanceIds": "<p>An array of instance IDs.</p>",
1423
- "DescribeUserProfilesRequest$IamUserArns": "<p>An array of IAM user ARNs that identify the users to be described. </p>",
1424
- "DescribeVolumesRequest$VolumeIds": "<p>Am array of volume IDs. If you use this parameter, <code>DescribeVolumes</code> returns descriptions of the specified volumes. Otherwise, it returns a description of every volume.</p>",
1425
- "ElasticLoadBalancer$AvailabilityZones": "<p>A list of Availability Zones.</p>",
1426
- "ElasticLoadBalancer$SubnetIds": "<p>A list of subnet IDs, if the stack is running in a VPC.</p>",
1427
- "ElasticLoadBalancer$Ec2InstanceIds": "<p>A list of the EC2 instances that the Elastic Load Balancing instance is managing traffic for.</p>",
1428
- "Instance$LayerIds": "<p>An array containing the instance layer IDs.</p>",
1429
- "Instance$SecurityGroupIds": "<p>An array containing the instance security group IDs.</p>",
1430
- "Layer$CustomSecurityGroupIds": "<p>An array containing the layer's custom security group IDs.</p>",
1431
- "Layer$DefaultSecurityGroupNames": "<p>An array containing the layer's security group names.</p>",
1432
- "Layer$Packages": "<p>An array of <code>Package</code> objects that describe the layer's packages.</p>",
1433
- "Recipes$Setup": "<p>An array of custom recipe names to be run following a <code>setup</code> event.</p>",
1434
- "Recipes$Configure": "<p>An array of custom recipe names to be run following a <code>configure</code> event.</p>",
1435
- "Recipes$Deploy": "<p>An array of custom recipe names to be run following a <code>deploy</code> event.</p>",
1436
- "Recipes$Undeploy": "<p>An array of custom recipe names to be run following a <code>undeploy</code> event.</p>",
1437
- "Recipes$Shutdown": "<p>An array of custom recipe names to be run following a <code>shutdown</code> event.</p>",
1438
- "UpdateAppRequest$Domains": "<p>The app's virtual host settings, with multiple domains separated by commas. For example: <code>'www.example.com, example.com'</code></p>",
1439
- "UpdateInstanceRequest$LayerIds": "<p>The instance's layer IDs.</p>",
1440
- "UpdateLayerRequest$CustomSecurityGroupIds": "<p>An array containing the layer's custom security group IDs.</p>",
1441
- "UpdateLayerRequest$Packages": "<p>An array of <code>Package</code> objects that describe the layer's packages.</p>"
1442
- }
1443
- },
1444
- "Switch": {
1445
- "base": null,
1446
- "refs": {
1447
- "DailyAutoScalingSchedule$value": null
1448
- }
1449
- },
1450
- "TemporaryCredential": {
1451
- "base": "<p>Contains the data needed by RDP clients such as the Microsoft Remote Desktop Connection to log in to the instance.</p>",
1452
- "refs": {
1453
- "GrantAccessResult$TemporaryCredential": "<p>A <code>TemporaryCredential</code> object that contains the data needed to log in to the instance by RDP clients, such as the Microsoft Remote Desktop Connection.</p>"
1454
- }
1455
- },
1456
- "TimeBasedAutoScalingConfiguration": {
1457
- "base": "<p>Describes an instance's time-based auto scaling configuration.</p>",
1458
- "refs": {
1459
- "TimeBasedAutoScalingConfigurations$member": null
1460
- }
1461
- },
1462
- "TimeBasedAutoScalingConfigurations": {
1463
- "base": null,
1464
- "refs": {
1465
- "DescribeTimeBasedAutoScalingResult$TimeBasedAutoScalingConfigurations": "<p>An array of <code>TimeBasedAutoScalingConfiguration</code> objects that describe the configuration for the specified instances.</p>"
1466
- }
1467
- },
1468
- "UnassignInstanceRequest": {
1469
- "base": null,
1470
- "refs": {
1471
- }
1472
- },
1473
- "UnassignVolumeRequest": {
1474
- "base": null,
1475
- "refs": {
1476
- }
1477
- },
1478
- "UpdateAppRequest": {
1479
- "base": null,
1480
- "refs": {
1481
- }
1482
- },
1483
- "UpdateElasticIpRequest": {
1484
- "base": null,
1485
- "refs": {
1486
- }
1487
- },
1488
- "UpdateInstanceRequest": {
1489
- "base": null,
1490
- "refs": {
1491
- }
1492
- },
1493
- "UpdateLayerRequest": {
1494
- "base": null,
1495
- "refs": {
1496
- }
1497
- },
1498
- "UpdateMyUserProfileRequest": {
1499
- "base": null,
1500
- "refs": {
1501
- }
1502
- },
1503
- "UpdateRdsDbInstanceRequest": {
1504
- "base": null,
1505
- "refs": {
1506
- }
1507
- },
1508
- "UpdateStackRequest": {
1509
- "base": null,
1510
- "refs": {
1511
- }
1512
- },
1513
- "UpdateUserProfileRequest": {
1514
- "base": null,
1515
- "refs": {
1516
- }
1517
- },
1518
- "UpdateVolumeRequest": {
1519
- "base": null,
1520
- "refs": {
1521
- }
1522
- },
1523
- "UserProfile": {
1524
- "base": "<p>Describes a user's SSH information.</p>",
1525
- "refs": {
1526
- "UserProfiles$member": null
1527
- }
1528
- },
1529
- "UserProfiles": {
1530
- "base": null,
1531
- "refs": {
1532
- "DescribeUserProfilesResult$UserProfiles": "<p>A <code>Users</code> object that describes the specified users.</p>"
1533
- }
1534
- },
1535
- "ValidForInMinutes": {
1536
- "base": null,
1537
- "refs": {
1538
- "GrantAccessRequest$ValidForInMinutes": "<p>The length of time (in minutes) that the grant is valid. When the grant expires at the end of this period, the user will no longer be able to use the credentials to log in. If the user is logged in at the time, he or she automatically will be logged out.</p>"
1539
- }
1540
- },
1541
- "ValidationException": {
1542
- "base": "<p>Indicates that a request was invalid.</p>",
1543
- "refs": {
1544
- }
1545
- },
1546
- "VirtualizationType": {
1547
- "base": null,
1548
- "refs": {
1549
- "Instance$VirtualizationType": "<p>The instance's virtualization type, <code>paravirtual</code> or <code>hvm</code>.</p>"
1550
- }
1551
- },
1552
- "Volume": {
1553
- "base": "<p>Describes an instance's Amazon EBS volume.</p>",
1554
- "refs": {
1555
- "Volumes$member": null
1556
- }
1557
- },
1558
- "VolumeConfiguration": {
1559
- "base": "<p>Describes an Amazon EBS volume configuration.</p>",
1560
- "refs": {
1561
- "VolumeConfigurations$member": null
1562
- }
1563
- },
1564
- "VolumeConfigurations": {
1565
- "base": null,
1566
- "refs": {
1567
- "CreateLayerRequest$VolumeConfigurations": "<p>A <code>VolumeConfigurations</code> object that describes the layer's Amazon EBS volumes.</p>",
1568
- "Layer$VolumeConfigurations": "<p>A <code>VolumeConfigurations</code> object that describes the layer's Amazon EBS volumes.</p>",
1569
- "UpdateLayerRequest$VolumeConfigurations": "<p>A <code>VolumeConfigurations</code> object that describes the layer's Amazon EBS volumes.</p>"
1570
- }
1571
- },
1572
- "VolumeType": {
1573
- "base": null,
1574
- "refs": {
1575
- "EbsBlockDevice$VolumeType": "<p>The volume type. <code>gp2</code> for General Purpose (SSD) volumes, <code>io1</code> for Provisioned IOPS (SSD) volumes, and <code>standard</code> for Magnetic volumes.</p>"
1576
- }
1577
- },
1578
- "Volumes": {
1579
- "base": null,
1580
- "refs": {
1581
- "DescribeVolumesResult$Volumes": "<p>An array of volume IDs.</p>"
1582
- }
1583
- },
1584
- "WeeklyAutoScalingSchedule": {
1585
- "base": "<p>Describes a time-based instance's auto scaling schedule. The schedule consists of a set of key-value pairs.</p> <ul> <li>The key is the time period (a UTC hour) and must be an integer from 0 - 23.</li> <li>The value indicates whether the instance should be online or offline for the specified period, and must be set to \"on\" or \"off\"</li> </ul> <p>The default setting for all time periods is off, so you use the following parameters primarily to specify the online periods. You don't have to explicitly specify offline periods unless you want to change an online period to an offline period. </p> <p>The following example specifies that the instance should be online for four hours, from UTC 1200 - 1600. It will be off for the remainder of the day.</p> <p> <code> { \"12\":\"on\", \"13\":\"on\", \"14\":\"on\", \"15\":\"on\" } </code> </p>",
1586
- "refs": {
1587
- "SetTimeBasedAutoScalingRequest$AutoScalingSchedule": "<p>An <code>AutoScalingSchedule</code> with the instance schedule.</p>",
1588
- "TimeBasedAutoScalingConfiguration$AutoScalingSchedule": "<p>A <code>WeeklyAutoScalingSchedule</code> object with the instance schedule.</p>"
1589
- }
1590
- }
1591
- }
1592
- }