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,725 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CancelUpdateStack": "<p>Cancels an update on the specified stack. If the call completes successfully, the stack will roll back the update and revert to the previous stack configuration.</p> <note>Only stacks that are in the UPDATE_IN_PROGRESS state can be canceled.</note>",
5
- "CreateStack": "<p>Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the status of the stack via the <a>DescribeStacks</a> API.</p>",
6
- "DeleteStack": "<p>Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up in the <a>DescribeStacks</a> API if the deletion has been completed successfully.</p>",
7
- "DescribeStackEvents": "<p>Returns all stack related events for a specified stack. For more information about a stack's event history, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html\">Stacks</a> in the AWS CloudFormation User Guide.</p> <note>You can list events for stacks that have failed to create or have been deleted by specifying the unique stack identifier (stack ID).</note>",
8
- "DescribeStackResource": "<p>Returns a description of the specified resource in the specified stack.</p> <p>For deleted stacks, DescribeStackResource returns resource information for up to 90 days after the stack has been deleted.</p>",
9
- "DescribeStackResources": "<p>Returns AWS resource descriptions for running and deleted stacks. If <code>StackName</code> is specified, all the associated resources that are part of the stack are returned. If <code>PhysicalResourceId</code> is specified, the associated resources of the stack that the resource belongs to are returned.</p> <note>Only the first 100 resources will be returned. If your stack has more resources than this, you should use <code>ListStackResources</code> instead.</note> <p>For deleted stacks, <code>DescribeStackResources</code> returns resource information for up to 90 days after the stack has been deleted.</p> <p>You must specify either <code>StackName</code> or <code>PhysicalResourceId</code>, but not both. In addition, you can specify <code>LogicalResourceId</code> to filter the returned result. For more information about resources, the <code>LogicalResourceId</code> and <code>PhysicalResourceId</code>, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User Guide</a>.</p> <note>A <code>ValidationError</code> is returned if you specify both <code>StackName</code> and <code>PhysicalResourceId</code> in the same request.</note>",
10
- "DescribeStacks": "<p>Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks created.</p>",
11
- "EstimateTemplateCost": "<p>Returns the estimated monthly cost of a template. The return value is an AWS Simple Monthly Calculator URL with a query string that describes the resources required to run the template.</p>",
12
- "GetStackPolicy": "<p>Returns the stack policy for a specified stack. If a stack doesn't have a policy, a null value is returned.</p>",
13
- "GetTemplate": "<p>Returns the template body for a specified stack. You can get the template for running or deleted stacks.</p> <p>For deleted stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted.</p> <note> If the template does not exist, a <code>ValidationError</code> is returned. </note>",
14
- "GetTemplateSummary": "<p>Returns information about a new or existing template. The <code>GetTemplateSummary</code> action is useful for viewing parameter information, such as default parameter values and parameter types, before you create or update a stack.</p> <p>You can use the <code>GetTemplateSummary</code> action when you submit a template, or you can get template information for a running or deleted stack.</p> <p>For deleted stacks, <code>GetTemplateSummary</code> returns the template information for up to 90 days after the stack has been deleted. If the template does not exist, a <code>ValidationError</code> is returned.</p>",
15
- "ListStackResources": "<p>Returns descriptions of all resources of the specified stack.</p> <p>For deleted stacks, ListStackResources returns resource information for up to 90 days after the stack has been deleted.</p>",
16
- "ListStacks": "<p>Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks is returned (including existing stacks and stacks that have been deleted).</p>",
17
- "SetStackPolicy": "<p>Sets a stack policy for a specified stack.</p>",
18
- "SignalResource": "<p>Sends a signal to the specified resource with a success or failure status. You can use the SignalResource API in conjunction with a creation policy or update policy. AWS CloudFormation doesn't proceed with a stack creation or update until resources receive the required number of signals or the timeout period is exceeded. The SignalResource API is useful in cases where you want to send signals from anywhere other than an Amazon EC2 instance.</p>",
19
- "UpdateStack": "<p>Updates a stack as specified in the template. After the call completes successfully, the stack update starts. You can check the status of the stack via the <a>DescribeStacks</a> action.</p> <p>To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a> action.</p> <p>Tags that were associated with this stack during creation time will still be associated with the stack after an <code>UpdateStack</code> operation.</p> <p>For more information about creating an update template, updating a stack, and monitoring the progress of the update, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html\">Updating a Stack</a>.</p>",
20
- "ValidateTemplate": "<p>Validates a specified template.</p>"
21
- },
22
- "service": "<fullname>AWS CloudFormation</fullname> <p>AWS CloudFormation enables you to create and manage AWS infrastructure deployments predictably and repeatedly. AWS CloudFormation helps you leverage AWS products such as Amazon EC2, EBS, Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost effective applications without worrying about creating and configuring the underlying AWS infrastructure.</p> <p>With AWS CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. AWS CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about this product, go to the <a href=\"http://aws.amazon.com/cloudformation/\">CloudFormation Product Page</a>.</p> <p>Amazon CloudFormation makes use of other AWS products. If you need additional technical information about a specific AWS product, you can find the product's technical documentation at <a href=\"http://aws.amazon.com/documentation/\">http://aws.amazon.com/documentation/</a>.</p>",
23
- "shapes": {
24
- "AllowedValue": {
25
- "base": null,
26
- "refs": {
27
- "AllowedValues$member": null
28
- }
29
- },
30
- "AllowedValues": {
31
- "base": null,
32
- "refs": {
33
- "ParameterConstraints$AllowedValues": "<p>A list of values that are permitted for a parameter.</p>"
34
- }
35
- },
36
- "AlreadyExistsException": {
37
- "base": "<p>Resource with the name requested already exists.</p>",
38
- "refs": {
39
- }
40
- },
41
- "CancelUpdateStackInput": {
42
- "base": "<p>The input for <a>CancelUpdateStack</a> action.</p>",
43
- "refs": {
44
- }
45
- },
46
- "Capabilities": {
47
- "base": null,
48
- "refs": {
49
- "CreateStackInput$Capabilities": "<p>A list of capabilities that you must specify before AWS CloudFormation can create or update certain stacks. Some stack templates might include resources that can affect permissions in your AWS account. For those stacks, you must explicitly acknowledge their capabilities by specifying this parameter.</p> <p>Currently, the only valid value is <code>CAPABILITY_IAM</code>, which is required for the following resources: <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html\"> AWS::IAM::AccessKey</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html\"> AWS::IAM::Group</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html\"> AWS::IAM::InstanceProfile</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html\"> AWS::IAM::Policy</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html\"> AWS::IAM::Role</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html\"> AWS::IAM::User</a>, and <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html\"> AWS::IAM::UserToGroupAddition</a>. If your stack template contains these resources, we recommend that you review any permissions associated with them. If you don't specify this parameter, this action returns an <code>InsufficientCapabilities</code> error.</p>",
50
- "GetTemplateSummaryOutput$Capabilities": "<p>The capabilities found within the template. Currently, AWS CloudFormation supports only the CAPABILITY_IAM capability. If your template contains IAM resources, you must specify the CAPABILITY_IAM value for this parameter when you use the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template; otherwise, those actions return an InsufficientCapabilities error.</p>",
51
- "Stack$Capabilities": "<p>The capabilities allowed in the stack.</p>",
52
- "UpdateStackInput$Capabilities": "<p>A list of capabilities that you must specify before AWS CloudFormation can create or update certain stacks. Some stack templates might include resources that can affect permissions in your AWS account. For those stacks, you must explicitly acknowledge their capabilities by specifying this parameter. Currently, the only valid value is <code>CAPABILITY_IAM</code>, which is required for the following resources: <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html\"> AWS::IAM::AccessKey</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html\"> AWS::IAM::Group</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html\"> AWS::IAM::InstanceProfile</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html\"> AWS::IAM::Policy</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html\"> AWS::IAM::Role</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html\"> AWS::IAM::User</a>, and <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html\"> AWS::IAM::UserToGroupAddition</a>. If your stack template contains these resources, we recommend that you review any permissions associated with them. If you don't specify this parameter, this action returns an InsufficientCapabilities error.</p>",
53
- "ValidateTemplateOutput$Capabilities": "<p>The capabilities found within the template. Currently, AWS CloudFormation supports only the CAPABILITY_IAM capability. If your template contains IAM resources, you must specify the CAPABILITY_IAM value for this parameter when you use the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template; otherwise, those actions return an InsufficientCapabilities error.</p>"
54
- }
55
- },
56
- "CapabilitiesReason": {
57
- "base": null,
58
- "refs": {
59
- "GetTemplateSummaryOutput$CapabilitiesReason": "<p>The list of resources that generated the values in the <code>Capabilities</code> response element.</p>",
60
- "ValidateTemplateOutput$CapabilitiesReason": "<p>The list of resources that generated the values in the <code>Capabilities</code> response element.</p>"
61
- }
62
- },
63
- "Capability": {
64
- "base": null,
65
- "refs": {
66
- "Capabilities$member": null
67
- }
68
- },
69
- "CreateStackInput": {
70
- "base": "<p>The input for <a>CreateStack</a> action.</p>",
71
- "refs": {
72
- }
73
- },
74
- "CreateStackOutput": {
75
- "base": "<p>The output for a <a>CreateStack</a> action.</p>",
76
- "refs": {
77
- }
78
- },
79
- "CreationTime": {
80
- "base": null,
81
- "refs": {
82
- "Stack$CreationTime": "<p>Time at which the stack was created.</p>",
83
- "StackSummary$CreationTime": "<p>The time the stack was created.</p>"
84
- }
85
- },
86
- "DeleteStackInput": {
87
- "base": "<p>The input for <a>DeleteStack</a> action.</p>",
88
- "refs": {
89
- }
90
- },
91
- "DeletionTime": {
92
- "base": null,
93
- "refs": {
94
- "StackSummary$DeletionTime": "<p>The time the stack was deleted.</p>"
95
- }
96
- },
97
- "DescribeStackEventsInput": {
98
- "base": "<p>The input for <a>DescribeStackEvents</a> action.</p>",
99
- "refs": {
100
- }
101
- },
102
- "DescribeStackEventsOutput": {
103
- "base": "<p>The output for a <a>DescribeStackEvents</a> action.</p>",
104
- "refs": {
105
- }
106
- },
107
- "DescribeStackResourceInput": {
108
- "base": "<p>The input for <a>DescribeStackResource</a> action.</p>",
109
- "refs": {
110
- }
111
- },
112
- "DescribeStackResourceOutput": {
113
- "base": "<p>The output for a <a>DescribeStackResource</a> action.</p>",
114
- "refs": {
115
- }
116
- },
117
- "DescribeStackResourcesInput": {
118
- "base": "<p>The input for <a>DescribeStackResources</a> action.</p>",
119
- "refs": {
120
- }
121
- },
122
- "DescribeStackResourcesOutput": {
123
- "base": "<p>The output for a <a>DescribeStackResources</a> action.</p>",
124
- "refs": {
125
- }
126
- },
127
- "DescribeStacksInput": {
128
- "base": "<p>The input for <a>DescribeStacks</a> action.</p>",
129
- "refs": {
130
- }
131
- },
132
- "DescribeStacksOutput": {
133
- "base": "<p>The output for a <a>DescribeStacks</a> action.</p>",
134
- "refs": {
135
- }
136
- },
137
- "Description": {
138
- "base": null,
139
- "refs": {
140
- "GetTemplateSummaryOutput$Description": "<p>The value that is defined in the <code>Description</code> property of the template.</p>",
141
- "Output$Description": "<p>User defined description associated with the output.</p>",
142
- "ParameterDeclaration$Description": "<p>The description that is associate with the parameter.</p>",
143
- "Stack$Description": "<p>User defined description associated with the stack.</p>",
144
- "StackResource$Description": "<p>User defined description associated with the resource.</p>",
145
- "StackResourceDetail$Description": "<p>User defined description associated with the resource.</p>",
146
- "TemplateParameter$Description": "<p>User defined description associated with the parameter.</p>",
147
- "ValidateTemplateOutput$Description": "<p>The description found within the template.</p>"
148
- }
149
- },
150
- "DisableRollback": {
151
- "base": null,
152
- "refs": {
153
- "CreateStackInput$DisableRollback": "<p>Set to <code>true</code> to disable rollback of the stack if stack creation failed. You can specify either <code>DisableRollback</code> or <code>OnFailure</code>, but not both.</p> <p>Default: <code>false</code> </p>",
154
- "Stack$DisableRollback": "<p>Boolean to enable or disable rollback on stack creation failures:</p> <p> <ul> <li> <code>true</code>: disable rollback</li> <li> <code>false</code>: enable rollback</li> </ul> </p>"
155
- }
156
- },
157
- "EstimateTemplateCostInput": {
158
- "base": null,
159
- "refs": {
160
- }
161
- },
162
- "EstimateTemplateCostOutput": {
163
- "base": "<p>The output for a <a>EstimateTemplateCost</a> action.</p>",
164
- "refs": {
165
- }
166
- },
167
- "EventId": {
168
- "base": null,
169
- "refs": {
170
- "StackEvent$EventId": "<p>The unique ID of this event.</p>"
171
- }
172
- },
173
- "GetStackPolicyInput": {
174
- "base": "<p>The input for the <a>GetStackPolicy</a> action.</p>",
175
- "refs": {
176
- }
177
- },
178
- "GetStackPolicyOutput": {
179
- "base": "<p>The output for the <a>GetStackPolicy</a> action.</p>",
180
- "refs": {
181
- }
182
- },
183
- "GetTemplateInput": {
184
- "base": "<p>The input for a <a>GetTemplate</a> action.</p>",
185
- "refs": {
186
- }
187
- },
188
- "GetTemplateOutput": {
189
- "base": "<p>The output for <a>GetTemplate</a> action.</p>",
190
- "refs": {
191
- }
192
- },
193
- "GetTemplateSummaryInput": {
194
- "base": "<p>The input for the <a>GetTemplateSummary</a> action.</p>",
195
- "refs": {
196
- }
197
- },
198
- "GetTemplateSummaryOutput": {
199
- "base": "<p>The output for the <a>GetTemplateSummary</a> action.</p>",
200
- "refs": {
201
- }
202
- },
203
- "InsufficientCapabilitiesException": {
204
- "base": "<p>The template contains resources with capabilities that were not specified in the Capabilities parameter.</p>",
205
- "refs": {
206
- }
207
- },
208
- "LastUpdatedTime": {
209
- "base": null,
210
- "refs": {
211
- "Stack$LastUpdatedTime": "<p>The time the stack was last updated. This field will only be returned if the stack has been updated at least once.</p>",
212
- "StackSummary$LastUpdatedTime": "<p>The time the stack was last updated. This field will only be returned if the stack has been updated at least once.</p>"
213
- }
214
- },
215
- "LimitExceededException": {
216
- "base": "<p>Quota for the resource has already been reached.</p>",
217
- "refs": {
218
- }
219
- },
220
- "ListStackResourcesInput": {
221
- "base": "<p>The input for the <a>ListStackResource</a> action.</p>",
222
- "refs": {
223
- }
224
- },
225
- "ListStackResourcesOutput": {
226
- "base": "<p>The output for a <a>ListStackResources</a> action.</p>",
227
- "refs": {
228
- }
229
- },
230
- "ListStacksInput": {
231
- "base": "<p>The input for <a>ListStacks</a> action.</p>",
232
- "refs": {
233
- }
234
- },
235
- "ListStacksOutput": {
236
- "base": "<p>The output for <a>ListStacks</a> action.</p>",
237
- "refs": {
238
- }
239
- },
240
- "LogicalResourceId": {
241
- "base": null,
242
- "refs": {
243
- "DescribeStackResourceInput$LogicalResourceId": "<p>The logical name of the resource as specified in the template.</p> <p>Default: There is no default value.</p>",
244
- "DescribeStackResourcesInput$LogicalResourceId": "<p>The logical name of the resource as specified in the template.</p> <p>Default: There is no default value.</p>",
245
- "SignalResourceInput$LogicalResourceId": "<p>The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in the template.</p>",
246
- "StackEvent$LogicalResourceId": "<p>The logical name of the resource specified in the template.</p>",
247
- "StackResource$LogicalResourceId": "<p>The logical name of the resource specified in the template.</p>",
248
- "StackResourceDetail$LogicalResourceId": "<p>The logical name of the resource specified in the template.</p>",
249
- "StackResourceSummary$LogicalResourceId": "<p>The logical name of the resource specified in the template.</p>"
250
- }
251
- },
252
- "Metadata": {
253
- "base": null,
254
- "refs": {
255
- "GetTemplateSummaryOutput$Metadata": "<p>The value that is defined for the <code>Metadata</code> property of the template.</p>",
256
- "StackResourceDetail$Metadata": "<p>The JSON format content of the <code>Metadata</code> attribute declared for the resource. For more information, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html\">Metadata Attribute</a> in the AWS CloudFormation User Guide.</p>"
257
- }
258
- },
259
- "NextToken": {
260
- "base": null,
261
- "refs": {
262
- "DescribeStackEventsInput$NextToken": "<p>String that identifies the start of the next list of events, if there is one.</p> <p>Default: There is no default value.</p>",
263
- "DescribeStackEventsOutput$NextToken": "<p>String that identifies the start of the next list of events, if there is one.</p>",
264
- "DescribeStacksInput$NextToken": "String that identifies the start of the next list of stacks, if there is one.",
265
- "DescribeStacksOutput$NextToken": "String that identifies the start of the next list of stacks, if there is one.",
266
- "ListStackResourcesInput$NextToken": "<p>String that identifies the start of the next list of stack resource summaries, if there is one.</p> <p>Default: There is no default value.</p>",
267
- "ListStackResourcesOutput$NextToken": "<p>String that identifies the start of the next list of stack resources, if there is one.</p>",
268
- "ListStacksInput$NextToken": "<p>String that identifies the start of the next list of stacks, if there is one.</p> <p>Default: There is no default value.</p>",
269
- "ListStacksOutput$NextToken": "<p>String that identifies the start of the next list of stacks, if there is one.</p>"
270
- }
271
- },
272
- "NoEcho": {
273
- "base": null,
274
- "refs": {
275
- "ParameterDeclaration$NoEcho": "<p>Flag that indicates whether the parameter value is shown as plain text in logs and in the AWS Management Console.</p>",
276
- "TemplateParameter$NoEcho": "<p>Flag indicating whether the parameter should be displayed as plain text in logs and UIs.</p>"
277
- }
278
- },
279
- "NotificationARN": {
280
- "base": null,
281
- "refs": {
282
- "NotificationARNs$member": null
283
- }
284
- },
285
- "NotificationARNs": {
286
- "base": null,
287
- "refs": {
288
- "CreateStackInput$NotificationARNs": "<p>The Simple Notification Service (SNS) topic ARNs to publish stack related events. You can find your SNS topic ARNs using the <a href=\"http://console.aws.amazon.com/sns\">SNS console</a> or your Command Line Interface (CLI).</p>",
289
- "Stack$NotificationARNs": "<p>SNS topic ARNs to which stack related events are published.</p>",
290
- "UpdateStackInput$NotificationARNs": "<p>Update the ARNs for the Amazon SNS topics that are associated with the stack.</p>"
291
- }
292
- },
293
- "OnFailure": {
294
- "base": null,
295
- "refs": {
296
- "CreateStackInput$OnFailure": "<p>Determines what action will be taken if stack creation fails. This must be one of: DO_NOTHING, ROLLBACK, or DELETE. You can specify either <code>OnFailure</code> or <code>DisableRollback</code>, but not both.</p> <p>Default: <code>ROLLBACK</code></p>"
297
- }
298
- },
299
- "Output": {
300
- "base": "<p>The Output data type.</p>",
301
- "refs": {
302
- "Outputs$member": null
303
- }
304
- },
305
- "OutputKey": {
306
- "base": null,
307
- "refs": {
308
- "Output$OutputKey": "<p>The key associated with the output.</p>"
309
- }
310
- },
311
- "OutputValue": {
312
- "base": null,
313
- "refs": {
314
- "Output$OutputValue": "<p>The value associated with the output.</p>"
315
- }
316
- },
317
- "Outputs": {
318
- "base": null,
319
- "refs": {
320
- "Stack$Outputs": "<p>A list of output structures.</p>"
321
- }
322
- },
323
- "Parameter": {
324
- "base": "<p>The Parameter data type.</p>",
325
- "refs": {
326
- "Parameters$member": null
327
- }
328
- },
329
- "ParameterConstraints": {
330
- "base": "<p>A set of criteria that AWS CloudFormation uses to validate parameter values. Although other constraints might be defined in the stack template, AWS CloudFormation returns only the <code>AllowedValues</code> property.</p>",
331
- "refs": {
332
- "ParameterDeclaration$ParameterConstraints": "<p>The criteria that AWS CloudFormation uses to validate parameter values.</p>"
333
- }
334
- },
335
- "ParameterDeclaration": {
336
- "base": "<p>The ParameterDeclaration data type.</p>",
337
- "refs": {
338
- "ParameterDeclarations$member": null
339
- }
340
- },
341
- "ParameterDeclarations": {
342
- "base": null,
343
- "refs": {
344
- "GetTemplateSummaryOutput$Parameters": "<p>A list of parameter declarations that describe various properties for each parameter.</p>"
345
- }
346
- },
347
- "ParameterKey": {
348
- "base": null,
349
- "refs": {
350
- "Parameter$ParameterKey": "<p>The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.</p>",
351
- "ParameterDeclaration$ParameterKey": "<p>The name that is associated with the parameter.</p>",
352
- "TemplateParameter$ParameterKey": "<p>The name associated with the parameter.</p>"
353
- }
354
- },
355
- "ParameterType": {
356
- "base": null,
357
- "refs": {
358
- "ParameterDeclaration$ParameterType": "<p>The type of parameter.</p>"
359
- }
360
- },
361
- "ParameterValue": {
362
- "base": null,
363
- "refs": {
364
- "Parameter$ParameterValue": "<p>The value associated with the parameter.</p>",
365
- "ParameterDeclaration$DefaultValue": "<p>The default value of the parameter.</p>",
366
- "TemplateParameter$DefaultValue": "<p>The default value associated with the parameter.</p>"
367
- }
368
- },
369
- "Parameters": {
370
- "base": null,
371
- "refs": {
372
- "CreateStackInput$Parameters": "<p>A list of <code>Parameter</code> structures that specify input parameters for the stack.</p>",
373
- "EstimateTemplateCostInput$Parameters": "<p>A list of <code>Parameter</code> structures that specify input parameters.</p>",
374
- "Stack$Parameters": "<p>A list of <code>Parameter</code> structures.</p>",
375
- "UpdateStackInput$Parameters": "<p>A list of <code>Parameter</code> structures that specify input parameters for the stack. For more information, see the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html\">Parameter</a> data type.</p>"
376
- }
377
- },
378
- "PhysicalResourceId": {
379
- "base": null,
380
- "refs": {
381
- "DescribeStackResourcesInput$PhysicalResourceId": "<p>The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.</p> <p>For example, for an Amazon Elastic Compute Cloud (EC2) instance, <code>PhysicalResourceId</code> corresponds to the <code>InstanceId</code>. You can pass the EC2 <code>InstanceId</code> to <code>DescribeStackResources</code> to find which stack the instance belongs to and what other resources are part of the stack.</p> <p>Required: Conditional. If you do not specify <code>PhysicalResourceId</code>, you must specify <code>StackName</code>.</p> <p>Default: There is no default value.</p>",
382
- "StackEvent$PhysicalResourceId": "<p>The name or unique identifier associated with the physical instance of the resource.</p>",
383
- "StackResource$PhysicalResourceId": "<p>The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.</p>",
384
- "StackResourceDetail$PhysicalResourceId": "<p>The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.</p>",
385
- "StackResourceSummary$PhysicalResourceId": "<p>The name or unique identifier that corresponds to a physical instance ID of the resource.</p>"
386
- }
387
- },
388
- "ResourceProperties": {
389
- "base": null,
390
- "refs": {
391
- "StackEvent$ResourceProperties": "<p>BLOB of the properties used to create the resource.</p>"
392
- }
393
- },
394
- "ResourceSignalStatus": {
395
- "base": null,
396
- "refs": {
397
- "SignalResourceInput$Status": "<p>The status of the signal, which is either success or failure. A failure signal causes AWS CloudFormation to immediately fail the stack creation or update.</p>"
398
- }
399
- },
400
- "ResourceSignalUniqueId": {
401
- "base": null,
402
- "refs": {
403
- "SignalResourceInput$UniqueId": "<p>A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as signaling a wait condition), each signal requires a different unique ID.</p>"
404
- }
405
- },
406
- "ResourceStatus": {
407
- "base": null,
408
- "refs": {
409
- "StackEvent$ResourceStatus": "<p>Current status of the resource.</p>",
410
- "StackResource$ResourceStatus": "<p>Current status of the resource.</p>",
411
- "StackResourceDetail$ResourceStatus": "<p>Current status of the resource.</p>",
412
- "StackResourceSummary$ResourceStatus": "<p>Current status of the resource.</p>"
413
- }
414
- },
415
- "ResourceStatusReason": {
416
- "base": null,
417
- "refs": {
418
- "StackEvent$ResourceStatusReason": "<p>Success/failure message associated with the resource.</p>",
419
- "StackResource$ResourceStatusReason": "<p>Success/failure message associated with the resource.</p>",
420
- "StackResourceDetail$ResourceStatusReason": "<p>Success/failure message associated with the resource.</p>",
421
- "StackResourceSummary$ResourceStatusReason": "<p>Success/failure message associated with the resource.</p>"
422
- }
423
- },
424
- "ResourceType": {
425
- "base": null,
426
- "refs": {
427
- "StackEvent$ResourceType": "<p>Type of resource. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>",
428
- "StackResource$ResourceType": "<p>Type of resource. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>",
429
- "StackResourceDetail$ResourceType": "<p>Type of resource. ((For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>",
430
- "StackResourceSummary$ResourceType": "<p>Type of resource. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"> AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)</p>"
431
- }
432
- },
433
- "SetStackPolicyInput": {
434
- "base": "<p>The input for the <a>SetStackPolicy</a> action.</p>",
435
- "refs": {
436
- }
437
- },
438
- "SignalResourceInput": {
439
- "base": "<p>The input for the <a>SignalResource</a> action.</p>",
440
- "refs": {
441
- }
442
- },
443
- "Stack": {
444
- "base": "<p>The Stack data type.</p>",
445
- "refs": {
446
- "Stacks$member": null
447
- }
448
- },
449
- "StackEvent": {
450
- "base": "<p>The StackEvent data type.</p>",
451
- "refs": {
452
- "StackEvents$member": null
453
- }
454
- },
455
- "StackEvents": {
456
- "base": null,
457
- "refs": {
458
- "DescribeStackEventsOutput$StackEvents": "<p>A list of <code>StackEvents</code> structures.</p>"
459
- }
460
- },
461
- "StackId": {
462
- "base": null,
463
- "refs": {
464
- "CreateStackOutput$StackId": "<p>Unique identifier of the stack.</p>",
465
- "Stack$StackId": "<p>Unique identifier of the stack.</p>",
466
- "StackEvent$StackId": "<p>The unique ID name of the instance of the stack.</p>",
467
- "StackResource$StackId": "<p>Unique identifier of the stack.</p>",
468
- "StackResourceDetail$StackId": "<p>Unique identifier of the stack.</p>",
469
- "StackSummary$StackId": "<p>Unique stack identifier.</p>",
470
- "UpdateStackOutput$StackId": "<p>Unique identifier of the stack.</p>"
471
- }
472
- },
473
- "StackName": {
474
- "base": null,
475
- "refs": {
476
- "CancelUpdateStackInput$StackName": "<p>The name or the unique stack ID that is associated with the stack.</p>",
477
- "CreateStackInput$StackName": "<p>The name that is associated with the stack. The name must be unique in the region in which you are creating the stack.</p> <note>A stack name can contain only alphanumeric characters (case sensitive) and hyphens. It must start with an alphabetic character and cannot be longer than 255 characters.</note>",
478
- "DeleteStackInput$StackName": "<p>The name or the unique stack ID that is associated with the stack.</p>",
479
- "DescribeStackEventsInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p>",
480
- "DescribeStackResourceInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p>",
481
- "DescribeStackResourcesInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p> <p>Required: Conditional. If you do not specify <code>StackName</code>, you must specify <code>PhysicalResourceId</code>.</p>",
482
- "DescribeStacksInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p>",
483
- "GetStackPolicyInput$StackName": "<p>The name or unique stack ID that is associated with the stack whose policy you want to get.</p>",
484
- "GetTemplateInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p>",
485
- "ListStackResourcesInput$StackName": "<p>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:</p> <ul> <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li> <li>Deleted stacks: You must specify the unique stack ID.</li> </ul> <p>Default: There is no default value.</p>",
486
- "SetStackPolicyInput$StackName": "<p>The name or unique stack ID that you want to associate a policy with.</p>",
487
- "Stack$StackName": "<p>The name associated with the stack.</p>",
488
- "StackEvent$StackName": "<p>The name associated with a stack.</p>",
489
- "StackResource$StackName": "<p>The name associated with the stack.</p>",
490
- "StackResourceDetail$StackName": "<p>The name associated with the stack.</p>",
491
- "StackSummary$StackName": "<p>The name associated with the stack.</p>",
492
- "UpdateStackInput$StackName": "<p>The name or unique stack ID of the stack to update.</p>"
493
- }
494
- },
495
- "StackNameOrId": {
496
- "base": null,
497
- "refs": {
498
- "GetTemplateSummaryInput$StackName": "<p>The name or the stack ID that is associated with the stack, which are not always interchangeable. For running stacks, you can specify either the stack's name or its unique stack ID. For deleted stack, you must specify the unique stack ID.</p> <p>Conditional: You must specify only one of the following parameters: <code>StackName</code>, <code>TemplateBody</code>, or <code>TemplateURL</code>.</p>",
499
- "SignalResourceInput$StackName": "<p>The stack name or unique stack ID that includes the resource that you want to signal.</p>"
500
- }
501
- },
502
- "StackPolicyBody": {
503
- "base": null,
504
- "refs": {
505
- "CreateStackInput$StackPolicyBody": "<p>Structure containing the stack policy body. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\"> Prevent Updates to Stack Resources</a> in the AWS CloudFormation User Guide. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p>",
506
- "GetStackPolicyOutput$StackPolicyBody": "<p>Structure containing the stack policy body. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\"> Prevent Updates to Stack Resources</a> in the AWS CloudFormation User Guide.)</p>",
507
- "SetStackPolicyInput$StackPolicyBody": "<p>Structure containing the stack policy body. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\"> Prevent Updates to Stack Resources</a> in the AWS CloudFormation User Guide. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p>",
508
- "UpdateStackInput$StackPolicyBody": "<p>Structure containing a new stack policy body. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p> <p>You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.</p>"
509
- }
510
- },
511
- "StackPolicyDuringUpdateBody": {
512
- "base": null,
513
- "refs": {
514
- "UpdateStackInput$StackPolicyDuringUpdateBody": "<p>Structure containing the temporary overriding stack policy body. You can specify either the <code>StackPolicyDuringUpdateBody</code> or the <code>StackPolicyDuringUpdateURL</code> parameter, but not both.</p> <p>If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that is associated with the stack will be used.</p>"
515
- }
516
- },
517
- "StackPolicyDuringUpdateURL": {
518
- "base": null,
519
- "refs": {
520
- "UpdateStackInput$StackPolicyDuringUpdateURL": "<p>Location of a file containing the temporary overriding stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the <code>StackPolicyDuringUpdateBody</code> or the <code>StackPolicyDuringUpdateURL</code> parameter, but not both.</p> <p>If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that is associated with the stack will be used.</p>"
521
- }
522
- },
523
- "StackPolicyURL": {
524
- "base": null,
525
- "refs": {
526
- "CreateStackInput$StackPolicyURL": "<p>Location of a file containing the stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p>",
527
- "SetStackPolicyInput$StackPolicyURL": "<p>Location of a file containing the stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p>",
528
- "UpdateStackInput$StackPolicyURL": "<p>Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, but not both.</p> <p>You might update the stack policy, for example, in order to protect a new resource that you created during a stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.</p>"
529
- }
530
- },
531
- "StackResource": {
532
- "base": "<p>The StackResource data type.</p>",
533
- "refs": {
534
- "StackResources$member": null
535
- }
536
- },
537
- "StackResourceDetail": {
538
- "base": "<p>Contains detailed information about the specified stack resource.</p>",
539
- "refs": {
540
- "DescribeStackResourceOutput$StackResourceDetail": "<p>A <code>StackResourceDetail</code> structure containing the description of the specified resource in the specified stack.</p>"
541
- }
542
- },
543
- "StackResourceSummaries": {
544
- "base": null,
545
- "refs": {
546
- "ListStackResourcesOutput$StackResourceSummaries": "<p>A list of <code>StackResourceSummary</code> structures.</p>"
547
- }
548
- },
549
- "StackResourceSummary": {
550
- "base": "<p>Contains high-level information about the specified stack resource.</p>",
551
- "refs": {
552
- "StackResourceSummaries$member": null
553
- }
554
- },
555
- "StackResources": {
556
- "base": null,
557
- "refs": {
558
- "DescribeStackResourcesOutput$StackResources": "<p>A list of <code>StackResource</code> structures.</p>"
559
- }
560
- },
561
- "StackStatus": {
562
- "base": null,
563
- "refs": {
564
- "Stack$StackStatus": "<p>Current status of the stack.</p>",
565
- "StackStatusFilter$member": null,
566
- "StackSummary$StackStatus": "<p>The current status of the stack.</p>"
567
- }
568
- },
569
- "StackStatusFilter": {
570
- "base": null,
571
- "refs": {
572
- "ListStacksInput$StackStatusFilter": "<p>Stack status to use as a filter. Specify one or more stack status codes to list only stacks with the specified status codes. For a complete list of stack status codes, see the <code>StackStatus</code> parameter of the <a>Stack</a> data type.</p>"
573
- }
574
- },
575
- "StackStatusReason": {
576
- "base": null,
577
- "refs": {
578
- "Stack$StackStatusReason": "<p>Success/failure message associated with the stack status.</p>",
579
- "StackSummary$StackStatusReason": "<p>Success/Failure message associated with the stack status.</p>"
580
- }
581
- },
582
- "StackSummaries": {
583
- "base": null,
584
- "refs": {
585
- "ListStacksOutput$StackSummaries": "<p>A list of <code>StackSummary</code> structures containing information about the specified stacks.</p>"
586
- }
587
- },
588
- "StackSummary": {
589
- "base": "<p>The StackSummary Data Type</p>",
590
- "refs": {
591
- "StackSummaries$member": null
592
- }
593
- },
594
- "Stacks": {
595
- "base": null,
596
- "refs": {
597
- "DescribeStacksOutput$Stacks": "<p>A list of stack structures.</p>"
598
- }
599
- },
600
- "Tag": {
601
- "base": "<p>The Tag type is used by <code>CreateStack</code> in the <code>Tags</code> parameter. It allows you to specify a key/value pair that can be used to store information related to cost allocation for an AWS CloudFormation stack.</p>",
602
- "refs": {
603
- "Tags$member": null
604
- }
605
- },
606
- "TagKey": {
607
- "base": null,
608
- "refs": {
609
- "Tag$Key": "<p><i>Required</i>. A string used to identify this tag. You can specify a maximum of 128 characters for a tag key. Tags owned by Amazon Web Services (AWS) have the reserved prefix: <code>aws:</code>.</p>"
610
- }
611
- },
612
- "TagValue": {
613
- "base": null,
614
- "refs": {
615
- "Tag$Value": "<p><i>Required</i>. A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.</p>"
616
- }
617
- },
618
- "Tags": {
619
- "base": null,
620
- "refs": {
621
- "CreateStackInput$Tags": "<p>A set of user-defined <code>Tags</code> to associate with this stack, represented by key/value pairs. Tags defined for the stack are propagated to EC2 resources that are created as part of the stack. A maximum number of 10 tags can be specified.</p>",
622
- "Stack$Tags": "<p>A list of <code>Tag</code>s that specify cost allocation information for the stack.</p>"
623
- }
624
- },
625
- "TemplateBody": {
626
- "base": null,
627
- "refs": {
628
- "CreateStackInput$TemplateBody": "<p>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code> parameter, but not both.</p>",
629
- "EstimateTemplateCostInput$TemplateBody": "<p>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.)</p> <p>Conditional: You must pass <code>TemplateBody</code> or <code>TemplateURL</code>. If both are passed, only <code>TemplateBody</code> is used.</p>",
630
- "GetTemplateOutput$TemplateBody": "<p>Structure containing the template body. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.)</p>",
631
- "GetTemplateSummaryInput$TemplateBody": "<p>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information about templates, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must specify only one of the following parameters: <code>StackName</code>, <code>TemplateBody</code>, or <code>TemplateURL</code>.</p>",
632
- "UpdateStackInput$TemplateBody": "<p>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. (For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.)</p> <p>Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code> parameter, but not both.</p>",
633
- "ValidateTemplateInput$TemplateBody": "<p>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only <code>TemplateBody</code> is used.</p>"
634
- }
635
- },
636
- "TemplateDescription": {
637
- "base": null,
638
- "refs": {
639
- "StackSummary$TemplateDescription": "<p>The template description of the template used to create the stack.</p>"
640
- }
641
- },
642
- "TemplateParameter": {
643
- "base": "<p>The TemplateParameter data type.</p>",
644
- "refs": {
645
- "TemplateParameters$member": null
646
- }
647
- },
648
- "TemplateParameters": {
649
- "base": null,
650
- "refs": {
651
- "ValidateTemplateOutput$Parameters": "<p>A list of <code>TemplateParameter</code> structures.</p>"
652
- }
653
- },
654
- "TemplateURL": {
655
- "base": null,
656
- "refs": {
657
- "CreateStackInput$TemplateURL": "<p>Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) located in an S3 bucket in the same region as the stack. For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code> parameter, but not both.</p>",
658
- "EstimateTemplateCostInput$TemplateURL": "<p>Location of file containing the template body. The URL must point to a template located in an S3 bucket in the same region as the stack. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only <code>TemplateBody</code> is used.</p>",
659
- "GetTemplateSummaryInput$TemplateURL": "<p>Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) located in an Amazon S3 bucket. For more information about templates, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must specify only one of the following parameters: <code>StackName</code>, <code>TemplateBody</code>, or <code>TemplateURL</code>.</p>",
660
- "UpdateStackInput$TemplateURL": "<p>Location of file containing the template body. The URL must point to a template located in an S3 bucket in the same region as the stack. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code> parameter, but not both.</p>",
661
- "ValidateTemplateInput$TemplateURL": "<p>Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) located in an S3 bucket in the same region as the stack. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html\">Template Anatomy</a> in the AWS CloudFormation User Guide.</p> <p>Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only <code>TemplateBody</code> is used.</p>"
662
- }
663
- },
664
- "TimeoutMinutes": {
665
- "base": null,
666
- "refs": {
667
- "CreateStackInput$TimeoutInMinutes": "<p>The amount of time that can pass before the stack status becomes CREATE_FAILED; if <code>DisableRollback</code> is not set or is set to <code>false</code>, the stack will be rolled back.</p>",
668
- "Stack$TimeoutInMinutes": "<p>The amount of time within which stack creation should complete.</p>"
669
- }
670
- },
671
- "Timestamp": {
672
- "base": null,
673
- "refs": {
674
- "StackEvent$Timestamp": "<p>Time the status was updated.</p>",
675
- "StackResource$Timestamp": "<p>Time the status was updated.</p>",
676
- "StackResourceDetail$LastUpdatedTimestamp": "<p>Time the status was updated.</p>",
677
- "StackResourceSummary$LastUpdatedTimestamp": "<p>Time the status was updated.</p>"
678
- }
679
- },
680
- "UpdateStackInput": {
681
- "base": "<p>The input for <a>UpdateStack</a> action.</p>",
682
- "refs": {
683
- }
684
- },
685
- "UpdateStackOutput": {
686
- "base": "<p>The output for a <a>UpdateStack</a> action.</p>",
687
- "refs": {
688
- }
689
- },
690
- "Url": {
691
- "base": null,
692
- "refs": {
693
- "EstimateTemplateCostOutput$Url": "<p>An AWS Simple Monthly Calculator URL with a query string that describes the resources required to run the template.</p>"
694
- }
695
- },
696
- "UsePreviousTemplate": {
697
- "base": null,
698
- "refs": {
699
- "UpdateStackInput$UsePreviousTemplate": "<p>Reuse the existing template that is associated with the stack that you are updating.</p>"
700
- }
701
- },
702
- "UsePreviousValue": {
703
- "base": null,
704
- "refs": {
705
- "Parameter$UsePreviousValue": "<p>During a stack update, use the existing parameter value that the stack is using for a given parameter key. If you specify <code>true</code>, do not specify a parameter value.</p>"
706
- }
707
- },
708
- "ValidateTemplateInput": {
709
- "base": "<p>The input for <a>ValidateTemplate</a> action.</p>",
710
- "refs": {
711
- }
712
- },
713
- "ValidateTemplateOutput": {
714
- "base": "<p>The output for <a>ValidateTemplate</a> action.</p>",
715
- "refs": {
716
- }
717
- },
718
- "Version": {
719
- "base": null,
720
- "refs": {
721
- "GetTemplateSummaryOutput$Version": "<p>The AWS template format version, which identifies the capabilities of the template.</p>"
722
- }
723
- }
724
- }
725
- }