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,1114 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AbortEnvironmentUpdate": "<p>Cancels in-progress environment configuration update or application version deployment.</p>",
5
- "CheckDNSAvailability": "<p> Checks if the specified CNAME is available. </p>",
6
- "CreateApplication": "<p> Creates an application that has one configuration template named <code>default</code> and no application versions. </p>",
7
- "CreateApplicationVersion": "<p>Creates an application version for the specified application.</p> <note>Once you create an application version with a specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an exception when you attempt to launch an environment from the application version. </note>",
8
- "CreateConfigurationTemplate": "<p>Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of the application with the same configuration settings.</p> <p>Related Topics</p> <ul> <li> <a>DescribeConfigurationOptions</a> </li> <li> <a>DescribeConfigurationSettings</a> </li> <li> <a>ListAvailableSolutionStacks</a> </li> </ul>",
9
- "CreateEnvironment": "<p> Launches an environment for the specified application using the specified configuration. </p>",
10
- "CreateStorageLocation": "<p> Creates the Amazon S3 storage location for the account. </p> <p> This location is used to store user log files. </p>",
11
- "DeleteApplication": "<p> Deletes the specified application along with all associated versions and configurations. The application versions will not be deleted from your Amazon S3 bucket. </p> <note>You cannot delete an application that has a running environment. </note>",
12
- "DeleteApplicationVersion": "<p> Deletes the specified version from the specified application. </p> <note>You cannot delete an application version that is associated with a running environment.</note>",
13
- "DeleteConfigurationTemplate": "<p>Deletes the specified configuration template.</p> <note>When you launch an environment using a configuration template, the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running environment.</note>",
14
- "DeleteEnvironmentConfiguration": "<p> Deletes the draft configuration associated with the running environment. </p> <p> Updating a running environment with any configuration changes creates a draft configuration set. You can get the draft configuration using <a>DescribeConfigurationSettings</a> while the update is in progress or if the update fails. The <code>DeploymentStatus</code> for the draft configuration indicates whether the deployment is in process or has failed. The draft configuration remains in existence until it is deleted with this action. </p>",
15
- "DescribeApplicationVersions": "<p>Returns descriptions for existing application versions.</p>",
16
- "DescribeApplications": "<p>Returns the descriptions of existing applications.</p>",
17
- "DescribeConfigurationOptions": "<p> Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution stack defines. The description includes the values the options, their default values, and an indication of the required action on a running environment if an option value is changed. </p>",
18
- "DescribeConfigurationSettings": "<p> Returns a description of the settings for the specified configuration set, that is, either a configuration template or the configuration set associated with a running environment. </p> <p> When describing the settings for the configuration set associated with a running environment, it is possible to receive two sets of setting descriptions. One is the deployed configuration set, and the other is a draft configuration of an environment that is either in the process of deployment or that failed to deploy. </p> <p>Related Topics</p> <ul> <li> <a>DeleteEnvironmentConfiguration</a> </li> </ul>",
19
- "DescribeEnvironmentResources": "<p>Returns AWS resources for this environment.</p>",
20
- "DescribeEnvironments": "<p>Returns descriptions for existing environments.</p>",
21
- "DescribeEvents": "<p>Returns list of event descriptions matching criteria up to the last 6 weeks.</p> <note> This action returns the most recent 1,000 events from the specified <code>NextToken</code>. </note>",
22
- "ListAvailableSolutionStacks": "<p> Returns a list of the available solution stack names. </p>",
23
- "RebuildEnvironment": "<p> Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) for a specified environment and forces a restart. </p>",
24
- "RequestEnvironmentInfo": "<p> Initiates a request to compile the specified type of information of the deployed environment. </p> <p> Setting the <code>InfoType</code> to <code>tail</code> compiles the last lines from the application server log files of every Amazon EC2 instance in your environment. </p> <p> Setting the <code>InfoType</code> to <code>bundle</code> compresses the application server log files for every Amazon EC2 instance into a <code>.zip</code> file. Legacy and .NET containers do not support bundle logs. </p> <p> Use <a>RetrieveEnvironmentInfo</a> to obtain the set of logs. </p> <p>Related Topics</p> <ul> <li> <a>RetrieveEnvironmentInfo</a> </li> </ul>",
25
- "RestartAppServer": "<p> Causes the environment to restart the application container server running on each Amazon EC2 instance. </p>",
26
- "RetrieveEnvironmentInfo": "<p> Retrieves the compiled information from a <a>RequestEnvironmentInfo</a> request. </p> <p>Related Topics</p> <ul> <li> <a>RequestEnvironmentInfo</a> </li> </ul>",
27
- "SwapEnvironmentCNAMEs": "<p> Swaps the CNAMEs of two environments. </p>",
28
- "TerminateEnvironment": "<p> Terminates the specified environment. </p>",
29
- "UpdateApplication": "<p>Updates the specified application to have the specified properties. </p> <note> If a property (for example, <code>description</code>) is not provided, the value remains unchanged. To clear these properties, specify an empty string. </note>",
30
- "UpdateApplicationVersion": "<p> Updates the specified application version to have the specified properties. </p> <note> If a property (for example, <code>description</code>) is not provided, the value remains unchanged. To clear properties, specify an empty string. </note>",
31
- "UpdateConfigurationTemplate": "<p> Updates the specified configuration template to have the specified properties or configuration option values. </p> <note> If a property (for example, <code>ApplicationName</code>) is not provided, its value remains unchanged. To clear such properties, specify an empty string. </note> <p>Related Topics</p> <ul> <li> <a>DescribeConfigurationOptions</a> </li> </ul>",
32
- "UpdateEnvironment": "<p> Updates the environment description, deploys a new application version, updates the configuration settings to an entirely new configuration template, or updates select configuration option values in the running environment. </p> <p> Attempting to update both the release and configuration is not allowed and AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. </p> <p> When updating the configuration settings to a new template or individual settings, a draft configuration is created and <a>DescribeConfigurationSettings</a> for this environment returns two setting descriptions with different <code>DeploymentStatus</code> values. </p>",
33
- "ValidateConfigurationSettings": "<p> Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are valid. </p> <p> This action returns a list of messages indicating any errors or warnings associated with the selection of option values. </p>"
34
- },
35
- "service": "<fullname>AWS Elastic Beanstalk</fullname> <p> This is the AWS Elastic Beanstalk API Reference. This guide provides detailed information about AWS Elastic Beanstalk actions, data types, parameters, and errors. </p> <p>AWS Elastic Beanstalk is a tool that makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on Amazon Web Services cloud resources. </p> <p> For more information about this product, go to the <a href=\"http://aws.amazon.com/elasticbeanstalk/\">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href=\"http://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl\">http://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href=\"https://aws.amazon.com/tools/\">Tools for Amazon Web Services</a>. </p> <p><b>Endpoints</b></p> <p>For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region\">Regions and Endpoints</a> in the <i>Amazon Web Services Glossary</i>.</p>",
36
- "shapes": {
37
- "AbortEnvironmentUpdateMessage": {
38
- "base": "<p></p>",
39
- "refs": {
40
- }
41
- },
42
- "AbortableOperationInProgress": {
43
- "base": null,
44
- "refs": {
45
- "EnvironmentDescription$AbortableOperationInProgress": "<p>Indicates if there is an in-progress environment configuration update or application version deployment that you can cancel.</p> <p> <code>true:</code> There is an update in progress. </p> <p> <code>false:</code> There are no updates currently in progress. </p>"
46
- }
47
- },
48
- "ApplicationDescription": {
49
- "base": "<p>Describes the properties of an application.</p>",
50
- "refs": {
51
- "ApplicationDescriptionList$member": null,
52
- "ApplicationDescriptionMessage$Application": "<p> The <a>ApplicationDescription</a> of the application. </p>"
53
- }
54
- },
55
- "ApplicationDescriptionList": {
56
- "base": null,
57
- "refs": {
58
- "ApplicationDescriptionsMessage$Applications": "<p> This parameter contains a list of <a>ApplicationDescription</a>. </p>"
59
- }
60
- },
61
- "ApplicationDescriptionMessage": {
62
- "base": "<p>Result message containing a single description of an application.</p>",
63
- "refs": {
64
- }
65
- },
66
- "ApplicationDescriptionsMessage": {
67
- "base": "<p>Result message containing a list of application descriptions.</p>",
68
- "refs": {
69
- }
70
- },
71
- "ApplicationName": {
72
- "base": null,
73
- "refs": {
74
- "ApplicationDescription$ApplicationName": "<p>The name of the application.</p>",
75
- "ApplicationNamesList$member": null,
76
- "ApplicationVersionDescription$ApplicationName": "<p>The name of the application associated with this release.</p>",
77
- "ConfigurationSettingsDescription$ApplicationName": "<p> The name of the application associated with this configuration set. </p>",
78
- "CreateApplicationMessage$ApplicationName": "<p>The name of the application.</p> <p> Constraint: This name must be unique within your account. If the specified name already exists, the action returns an <code>InvalidParameterValue</code> error. </p>",
79
- "CreateApplicationVersionMessage$ApplicationName": "<p> The name of the application. If no application is found with this name, and <code>AutoCreateApplication</code> is <code>false</code>, returns an <code>InvalidParameterValue</code> error. </p>",
80
- "CreateConfigurationTemplateMessage$ApplicationName": "<p> The name of the application to associate with this configuration template. If no application is found with this name, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p>",
81
- "CreateEnvironmentMessage$ApplicationName": "<p> The name of the application that contains the version to be deployed. </p> <p> If no application is found with this name, <code>CreateEnvironment</code> returns an <code>InvalidParameterValue</code> error. </p>",
82
- "DeleteApplicationMessage$ApplicationName": "<p>The name of the application to delete.</p>",
83
- "DeleteApplicationVersionMessage$ApplicationName": "<p>The name of the application to delete releases from.</p>",
84
- "DeleteConfigurationTemplateMessage$ApplicationName": "<p> The name of the application to delete the configuration template from. </p>",
85
- "DeleteEnvironmentConfigurationMessage$ApplicationName": "<p> The name of the application the environment is associated with. </p>",
86
- "DescribeApplicationVersionsMessage$ApplicationName": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include ones that are associated with the specified application. </p>",
87
- "DescribeConfigurationOptionsMessage$ApplicationName": "<p> The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment. </p>",
88
- "DescribeConfigurationSettingsMessage$ApplicationName": "<p> The application for the environment or configuration template. </p>",
89
- "DescribeEnvironmentsMessage$ApplicationName": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application. </p>",
90
- "DescribeEventsMessage$ApplicationName": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application. </p>",
91
- "EnvironmentDescription$ApplicationName": "<p>The name of the application associated with this environment.</p>",
92
- "EventDescription$ApplicationName": "<p>The application associated with the event.</p>",
93
- "SourceConfiguration$ApplicationName": "<p>The name of the application associated with the configuration.</p>",
94
- "UpdateApplicationMessage$ApplicationName": "<p> The name of the application to update. If no such application is found, <code>UpdateApplication</code> returns an <code>InvalidParameterValue</code> error. </p>",
95
- "UpdateApplicationVersionMessage$ApplicationName": "<p> The name of the application associated with this version. </p> <p> If no application is found with this name, <code>UpdateApplication</code> returns an <code>InvalidParameterValue</code> error. </p>",
96
- "UpdateConfigurationTemplateMessage$ApplicationName": "<p>The name of the application associated with the configuration template to update.</p> <p> If no application is found with this name, <code>UpdateConfigurationTemplate</code> returns an <code>InvalidParameterValue</code> error. </p>",
97
- "ValidateConfigurationSettingsMessage$ApplicationName": "<p> The name of the application that the configuration template or environment belongs to. </p>"
98
- }
99
- },
100
- "ApplicationNamesList": {
101
- "base": null,
102
- "refs": {
103
- "DescribeApplicationsMessage$ApplicationNames": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names. </p>"
104
- }
105
- },
106
- "ApplicationVersionDescription": {
107
- "base": "<p> Describes the properties of an application version. </p>",
108
- "refs": {
109
- "ApplicationVersionDescriptionList$member": null,
110
- "ApplicationVersionDescriptionMessage$ApplicationVersion": "<p> The <a>ApplicationVersionDescription</a> of the application version. </p>"
111
- }
112
- },
113
- "ApplicationVersionDescriptionList": {
114
- "base": null,
115
- "refs": {
116
- "ApplicationVersionDescriptionsMessage$ApplicationVersions": "<p> A list of <a>ApplicationVersionDescription</a> . </p>"
117
- }
118
- },
119
- "ApplicationVersionDescriptionMessage": {
120
- "base": "<p> Result message wrapping a single description of an application version. </p>",
121
- "refs": {
122
- }
123
- },
124
- "ApplicationVersionDescriptionsMessage": {
125
- "base": "<p>Result message wrapping a list of application version descriptions.</p>",
126
- "refs": {
127
- }
128
- },
129
- "AutoCreateApplication": {
130
- "base": null,
131
- "refs": {
132
- "CreateApplicationVersionMessage$AutoCreateApplication": "<p> Determines how the system behaves if the specified application for this version does not already exist: </p> <enumValues> <value name=\"true\"> <p> <code>true</code>: Automatically creates the specified application for this version if it does not already exist. </p> </value> <value name=\"false\"> <p> <code>false</code>: Returns an <code>InvalidParameterValue</code> if the specified application for this version does not already exist. </p> </value> </enumValues> <ul> <li> <code>true</code> : Automatically creates the specified application for this release if it does not already exist. </li> <li> <code>false</code> : Throws an <code>InvalidParameterValue</code> if the specified application for this release does not already exist. </li> </ul> <p> Default: <code>false</code> </p> <p> Valid Values: <code>true</code> | <code>false</code> </p>"
133
- }
134
- },
135
- "AutoScalingGroup": {
136
- "base": "<p> Describes an Auto Scaling launch configuration. </p>",
137
- "refs": {
138
- "AutoScalingGroupList$member": null
139
- }
140
- },
141
- "AutoScalingGroupList": {
142
- "base": null,
143
- "refs": {
144
- "EnvironmentResourceDescription$AutoScalingGroups": "<p> The <code>AutoScalingGroups</code> used by this environment. </p>"
145
- }
146
- },
147
- "AvailableSolutionStackDetailsList": {
148
- "base": null,
149
- "refs": {
150
- "ListAvailableSolutionStacksResultMessage$SolutionStackDetails": "<p> A list of available solution stacks and their <a>SolutionStackDescription</a>. </p>"
151
- }
152
- },
153
- "AvailableSolutionStackNamesList": {
154
- "base": null,
155
- "refs": {
156
- "ListAvailableSolutionStacksResultMessage$SolutionStacks": "<p> A list of available solution stacks. </p>"
157
- }
158
- },
159
- "CheckDNSAvailabilityMessage": {
160
- "base": "<p>Results message indicating whether a CNAME is available.</p>",
161
- "refs": {
162
- }
163
- },
164
- "CheckDNSAvailabilityResultMessage": {
165
- "base": "<p>Indicates if the specified CNAME is available.</p>",
166
- "refs": {
167
- }
168
- },
169
- "CnameAvailability": {
170
- "base": null,
171
- "refs": {
172
- "CheckDNSAvailabilityResultMessage$Available": "<p> Indicates if the specified CNAME is available: </p> <enumValues> <value name=\"true\"> <p> <code>true</code> : The CNAME is available. </p> </value> <value name=\"false\"> <p> <code>true</code> : The CNAME is not available. </p> </value> </enumValues> <p> <ul> <li> <code>true</code> : The CNAME is available. </li> <li> <code>false</code> : The CNAME is not available. </li> </ul> </p>"
173
- }
174
- },
175
- "ConfigurationDeploymentStatus": {
176
- "base": null,
177
- "refs": {
178
- "ConfigurationSettingsDescription$DeploymentStatus": "<p> If this configuration set is associated with an environment, the <code>DeploymentStatus</code> parameter indicates the deployment status of this configuration set: </p> <enumValues> <value name=\"null\"> <p> <code>null</code>: This configuration is not associated with a running environment. </p> </value> <value name=\"pending\"> <p> <code>pending</code>: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. </p> </value> <value name=\"deployed\"> <p> <code>deployed</code>: This is the configuration that is currently deployed to the associated running environment. </p> </value> <value name=\"failed\"> <p> <code>failed</code>: This is a draft configuration, that failed to successfully deploy. </p> </value> </enumValues> <ul> <li> <code>null</code>: This configuration is not associated with a running environment. </li> <li> <code>pending</code>: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. </li> <li> <code>deployed</code>: This is the configuration that is currently deployed to the associated running environment. </li> <li> <code>failed</code>: This is a draft configuration that failed to successfully deploy. </li> </ul>"
179
- }
180
- },
181
- "ConfigurationOptionDefaultValue": {
182
- "base": null,
183
- "refs": {
184
- "ConfigurationOptionDescription$DefaultValue": "<p> The default value for this configuration option. </p>"
185
- }
186
- },
187
- "ConfigurationOptionDescription": {
188
- "base": "<p> Describes the possible values for a configuration option. </p>",
189
- "refs": {
190
- "ConfigurationOptionDescriptionsList$member": null
191
- }
192
- },
193
- "ConfigurationOptionDescriptionsList": {
194
- "base": null,
195
- "refs": {
196
- "ConfigurationOptionsDescription$Options": "<p> A list of <a>ConfigurationOptionDescription</a>. </p>"
197
- }
198
- },
199
- "ConfigurationOptionName": {
200
- "base": null,
201
- "refs": {
202
- "ConfigurationOptionDescription$Name": "<p> The name of the configuration option. </p>",
203
- "ConfigurationOptionSetting$OptionName": "<p> The name of the configuration option. </p>",
204
- "OptionSpecification$OptionName": "<p> The name of the configuration option. </p>",
205
- "ValidationMessage$OptionName": "<p></p>"
206
- }
207
- },
208
- "ConfigurationOptionPossibleValue": {
209
- "base": null,
210
- "refs": {
211
- "ConfigurationOptionPossibleValues$member": null
212
- }
213
- },
214
- "ConfigurationOptionPossibleValues": {
215
- "base": null,
216
- "refs": {
217
- "ConfigurationOptionDescription$ValueOptions": "<p> If specified, values for the configuration option are selected from this list. </p>"
218
- }
219
- },
220
- "ConfigurationOptionSetting": {
221
- "base": "<p> A specification identifying an individual configuration option along with its current value. For a list of possible option values, go to <a href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html\">Option Values</a> in the <i>AWS Elastic Beanstalk Developer Guide</i>. </p>",
222
- "refs": {
223
- "ConfigurationOptionSettingsList$member": null
224
- }
225
- },
226
- "ConfigurationOptionSettingsList": {
227
- "base": null,
228
- "refs": {
229
- "ConfigurationSettingsDescription$OptionSettings": "<p> A list of the configuration options and their values in this configuration set. </p>",
230
- "CreateConfigurationTemplateMessage$OptionSettings": "<p> If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value obtained from the solution stack or the source configuration template. </p>",
231
- "CreateEnvironmentMessage$OptionSettings": "<p> If specified, AWS Elastic Beanstalk sets the specified configuration options to the requested value in the configuration set for the new environment. These override the values obtained from the solution stack or the configuration template. </p>",
232
- "UpdateConfigurationTemplateMessage$OptionSettings": "<p> A list of configuration option settings to update with the new specified option value. </p>",
233
- "UpdateEnvironmentMessage$OptionSettings": "<p> If specified, AWS Elastic Beanstalk updates the configuration set associated with the running environment and sets the specified configuration options to the requested value. </p>",
234
- "ValidateConfigurationSettingsMessage$OptionSettings": "<p> A list of the options and desired values to evaluate. </p>"
235
- }
236
- },
237
- "ConfigurationOptionSeverity": {
238
- "base": null,
239
- "refs": {
240
- "ConfigurationOptionDescription$ChangeSeverity": "<p> An indication of which action is required if the value for this configuration option changes: </p> <enumValues> <value name=\"NoInterruption\"> <p> NoInterruption - There is no interruption to the environment or application availability. </p> </value> <value name=\"RestartEnvironment\"> <p> RestartEnvironment - The environment is restarted, all AWS resources are deleted and recreated, and the environment is unavailable during the process. </p> </value> <value name=\"RestartApplicationServer\"> <p> RestartApplicationServer - The environment is available the entire time. However, a short application outage occurs when the application servers on the running Amazon EC2 instances are restarted. </p> </value> </enumValues> <ul> <li> <code>NoInterruption</code> : There is no interruption to the environment or application availability. </li> <li> <code>RestartEnvironment</code> : The environment is entirely restarted, all AWS resources are deleted and recreated, and the environment is unavailable during the process. </li> <li> <code>RestartApplicationServer</code> : The environment is available the entire time. However, a short application outage occurs when the application servers on the running Amazon EC2 instances are restarted. </li> </ul>"
241
- }
242
- },
243
- "ConfigurationOptionValue": {
244
- "base": null,
245
- "refs": {
246
- "ConfigurationOptionSetting$Value": "<p> The current value for the configuration option. </p>"
247
- }
248
- },
249
- "ConfigurationOptionValueType": {
250
- "base": null,
251
- "refs": {
252
- "ConfigurationOptionDescription$ValueType": "<p> An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values: </p> <enumValues> <value name=\"Scalar\"> <p> <code>Scalar</code> : Values for this option are a single selection from the possible values, or a unformatted string or numeric value governed by the MIN/MAX/Regex constraints: </p> </value> <value name=\"List\"> <p> <code>List</code> : Values for this option are multiple selections of the possible values. </p> </value> <value name=\"Boolean\"> <p> <code>Boolean</code> : Values for this option are either <code>true</code> or <code>false</code> . </p> </value> </enumValues> <p> <ul> <li> <code>Scalar</code> : Values for this option are a single selection from the possible values, or an unformatted string, or numeric value governed by the <code>MIN/MAX/Regex</code> constraints. </li> <li> <code>List</code> : Values for this option are multiple selections from the possible values. </li> <li> <code>Boolean</code> : Values for this option are either <code>true</code> or <code>false</code> . </li> </ul> </p>"
253
- }
254
- },
255
- "ConfigurationOptionsDescription": {
256
- "base": "<p>Describes the settings for a specified configuration set.</p>",
257
- "refs": {
258
- }
259
- },
260
- "ConfigurationSettingsDescription": {
261
- "base": "<p> Describes the settings for a configuration set. </p>",
262
- "refs": {
263
- "ConfigurationSettingsDescriptionList$member": null
264
- }
265
- },
266
- "ConfigurationSettingsDescriptionList": {
267
- "base": null,
268
- "refs": {
269
- "ConfigurationSettingsDescriptions$ConfigurationSettings": "<p> A list of <a>ConfigurationSettingsDescription</a>. </p>"
270
- }
271
- },
272
- "ConfigurationSettingsDescriptions": {
273
- "base": "<p>The results from a request to change the configuration settings of an environment.</p>",
274
- "refs": {
275
- }
276
- },
277
- "ConfigurationSettingsValidationMessages": {
278
- "base": "<p>Provides a list of validation messages.</p>",
279
- "refs": {
280
- }
281
- },
282
- "ConfigurationTemplateName": {
283
- "base": null,
284
- "refs": {
285
- "ConfigurationSettingsDescription$TemplateName": "<p> If not <code>null</code>, the name of the configuration template for this configuration set. </p>",
286
- "ConfigurationTemplateNamesList$member": null,
287
- "CreateConfigurationTemplateMessage$TemplateName": "<p>The name of the configuration template.</p> <p>Constraint: This name must be unique per application. </p> <p>Default: If a configuration template already exists with this name, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p>",
288
- "CreateEnvironmentMessage$TemplateName": "<p> The name of the configuration template to use in deployment. If no configuration template is found with this name, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this parameter or a <code>SolutionStackName</code>, but not both. If you specify both, AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. If you do not specify either, AWS Elastic Beanstalk returns a <code>MissingRequiredParameter</code> error. </p>",
289
- "DeleteConfigurationTemplateMessage$TemplateName": "<p>The name of the configuration template to delete.</p>",
290
- "DescribeConfigurationOptionsMessage$TemplateName": "<p> The name of the configuration template whose configuration options you want to describe. </p>",
291
- "DescribeConfigurationSettingsMessage$TemplateName": "<p> The name of the configuration template to describe. </p> <p> Conditional: You must specify either this parameter or an EnvironmentName, but not both. If you specify both, AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. If you do not specify either, AWS Elastic Beanstalk returns a <code>MissingRequiredParameter</code> error. </p>",
292
- "DescribeEventsMessage$TemplateName": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration. </p>",
293
- "EnvironmentDescription$TemplateName": "<p> The name of the configuration template used to originally launch this environment. </p>",
294
- "EventDescription$TemplateName": "<p>The name of the configuration associated with this event.</p>",
295
- "SourceConfiguration$TemplateName": "<p>The name of the configuration template.</p>",
296
- "UpdateConfigurationTemplateMessage$TemplateName": "<p>The name of the configuration template to update.</p> <p> If no configuration template is found with this name, <code>UpdateConfigurationTemplate</code> returns an <code>InvalidParameterValue</code> error. </p>",
297
- "UpdateEnvironmentMessage$TemplateName": "<p> If this parameter is specified, AWS Elastic Beanstalk deploys this configuration template to the environment. If no such configuration template is found, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p>",
298
- "ValidateConfigurationSettingsMessage$TemplateName": "<p> The name of the configuration template to validate the settings against. </p> <p> Condition: You cannot specify both this and an environment name. </p>"
299
- }
300
- },
301
- "ConfigurationTemplateNamesList": {
302
- "base": null,
303
- "refs": {
304
- "ApplicationDescription$ConfigurationTemplates": "<p> The names of the configuration templates associated with this application. </p>"
305
- }
306
- },
307
- "CreateApplicationMessage": {
308
- "base": "<p>This documentation target is not reported in the API reference.</p>",
309
- "refs": {
310
- }
311
- },
312
- "CreateApplicationVersionMessage": {
313
- "base": "<p></p>",
314
- "refs": {
315
- }
316
- },
317
- "CreateConfigurationTemplateMessage": {
318
- "base": "<p>This documentation target is not reported in the API reference.</p>",
319
- "refs": {
320
- }
321
- },
322
- "CreateEnvironmentMessage": {
323
- "base": "<p></p>",
324
- "refs": {
325
- }
326
- },
327
- "CreateStorageLocationResultMessage": {
328
- "base": "<p>Results of a <a>CreateStorageLocationResult</a> call.</p>",
329
- "refs": {
330
- }
331
- },
332
- "CreationDate": {
333
- "base": null,
334
- "refs": {
335
- "ApplicationDescription$DateCreated": "<p>The date when the application was created.</p>",
336
- "ApplicationVersionDescription$DateCreated": "<p>The creation date of the application version.</p>",
337
- "ConfigurationSettingsDescription$DateCreated": "<p> The date (in UTC time) when this configuration set was created. </p>",
338
- "EnvironmentDescription$DateCreated": "<p>The creation date for this environment.</p>"
339
- }
340
- },
341
- "DNSCname": {
342
- "base": null,
343
- "refs": {
344
- "CheckDNSAvailabilityResultMessage$FullyQualifiedCNAME": "<p>The fully qualified CNAME to reserve when <a>CreateEnvironment</a> is called with the provided prefix.</p>",
345
- "EnvironmentDescription$CNAME": "<p> The URL to the CNAME for this environment. </p>"
346
- }
347
- },
348
- "DNSCnamePrefix": {
349
- "base": null,
350
- "refs": {
351
- "CheckDNSAvailabilityMessage$CNAMEPrefix": "<p> The prefix used when this CNAME is reserved. </p>",
352
- "CreateEnvironmentMessage$CNAMEPrefix": "<p> If specified, the environment attempts to use this value as the prefix for the CNAME. If not specified, the CNAME is generated automatically by appending a random alphanumeric string to the environment name. </p>"
353
- }
354
- },
355
- "DeleteApplicationMessage": {
356
- "base": "<p>This documentation target is not reported in the API reference.</p>",
357
- "refs": {
358
- }
359
- },
360
- "DeleteApplicationVersionMessage": {
361
- "base": "<p>This documentation target is not reported in the API reference.</p>",
362
- "refs": {
363
- }
364
- },
365
- "DeleteConfigurationTemplateMessage": {
366
- "base": "<p>This documentation target is not reported in the API reference.</p>",
367
- "refs": {
368
- }
369
- },
370
- "DeleteEnvironmentConfigurationMessage": {
371
- "base": "<p>This documentation target is not reported in the API reference.</p>",
372
- "refs": {
373
- }
374
- },
375
- "DeleteSourceBundle": {
376
- "base": null,
377
- "refs": {
378
- "DeleteApplicationVersionMessage$DeleteSourceBundle": "<p>Indicates whether to delete the associated source bundle from Amazon S3: </p> <ul> <li> <code>true</code>: An attempt is made to delete the associated Amazon S3 source bundle specified at time of creation. </li> <li> <code>false</code>: No action is taken on the Amazon S3 source bundle specified at time of creation. </li> </ul> <p> Valid Values: <code>true</code> | <code>false</code> </p>"
379
- }
380
- },
381
- "DescribeApplicationVersionsMessage": {
382
- "base": "<p>Result message containing a list of configuration descriptions.</p>",
383
- "refs": {
384
- }
385
- },
386
- "DescribeApplicationsMessage": {
387
- "base": "<p>This documentation target is not reported in the API reference.</p>",
388
- "refs": {
389
- }
390
- },
391
- "DescribeConfigurationOptionsMessage": {
392
- "base": "<p>Result message containig a list of application version descriptions. </p>",
393
- "refs": {
394
- }
395
- },
396
- "DescribeConfigurationSettingsMessage": {
397
- "base": "<p>Result message containing all of the configuration settings for a specified solution stack or configuration template.</p>",
398
- "refs": {
399
- }
400
- },
401
- "DescribeEnvironmentResourcesMessage": {
402
- "base": "<p>This documentation target is not reported in the API reference.</p>",
403
- "refs": {
404
- }
405
- },
406
- "DescribeEnvironmentsMessage": {
407
- "base": "<p>This documentation target is not reported in the API reference.</p>",
408
- "refs": {
409
- }
410
- },
411
- "DescribeEventsMessage": {
412
- "base": "<p>This documentation target is not reported in the API reference.</p>",
413
- "refs": {
414
- }
415
- },
416
- "Description": {
417
- "base": null,
418
- "refs": {
419
- "ApplicationDescription$Description": "<p>User-defined description of the application.</p>",
420
- "ApplicationVersionDescription$Description": "<p>The description of this application version.</p>",
421
- "ConfigurationSettingsDescription$Description": "<p> Describes this configuration set. </p>",
422
- "CreateApplicationMessage$Description": "<p>Describes the application.</p>",
423
- "CreateApplicationVersionMessage$Description": "<p>Describes this version.</p>",
424
- "CreateConfigurationTemplateMessage$Description": "<p>Describes this configuration.</p>",
425
- "CreateEnvironmentMessage$Description": "<p>Describes this environment.</p>",
426
- "EnvironmentDescription$Description": "<p>Describes this environment.</p>",
427
- "UpdateApplicationMessage$Description": "<p> A new description for the application. </p> <p>Default: If not specified, AWS Elastic Beanstalk does not update the description. </p>",
428
- "UpdateApplicationVersionMessage$Description": "<p>A new description for this release.</p>",
429
- "UpdateConfigurationTemplateMessage$Description": "<p>A new description for the configuration.</p>",
430
- "UpdateEnvironmentMessage$Description": "<p> If this parameter is specified, AWS Elastic Beanstalk updates the description of this environment. </p>"
431
- }
432
- },
433
- "Ec2InstanceId": {
434
- "base": null,
435
- "refs": {
436
- "EnvironmentInfoDescription$Ec2InstanceId": "<p>The Amazon EC2 Instance ID for this information.</p>"
437
- }
438
- },
439
- "EndpointURL": {
440
- "base": null,
441
- "refs": {
442
- "EnvironmentDescription$EndpointURL": "<p>For load-balanced, autoscaling environments, the URL to the LoadBalancer. For single-instance environments, the IP address of the instance.</p>"
443
- }
444
- },
445
- "EnvironmentDescription": {
446
- "base": "<p>Describes the properties of an environment.</p>",
447
- "refs": {
448
- "EnvironmentDescriptionsList$member": null
449
- }
450
- },
451
- "EnvironmentDescriptionsList": {
452
- "base": null,
453
- "refs": {
454
- "EnvironmentDescriptionsMessage$Environments": "<p> Returns an <a>EnvironmentDescription</a> list. </p>"
455
- }
456
- },
457
- "EnvironmentDescriptionsMessage": {
458
- "base": "<p>Result message containing a list of environment descriptions.</p>",
459
- "refs": {
460
- }
461
- },
462
- "EnvironmentHealth": {
463
- "base": null,
464
- "refs": {
465
- "EnvironmentDescription$Health": "<p> Describes the health status of the environment. AWS Elastic Beanstalk indicates the failure levels for a running environment: </p> <enumValues> <value name=\"Red\"> <p> <code>Red</code> : Indicates the environment is not working. </p> </value> <value name=\"Yellow\"> <p> <code>Yellow</code>: Indicates that something is wrong, the application might not be available, but the instances appear running. </p> </value> <value name=\"Green\"> <p> <code>Green</code>: Indicates the environment is healthy and fully functional. </p> </value> </enumValues> <ul> <li> <code>Red</code>: Indicates the environment is not responsive. Occurs when three or more consecutive failures occur for an environment. </li> <li> <code>Yellow</code>: Indicates that something is wrong. Occurs when two consecutive failures occur for an environment. </li> <li> <code>Green</code>: Indicates the environment is healthy and fully functional. </li> <li> <code>Grey</code>: Default health for a new environment. The environment is not fully launched and health checks have not started or health checks are suspended during an <code>UpdateEnvironment</code> or <code>RestartEnvironement</code> request. </li> </ul> <p> Default: <code>Grey</code> </p>"
466
- }
467
- },
468
- "EnvironmentId": {
469
- "base": null,
470
- "refs": {
471
- "AbortEnvironmentUpdateMessage$EnvironmentId": "<p>This specifies the ID of the environment with the in-progress update that you want to cancel.</p>",
472
- "CreateConfigurationTemplateMessage$EnvironmentId": "<p> The ID of the environment used with this configuration template. </p>",
473
- "DescribeEnvironmentResourcesMessage$EnvironmentId": "<p> The ID of the environment to retrieve AWS resource usage data. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
474
- "DescribeEventsMessage$EnvironmentId": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment. </p>",
475
- "EnvironmentDescription$EnvironmentId": "<p> The ID of this environment. </p>",
476
- "EnvironmentIdList$member": null,
477
- "RebuildEnvironmentMessage$EnvironmentId": "<p> The ID of the environment to rebuild. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
478
- "RequestEnvironmentInfoMessage$EnvironmentId": "<p>The ID of the environment of the requested data.</p> <p> If no such environment is found, <code>RequestEnvironmentInfo</code> returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
479
- "RestartAppServerMessage$EnvironmentId": "<p> The ID of the environment to restart the server for. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
480
- "RetrieveEnvironmentInfoMessage$EnvironmentId": "<p>The ID of the data's environment.</p> <p> If no such environment is found, returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
481
- "SwapEnvironmentCNAMEsMessage$SourceEnvironmentId": "<p> The ID of the source environment. </p> <p> Condition: You must specify at least the <code>SourceEnvironmentID</code> or the <code>SourceEnvironmentName</code>. You may also specify both. If you specify the <code>SourceEnvironmentId</code>, you must specify the <code>DestinationEnvironmentId</code>. </p>",
482
- "SwapEnvironmentCNAMEsMessage$DestinationEnvironmentId": "<p> The ID of the destination environment. </p> <p> Condition: You must specify at least the <code>DestinationEnvironmentID</code> or the <code>DestinationEnvironmentName</code>. You may also specify both. You must specify the <code>SourceEnvironmentId</code> with the <code>DestinationEnvironmentId</code>. </p>",
483
- "TerminateEnvironmentMessage$EnvironmentId": "<p>The ID of the environment to terminate.</p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
484
- "UpdateEnvironmentMessage$EnvironmentId": "<p>The ID of the environment to update.</p> <p> If no environment with this ID exists, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>"
485
- }
486
- },
487
- "EnvironmentIdList": {
488
- "base": null,
489
- "refs": {
490
- "DescribeEnvironmentsMessage$EnvironmentIds": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs. </p>"
491
- }
492
- },
493
- "EnvironmentInfoDescription": {
494
- "base": "<p>The information retrieved from the Amazon EC2 instances.</p>",
495
- "refs": {
496
- "EnvironmentInfoDescriptionList$member": null
497
- }
498
- },
499
- "EnvironmentInfoDescriptionList": {
500
- "base": null,
501
- "refs": {
502
- "RetrieveEnvironmentInfoResultMessage$EnvironmentInfo": "<p> The <a>EnvironmentInfoDescription</a> of the environment. </p>"
503
- }
504
- },
505
- "EnvironmentInfoType": {
506
- "base": null,
507
- "refs": {
508
- "EnvironmentInfoDescription$InfoType": "<p>The type of information retrieved.</p>",
509
- "RequestEnvironmentInfoMessage$InfoType": "<p> The type of information to request. </p>",
510
- "RetrieveEnvironmentInfoMessage$InfoType": "<p> The type of information to retrieve. </p>"
511
- }
512
- },
513
- "EnvironmentName": {
514
- "base": null,
515
- "refs": {
516
- "AbortEnvironmentUpdateMessage$EnvironmentName": "<p>This specifies the name of the environment with the in-progress update that you want to cancel.</p>",
517
- "ConfigurationSettingsDescription$EnvironmentName": "<p> If not <code>null</code>, the name of the environment for this configuration set. </p>",
518
- "CreateEnvironmentMessage$EnvironmentName": "<p> A unique name for the deployment environment. Used in the application URL. </p> <p>Constraint: Must be from 4 to 23 characters in length. The name can contain only letters, numbers, and hyphens. It cannot start or end with a hyphen. This name must be unique in your account. If the specified name already exists, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p> <p>Default: If the CNAME parameter is not specified, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.</p>",
519
- "DeleteEnvironmentConfigurationMessage$EnvironmentName": "<p> The name of the environment to delete the draft configuration from. </p>",
520
- "DescribeConfigurationOptionsMessage$EnvironmentName": "<p> The name of the environment whose configuration options you want to describe. </p>",
521
- "DescribeConfigurationSettingsMessage$EnvironmentName": "<p> The name of the environment to describe. </p> <p> Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
522
- "DescribeEnvironmentResourcesMessage$EnvironmentName": "<p> The name of the environment to retrieve AWS resource usage data. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
523
- "DescribeEventsMessage$EnvironmentName": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment. </p>",
524
- "EnvironmentDescription$EnvironmentName": "<p>The name of this environment.</p>",
525
- "EnvironmentNamesList$member": null,
526
- "EnvironmentResourceDescription$EnvironmentName": "<p>The name of the environment.</p>",
527
- "EventDescription$EnvironmentName": "<p>The name of the environment associated with this event.</p>",
528
- "RebuildEnvironmentMessage$EnvironmentName": "<p> The name of the environment to rebuild. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
529
- "RequestEnvironmentInfoMessage$EnvironmentName": "<p>The name of the environment of the requested data.</p> <p> If no such environment is found, <code>RequestEnvironmentInfo</code> returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
530
- "RestartAppServerMessage$EnvironmentName": "<p> The name of the environment to restart the server for. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
531
- "RetrieveEnvironmentInfoMessage$EnvironmentName": "<p>The name of the data's environment.</p> <p> If no such environment is found, returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
532
- "SwapEnvironmentCNAMEsMessage$SourceEnvironmentName": "<p> The name of the source environment. </p> <p> Condition: You must specify at least the <code>SourceEnvironmentID</code> or the <code>SourceEnvironmentName</code>. You may also specify both. If you specify the <code>SourceEnvironmentName</code>, you must specify the <code>DestinationEnvironmentName</code>. </p>",
533
- "SwapEnvironmentCNAMEsMessage$DestinationEnvironmentName": "<p> The name of the destination environment. </p> <p> Condition: You must specify at least the <code>DestinationEnvironmentID</code> or the <code>DestinationEnvironmentName</code>. You may also specify both. You must specify the <code>SourceEnvironmentName</code> with the <code>DestinationEnvironmentName</code>. </p>",
534
- "TerminateEnvironmentMessage$EnvironmentName": "<p>The name of the environment to terminate.</p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
535
- "UpdateEnvironmentMessage$EnvironmentName": "<p>The name of the environment to update. If no environment with this name exists, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p> <p> Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns <code>MissingRequiredParameter</code> error. </p>",
536
- "ValidateConfigurationSettingsMessage$EnvironmentName": "<p> The name of the environment to validate the settings against. </p> <p> Condition: You cannot specify both this and a configuration template name. </p>"
537
- }
538
- },
539
- "EnvironmentNamesList": {
540
- "base": null,
541
- "refs": {
542
- "DescribeEnvironmentsMessage$EnvironmentNames": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names. </p>"
543
- }
544
- },
545
- "EnvironmentResourceDescription": {
546
- "base": "<p>Describes the AWS resources in use by this environment. This data is live.</p>",
547
- "refs": {
548
- "EnvironmentResourceDescriptionsMessage$EnvironmentResources": "<p> A list of <a>EnvironmentResourceDescription</a>. </p>"
549
- }
550
- },
551
- "EnvironmentResourceDescriptionsMessage": {
552
- "base": "<p>Result message containing a list of environment resource descriptions. </p>",
553
- "refs": {
554
- }
555
- },
556
- "EnvironmentResourcesDescription": {
557
- "base": "<p>Describes the AWS resources in use by this environment. This data is not live data.</p>",
558
- "refs": {
559
- "EnvironmentDescription$Resources": "<p>The description of the AWS resources used by this environment.</p>"
560
- }
561
- },
562
- "EnvironmentStatus": {
563
- "base": null,
564
- "refs": {
565
- "EnvironmentDescription$Status": "<p> The current operational status of the environment: </p> <ul> <li> <code>Launching</code>: Environment is in the process of initial deployment. </li> <li> <code>Updating</code>: Environment is in the process of updating its configuration settings or application version. </li> <li> <code>Ready</code>: Environment is available to have an action performed on it, such as update or terminate. </li> <li> <code>Terminating</code>: Environment is in the shut-down process. </li> <li> <code>Terminated</code>: Environment is not running. </li> </ul>"
566
- }
567
- },
568
- "EnvironmentTier": {
569
- "base": "<p> Describes the properties of an environment tier </p>",
570
- "refs": {
571
- "CreateEnvironmentMessage$Tier": "<p> This specifies the tier to use for creating this environment. </p>",
572
- "EnvironmentDescription$Tier": "<p>Describes the current tier of this environment.</p>",
573
- "UpdateEnvironmentMessage$Tier": "<p> This specifies the tier to use to update the environment. </p> <p> Condition: At this time, if you change the tier version, name, or type, AWS Elastic Beanstalk returns <code>InvalidParameterValue</code> error. </p>"
574
- }
575
- },
576
- "EventDate": {
577
- "base": null,
578
- "refs": {
579
- "EventDescription$EventDate": "<p>The date when the event occurred.</p>"
580
- }
581
- },
582
- "EventDescription": {
583
- "base": "<p>Describes an event.</p>",
584
- "refs": {
585
- "EventDescriptionList$member": null
586
- }
587
- },
588
- "EventDescriptionList": {
589
- "base": null,
590
- "refs": {
591
- "EventDescriptionsMessage$Events": "<p> A list of <a>EventDescription</a>. </p>"
592
- }
593
- },
594
- "EventDescriptionsMessage": {
595
- "base": "<p>Result message wrapping a list of event descriptions.</p>",
596
- "refs": {
597
- }
598
- },
599
- "EventMessage": {
600
- "base": null,
601
- "refs": {
602
- "EventDescription$Message": "<p>The event message.</p>"
603
- }
604
- },
605
- "EventSeverity": {
606
- "base": null,
607
- "refs": {
608
- "DescribeEventsMessage$Severity": "<p> If specified, limits the events returned from this call to include only those with the specified severity or higher. </p>",
609
- "EventDescription$Severity": "<p>The severity level of this event. </p>"
610
- }
611
- },
612
- "FileTypeExtension": {
613
- "base": null,
614
- "refs": {
615
- "SolutionStackFileTypeList$member": null
616
- }
617
- },
618
- "IncludeDeleted": {
619
- "base": null,
620
- "refs": {
621
- "DescribeEnvironmentsMessage$IncludeDeleted": "<p>Indicates whether to include deleted environments: </p> <p> <code>true</code>: Environments that have been deleted after <code>IncludedDeletedBackTo</code> are displayed. </p> <p> <code>false</code>: Do not include deleted environments. </p>"
622
- }
623
- },
624
- "IncludeDeletedBackTo": {
625
- "base": null,
626
- "refs": {
627
- "DescribeEnvironmentsMessage$IncludedDeletedBackTo": "<p> If specified when <code>IncludeDeleted</code> is set to <code>true</code>, then environments deleted after this date are displayed. </p>"
628
- }
629
- },
630
- "Instance": {
631
- "base": "<p>The description of an Amazon EC2 instance.</p>",
632
- "refs": {
633
- "InstanceList$member": null
634
- }
635
- },
636
- "InstanceList": {
637
- "base": null,
638
- "refs": {
639
- "EnvironmentResourceDescription$Instances": "<p>The Amazon EC2 instances used by this environment.</p>"
640
- }
641
- },
642
- "InsufficientPrivilegesException": {
643
- "base": "<p>Unable to perform the specified operation because the user does not have enough privileges for one of more downstream aws services</p>",
644
- "refs": {
645
- }
646
- },
647
- "Integer": {
648
- "base": null,
649
- "refs": {
650
- "Listener$Port": "<p>The port that is used by the Listener.</p>"
651
- }
652
- },
653
- "LaunchConfiguration": {
654
- "base": "<p>Describes an Auto Scaling launch configuration.</p>",
655
- "refs": {
656
- "LaunchConfigurationList$member": null
657
- }
658
- },
659
- "LaunchConfigurationList": {
660
- "base": null,
661
- "refs": {
662
- "EnvironmentResourceDescription$LaunchConfigurations": "<p>The Auto Scaling launch configurations in use by this environment.</p>"
663
- }
664
- },
665
- "ListAvailableSolutionStacksResultMessage": {
666
- "base": "<p>A list of available AWS Elastic Beanstalk solution stacks. </p>",
667
- "refs": {
668
- }
669
- },
670
- "Listener": {
671
- "base": "<p>Describes the properties of a Listener for the LoadBalancer.</p>",
672
- "refs": {
673
- "LoadBalancerListenersDescription$member": null
674
- }
675
- },
676
- "LoadBalancer": {
677
- "base": "<p>Describes a LoadBalancer.</p>",
678
- "refs": {
679
- "LoadBalancerList$member": null
680
- }
681
- },
682
- "LoadBalancerDescription": {
683
- "base": "<p>Describes the details of a LoadBalancer.</p>",
684
- "refs": {
685
- "EnvironmentResourcesDescription$LoadBalancer": "<p>Describes the LoadBalancer.</p>"
686
- }
687
- },
688
- "LoadBalancerList": {
689
- "base": null,
690
- "refs": {
691
- "EnvironmentResourceDescription$LoadBalancers": "<p>The LoadBalancers in use by this environment.</p>"
692
- }
693
- },
694
- "LoadBalancerListenersDescription": {
695
- "base": null,
696
- "refs": {
697
- "LoadBalancerDescription$Listeners": "<p>A list of Listeners used by the LoadBalancer.</p>"
698
- }
699
- },
700
- "MaxRecords": {
701
- "base": null,
702
- "refs": {
703
- "DescribeEventsMessage$MaxRecords": "<p> Specifies the maximum number of events that can be returned, beginning with the most recent event. </p>"
704
- }
705
- },
706
- "Message": {
707
- "base": null,
708
- "refs": {
709
- "EnvironmentInfoDescription$Message": "<p>The retrieved information.</p>"
710
- }
711
- },
712
- "OperationInProgressException": {
713
- "base": "<p>Unable to perform the specified operation because another operation is already in progress affecting an an element in this activity.</p>",
714
- "refs": {
715
- }
716
- },
717
- "OptionNamespace": {
718
- "base": null,
719
- "refs": {
720
- "ConfigurationOptionDescription$Namespace": "<p> A unique namespace identifying the option's associated AWS resource. </p>",
721
- "ConfigurationOptionSetting$Namespace": "<p> A unique namespace identifying the option's associated AWS resource. </p>",
722
- "OptionSpecification$Namespace": "<p> A unique namespace identifying the option's associated AWS resource. </p>",
723
- "ValidationMessage$Namespace": "<p></p>"
724
- }
725
- },
726
- "OptionRestrictionMaxLength": {
727
- "base": null,
728
- "refs": {
729
- "ConfigurationOptionDescription$MaxLength": "<p> If specified, the configuration option must be a string value no longer than this value. </p>"
730
- }
731
- },
732
- "OptionRestrictionMaxValue": {
733
- "base": null,
734
- "refs": {
735
- "ConfigurationOptionDescription$MaxValue": "<p> If specified, the configuration option must be a numeric value less than this value. </p>"
736
- }
737
- },
738
- "OptionRestrictionMinValue": {
739
- "base": null,
740
- "refs": {
741
- "ConfigurationOptionDescription$MinValue": "<p> If specified, the configuration option must be a numeric value greater than this value. </p>"
742
- }
743
- },
744
- "OptionRestrictionRegex": {
745
- "base": "<p> A regular expression representing a restriction on a string configuration option value. </p>",
746
- "refs": {
747
- "ConfigurationOptionDescription$Regex": "<p> If specified, the configuration option must be a string value that satisfies this regular expression. </p>"
748
- }
749
- },
750
- "OptionSpecification": {
751
- "base": "<p> A specification identifying an individual configuration option. </p>",
752
- "refs": {
753
- "OptionsSpecifierList$member": null
754
- }
755
- },
756
- "OptionsSpecifierList": {
757
- "base": null,
758
- "refs": {
759
- "CreateEnvironmentMessage$OptionsToRemove": "<p> A list of custom user-defined configuration options to remove from the configuration set for this new environment. </p>",
760
- "DescribeConfigurationOptionsMessage$Options": "<p> If specified, restricts the descriptions to only the specified options. </p>",
761
- "UpdateConfigurationTemplateMessage$OptionsToRemove": "<p> A list of configuration options to remove from the configuration set. </p> <p> Constraint: You can remove only <code>UserDefined</code> configuration options. </p>",
762
- "UpdateEnvironmentMessage$OptionsToRemove": "<p> A list of custom user-defined configuration options to remove from the configuration set for this environment. </p>"
763
- }
764
- },
765
- "Queue": {
766
- "base": "<p>Describes a queue.</p>",
767
- "refs": {
768
- "QueueList$member": null
769
- }
770
- },
771
- "QueueList": {
772
- "base": null,
773
- "refs": {
774
- "EnvironmentResourceDescription$Queues": "<p> The queues used by this environment. </p>"
775
- }
776
- },
777
- "RebuildEnvironmentMessage": {
778
- "base": "<p></p>",
779
- "refs": {
780
- }
781
- },
782
- "RegexLabel": {
783
- "base": null,
784
- "refs": {
785
- "OptionRestrictionRegex$Label": "<p> A unique name representing this regular expression. </p>"
786
- }
787
- },
788
- "RegexPattern": {
789
- "base": null,
790
- "refs": {
791
- "OptionRestrictionRegex$Pattern": "<p> The regular expression pattern that a string configuration option value with this restriction must match. </p>"
792
- }
793
- },
794
- "RequestEnvironmentInfoMessage": {
795
- "base": "<p>This documentation target is not reported in the API reference.</p>",
796
- "refs": {
797
- }
798
- },
799
- "RequestId": {
800
- "base": null,
801
- "refs": {
802
- "DescribeEventsMessage$RequestId": "<p> If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID. </p>",
803
- "EventDescription$RequestId": "<p>The web service request ID for the activity of this event.</p>"
804
- }
805
- },
806
- "ResourceId": {
807
- "base": null,
808
- "refs": {
809
- "AutoScalingGroup$Name": "<p> The name of the <code>AutoScalingGroup</code> . </p>",
810
- "Instance$Id": "<p>The ID of the Amazon EC2 instance.</p>",
811
- "LaunchConfiguration$Name": "<p>The name of the launch configuration.</p>",
812
- "LoadBalancer$Name": "<p>The name of the LoadBalancer.</p>",
813
- "Trigger$Name": "<p>The name of the trigger.</p>"
814
- }
815
- },
816
- "ResourceName": {
817
- "base": null,
818
- "refs": {
819
- "ConfigurationOptionSetting$ResourceName": "<p> A unique resource name for a time-based scaling configuration option. </p>",
820
- "OptionSpecification$ResourceName": "<p> A unique resource name for a time-based scaling configuration option. </p>"
821
- }
822
- },
823
- "RestartAppServerMessage": {
824
- "base": "<p></p>",
825
- "refs": {
826
- }
827
- },
828
- "RetrieveEnvironmentInfoMessage": {
829
- "base": "<p>This documentation target is not reported in the API reference.</p>",
830
- "refs": {
831
- }
832
- },
833
- "RetrieveEnvironmentInfoResultMessage": {
834
- "base": "<p>Result message containing a description of the requested environment info.</p>",
835
- "refs": {
836
- }
837
- },
838
- "S3Bucket": {
839
- "base": null,
840
- "refs": {
841
- "CreateStorageLocationResultMessage$S3Bucket": "<p> The name of the Amazon S3 bucket created. </p>",
842
- "S3Location$S3Bucket": "<p>The Amazon S3 bucket where the data is located.</p>"
843
- }
844
- },
845
- "S3Key": {
846
- "base": null,
847
- "refs": {
848
- "S3Location$S3Key": "<p>The Amazon S3 key where the data is located.</p>"
849
- }
850
- },
851
- "S3Location": {
852
- "base": "<p>A specification of a location in Amazon S3.</p>",
853
- "refs": {
854
- "ApplicationVersionDescription$SourceBundle": "<p> The location where the source bundle is located for this version. </p>",
855
- "CreateApplicationVersionMessage$SourceBundle": "<p> The Amazon S3 bucket and key that identify the location of the source bundle for this version. </p> <p> If data found at the Amazon S3 location exceeds the maximum allowed source bundle size, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. The maximum size allowed is 512 MB. </p> <p>Default: If not specified, AWS Elastic Beanstalk uses a sample application. If only partially specified (for example, a bucket is provided but not the key) or if no data is found at the Amazon S3 location, AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. </p>"
856
- }
857
- },
858
- "S3LocationNotInServiceRegionException": {
859
- "base": "<p>The specified S3 bucket does not belong to the S3 region in which the service is running.</p>",
860
- "refs": {
861
- }
862
- },
863
- "S3SubscriptionRequiredException": {
864
- "base": "<p>The caller does not have a subscription to Amazon S3.</p>",
865
- "refs": {
866
- }
867
- },
868
- "SampleTimestamp": {
869
- "base": null,
870
- "refs": {
871
- "EnvironmentInfoDescription$SampleTimestamp": "<p>The time stamp when this information was retrieved.</p>"
872
- }
873
- },
874
- "SolutionStackDescription": {
875
- "base": "<p> Describes the solution stack. </p>",
876
- "refs": {
877
- "AvailableSolutionStackDetailsList$member": null
878
- }
879
- },
880
- "SolutionStackFileTypeList": {
881
- "base": null,
882
- "refs": {
883
- "SolutionStackDescription$PermittedFileTypes": "<p> The permitted file types allowed for a solution stack. </p>"
884
- }
885
- },
886
- "SolutionStackName": {
887
- "base": null,
888
- "refs": {
889
- "AvailableSolutionStackNamesList$member": null,
890
- "ConfigurationOptionsDescription$SolutionStackName": "<p> The name of the solution stack these configuration options belong to. </p>",
891
- "ConfigurationSettingsDescription$SolutionStackName": "<p> The name of the solution stack this configuration set uses. </p>",
892
- "CreateConfigurationTemplateMessage$SolutionStackName": "<p>The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application server for a configuration template. It determines the set of configuration options as well as the possible and default values. </p> <p> Use <a>ListAvailableSolutionStacks</a> to obtain a list of available solution stacks. </p> <p> A solution stack name or a source configuration parameter must be specified, otherwise AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p> <p> If a solution stack name is not specified and the source configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template. </p>",
893
- "CreateEnvironmentMessage$SolutionStackName": "<p> This is an alternative to specifying a configuration name. If specified, AWS Elastic Beanstalk sets the configuration values to the default values associated with the specified solution stack. </p> <p> Condition: You must specify either this or a <code>TemplateName</code>, but not both. If you specify both, AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. If you do not specify either, AWS Elastic Beanstalk returns a <code>MissingRequiredParameter</code> error. </p>",
894
- "DescribeConfigurationOptionsMessage$SolutionStackName": "<p> The name of the solution stack whose configuration options you want to describe. </p>",
895
- "EnvironmentDescription$SolutionStackName": "<p> The name of the <code>SolutionStack</code> deployed with this environment. </p>",
896
- "SolutionStackDescription$SolutionStackName": "<p> The name of the solution stack. </p>",
897
- "UpdateEnvironmentMessage$SolutionStackName": "<p> This specifies the platform version that the environment will run after the environment is updated. </p>"
898
- }
899
- },
900
- "SourceBundleDeletionException": {
901
- "base": "<p>Unable to delete the Amazon S3 source bundle associated with the application version, although the application version deleted successfully.</p>",
902
- "refs": {
903
- }
904
- },
905
- "SourceConfiguration": {
906
- "base": "<p>A specification for an environment configuration</p>",
907
- "refs": {
908
- "CreateConfigurationTemplateMessage$SourceConfiguration": "<p> If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration. </p> <p> Values specified in the <code>OptionSettings</code> parameter of this call overrides any values obtained from the <code>SourceConfiguration</code>. </p> <p> If no configuration template is found, returns an <code>InvalidParameterValue</code> error. </p> <p> Constraint: If both the solution stack name parameter and the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution stack name or else AWS Elastic Beanstalk returns an <code>InvalidParameterCombination</code> error. </p>"
909
- }
910
- },
911
- "String": {
912
- "base": null,
913
- "refs": {
914
- "EnvironmentTier$Name": "<p>The name of this environment tier.</p>",
915
- "EnvironmentTier$Type": "<p>The type of this environment tier.</p>",
916
- "EnvironmentTier$Version": "<p>The version of this environment tier.</p>",
917
- "Listener$Protocol": "<p>The protocol that is used by the Listener.</p>",
918
- "LoadBalancerDescription$LoadBalancerName": "<p>The name of the LoadBalancer.</p>",
919
- "LoadBalancerDescription$Domain": "<p>The domain name of the LoadBalancer.</p>",
920
- "Queue$Name": "<p>The name of the queue.</p>",
921
- "Queue$URL": "<p>The URL of the queue.</p>"
922
- }
923
- },
924
- "SwapEnvironmentCNAMEsMessage": {
925
- "base": "<p>Swaps the CNAMEs of two environments.</p>",
926
- "refs": {
927
- }
928
- },
929
- "Tag": {
930
- "base": "<p>Describes a tag applied to a resource in an environment.</p>",
931
- "refs": {
932
- "Tags$member": null
933
- }
934
- },
935
- "TagKey": {
936
- "base": null,
937
- "refs": {
938
- "Tag$Key": "<p>The key of the tag.</p>"
939
- }
940
- },
941
- "TagValue": {
942
- "base": null,
943
- "refs": {
944
- "Tag$Value": "<p>The value of the tag.</p>"
945
- }
946
- },
947
- "Tags": {
948
- "base": null,
949
- "refs": {
950
- "CreateEnvironmentMessage$Tags": "<p> This specifies the tags applied to resources in the environment. </p>"
951
- }
952
- },
953
- "TerminateEnvForce": {
954
- "base": null,
955
- "refs": {
956
- "DeleteApplicationMessage$TerminateEnvByForce": "<p>When set to true, running environments will be terminated before deleting the application.</p>"
957
- }
958
- },
959
- "TerminateEnvironmentMessage": {
960
- "base": "<p>This documentation target is not reported in the API reference.</p>",
961
- "refs": {
962
- }
963
- },
964
- "TerminateEnvironmentResources": {
965
- "base": null,
966
- "refs": {
967
- "TerminateEnvironmentMessage$TerminateResources": "<p> Indicates whether the associated AWS resources should shut down when the environment is terminated: </p> <enumValues> <value name=\"true\"> <p> <code>true</code>: (default) The user AWS resources (for example, the Auto Scaling group, LoadBalancer, etc.) are terminated along with the environment. </p> </value> <value name=\"false\"> <p> <code>false</code>: The environment is removed from the AWS Elastic Beanstalk but the AWS resources continue to operate. </p> </value> </enumValues> <ul> <li> <code>true</code>: The specified environment as well as the associated AWS resources, such as Auto Scaling group and LoadBalancer, are terminated. </li> <li> <code>false</code>: AWS Elastic Beanstalk resource management is removed from the environment, but the AWS resources continue to operate. </li> </ul> <p> For more information, see the <a href=\"http://docs.aws.amazon.com/elasticbeanstalk/latest/ug/\"> AWS Elastic Beanstalk User Guide. </a> </p> <p> Default: <code>true</code> </p> <p> Valid Values: <code>true</code> | <code>false</code> </p>"
968
- }
969
- },
970
- "TimeFilterEnd": {
971
- "base": null,
972
- "refs": {
973
- "DescribeEventsMessage$EndTime": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the <code>EndTime</code>. </p>"
974
- }
975
- },
976
- "TimeFilterStart": {
977
- "base": null,
978
- "refs": {
979
- "DescribeEventsMessage$StartTime": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time. </p>"
980
- }
981
- },
982
- "Token": {
983
- "base": null,
984
- "refs": {
985
- "DescribeEventsMessage$NextToken": "<p> Pagination token. If specified, the events return the next batch of results. </p>",
986
- "EventDescriptionsMessage$NextToken": "<p> If returned, this indicates that there are more results to obtain. Use this token in the next <a>DescribeEvents</a> call to get the next batch of events. </p>"
987
- }
988
- },
989
- "TooManyApplicationVersionsException": {
990
- "base": "<p>The caller has exceeded the limit on the number of application versions associated with their account.</p>",
991
- "refs": {
992
- }
993
- },
994
- "TooManyApplicationsException": {
995
- "base": "<p>The caller has exceeded the limit on the number of applications associated with their account.</p>",
996
- "refs": {
997
- }
998
- },
999
- "TooManyBucketsException": {
1000
- "base": "<p>The web service attempted to create a bucket in an Amazon S3 account that already has 100 buckets.</p>",
1001
- "refs": {
1002
- }
1003
- },
1004
- "TooManyConfigurationTemplatesException": {
1005
- "base": "<p>The caller has exceeded the limit on the number of configuration templates associated with their account.</p>",
1006
- "refs": {
1007
- }
1008
- },
1009
- "TooManyEnvironmentsException": {
1010
- "base": "<p>The caller has exceeded the limit of allowed environments associated with the account.</p>",
1011
- "refs": {
1012
- }
1013
- },
1014
- "Trigger": {
1015
- "base": "<p>Describes a trigger.</p>",
1016
- "refs": {
1017
- "TriggerList$member": null
1018
- }
1019
- },
1020
- "TriggerList": {
1021
- "base": null,
1022
- "refs": {
1023
- "EnvironmentResourceDescription$Triggers": "<p> The <code>AutoScaling</code> triggers in use by this environment. </p>"
1024
- }
1025
- },
1026
- "UpdateApplicationMessage": {
1027
- "base": "<p>This documentation target is not reported in the API reference.</p>",
1028
- "refs": {
1029
- }
1030
- },
1031
- "UpdateApplicationVersionMessage": {
1032
- "base": "<p></p>",
1033
- "refs": {
1034
- }
1035
- },
1036
- "UpdateConfigurationTemplateMessage": {
1037
- "base": "<p>The result message containing the options for the specified solution stack.</p>",
1038
- "refs": {
1039
- }
1040
- },
1041
- "UpdateDate": {
1042
- "base": null,
1043
- "refs": {
1044
- "ApplicationDescription$DateUpdated": "<p>The date when the application was last modified.</p>",
1045
- "ApplicationVersionDescription$DateUpdated": "<p>The last modified date of the application version.</p>",
1046
- "ConfigurationSettingsDescription$DateUpdated": "<p> The date (in UTC time) when this configuration set was last modified. </p>",
1047
- "EnvironmentDescription$DateUpdated": "<p>The last modified date for this environment.</p>"
1048
- }
1049
- },
1050
- "UpdateEnvironmentMessage": {
1051
- "base": "<p>This documentation target is not reported in the API reference.</p>",
1052
- "refs": {
1053
- }
1054
- },
1055
- "UserDefinedOption": {
1056
- "base": null,
1057
- "refs": {
1058
- "ConfigurationOptionDescription$UserDefined": "<p> An indication of whether the user defined this configuration option: </p> <enumValues> <value name=\"true\"> <p> <code>true</code> : This configuration option was defined by the user. It is a valid choice for specifying this as an Option to Remove when updating configuration settings. </p> </value> <value name=\"false\"> <p> <code>false</code> : This configuration was not defined by the user. </p> </value> </enumValues> <ul> <li> <p> <code>true</code> : This configuration option was defined by the user. It is a valid choice for specifying if this as an <code>Option to Remove</code> when updating configuration settings. </p> </li> <li> <code>false</code> : This configuration was not defined by the user. </li> </ul> <p> Constraint: You can remove only <code>UserDefined</code> options from a configuration. </p> <p> Valid Values: <code>true</code> | <code>false</code></p>"
1059
- }
1060
- },
1061
- "ValidateConfigurationSettingsMessage": {
1062
- "base": "<p>A list of validation messages for a specified configuration template. </p>",
1063
- "refs": {
1064
- }
1065
- },
1066
- "ValidationMessage": {
1067
- "base": "<p> An error or warning for a desired configuration option value. </p>",
1068
- "refs": {
1069
- "ValidationMessagesList$member": null
1070
- }
1071
- },
1072
- "ValidationMessageString": {
1073
- "base": null,
1074
- "refs": {
1075
- "ValidationMessage$Message": "<p> A message describing the error or warning. </p>"
1076
- }
1077
- },
1078
- "ValidationMessagesList": {
1079
- "base": null,
1080
- "refs": {
1081
- "ConfigurationSettingsValidationMessages$Messages": "<p> A list of <a>ValidationMessage</a>. </p>"
1082
- }
1083
- },
1084
- "ValidationSeverity": {
1085
- "base": null,
1086
- "refs": {
1087
- "ValidationMessage$Severity": "<p> An indication of the severity of this message: </p> <enumValues> <value name=\"error\"> <p> error: This message indicates that this is not a valid setting for an option. </p> </value> <value name=\"warning\"> <p> warning: This message is providing information you should take into account. </p> </value> </enumValues> <ul> <li> error: This message indicates that this is not a valid setting for an option. </li> <li> warning: This message is providing information you should take into account. </li> </ul>"
1088
- }
1089
- },
1090
- "VersionLabel": {
1091
- "base": null,
1092
- "refs": {
1093
- "ApplicationVersionDescription$VersionLabel": "<p> A label uniquely identifying the version for the associated application. </p>",
1094
- "CreateApplicationVersionMessage$VersionLabel": "<p>A label identifying this version.</p> <p>Constraint: Must be unique per application. If an application version already exists with this label for the specified application, AWS Elastic Beanstalk returns an <code>InvalidParameterValue</code> error. </p>",
1095
- "CreateEnvironmentMessage$VersionLabel": "<p>The name of the application version to deploy.</p> <p> If the specified application has no associated application versions, AWS Elastic Beanstalk <code>UpdateEnvironment</code> returns an <code>InvalidParameterValue</code> error. </p> <p> Default: If not specified, AWS Elastic Beanstalk attempts to launch the sample application in the container. </p>",
1096
- "DeleteApplicationVersionMessage$VersionLabel": "<p> The label of the version to delete. </p>",
1097
- "DescribeEnvironmentsMessage$VersionLabel": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version. </p>",
1098
- "DescribeEventsMessage$VersionLabel": "<p> If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version. </p>",
1099
- "EnvironmentDescription$VersionLabel": "<p>The application version deployed in this environment.</p>",
1100
- "EventDescription$VersionLabel": "<p>The release label for the application version associated with this event.</p>",
1101
- "UpdateApplicationVersionMessage$VersionLabel": "<p>The name of the version to update.</p> <p> If no application version is found with this label, <code>UpdateApplication</code> returns an <code>InvalidParameterValue</code> error. </p>",
1102
- "UpdateEnvironmentMessage$VersionLabel": "<p> If this parameter is specified, AWS Elastic Beanstalk deploys the named application version to the environment. If no such application version is found, returns an <code>InvalidParameterValue</code> error. </p>",
1103
- "VersionLabelsList$member": null
1104
- }
1105
- },
1106
- "VersionLabelsList": {
1107
- "base": null,
1108
- "refs": {
1109
- "ApplicationDescription$Versions": "<p>The names of the versions for this application.</p>",
1110
- "DescribeApplicationVersionsMessage$VersionLabels": "<p> If specified, restricts the returned descriptions to only include ones that have the specified version labels. </p>"
1111
- }
1112
- }
1113
- }
1114
- }