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,791 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CreateCluster": "<p>Creates a new Amazon ECS cluster. By default, your account will receive a <code>default</code> cluster when you launch your first container instance. However, you can create your own cluster with a unique name with the <code>CreateCluster</code> action.</p>",
5
- "CreateService": "<p>Runs and maintains a desired number of tasks from a specified task definition. If the number of tasks running in a service drops below <code>desiredCount</code>, Amazon ECS will spawn another instantiation of the task in the specified cluster.</p>",
6
- "DeleteCluster": "<p>Deletes the specified cluster. You must deregister all container instances from this cluster before you may delete it. You can list the container instances in a cluster with <a>ListContainerInstances</a> and deregister them with <a>DeregisterContainerInstance</a>.</p>",
7
- "DeleteService": "<p>Deletes a specified service within a cluster.</p>",
8
- "DeregisterContainerInstance": "<p>Deregisters an Amazon ECS container instance from the specified cluster. This instance will no longer be available to run tasks.</p>",
9
- "DeregisterTaskDefinition": "<p>NOT YET IMPLEMENTED.</p> <p>Deregisters the specified task definition. You will no longer be able to run tasks from this definition after deregistration.</p>",
10
- "DescribeClusters": "<p>Describes one or more of your clusters.</p>",
11
- "DescribeContainerInstances": "<p>Describes Amazon EC2 Container Service container instances. Returns metadata about registered and remaining resources on each container instance requested.</p>",
12
- "DescribeServices": "<p>Describes the specified services running in your cluster.</p>",
13
- "DescribeTaskDefinition": "<p>Describes a task definition. You can specify a <code>family</code> and <code>revision</code> to find information on a specific task definition, or you can simply specify the family to find the latest revision in that family.</p>",
14
- "DescribeTasks": "<p>Describes a specified task or tasks.</p>",
15
- "DiscoverPollEndpoint": "<note><p>This action is only used by the Amazon EC2 Container Service agent, and it is not intended for use outside of the agent.</p></note> <p>Returns an endpoint for the Amazon EC2 Container Service agent to poll for updates.</p>",
16
- "ListClusters": "<p>Returns a list of existing clusters.</p>",
17
- "ListContainerInstances": "<p>Returns a list of container instances in a specified cluster.</p>",
18
- "ListServices": "<p>Lists the services that are running in a specified cluster.</p>",
19
- "ListTaskDefinitionFamilies": "<p>Returns a list of task definition families that are registered to your account. You can filter the results with the <code>familyPrefix</code> parameter.</p>",
20
- "ListTaskDefinitions": "<p>Returns a list of task definitions that are registered to your account. You can filter the results by family name with the <code>familyPrefix</code> parameter.</p>",
21
- "ListTasks": "<p>Returns a list of tasks for a specified cluster. You can filter the results by family name or by a particular container instance with the <code>family</code> and <code>containerInstance</code> parameters.</p>",
22
- "RegisterContainerInstance": "<note><p>This action is only used by the Amazon EC2 Container Service agent, and it is not intended for use outside of the agent.</p></note> <p>Registers an Amazon EC2 instance into the specified cluster. This instance will become available to place containers on.</p>",
23
- "RegisterTaskDefinition": "<p>Registers a new task definition from the supplied <code>family</code> and <code>containerDefinitions</code>. Optionally, you can add data volumes to your containers with the <code>volumes</code> parameter. For more information on task definition parameters and defaults, see <a href=\"http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html\">Amazon ECS Task Definitions</a> in the <i>Amazon EC2 Container Service Developer Guide</i>.</p>",
24
- "RunTask": "<p>Start a task using random placement and the default Amazon ECS scheduler. If you want to use your own scheduler or place a task on a specific container instance, use <code>StartTask</code> instead.</p> <important> <p>The <code>count</code> parameter is limited to 10 tasks per call.</p> </important>",
25
- "StartTask": "<p>Starts a new task from the specified task definition on the specified container instance or instances. If you want to use the default Amazon ECS scheduler to place your task, use <code>RunTask</code> instead.</p> <important> <p>The list of container instances to start tasks on is limited to 10.</p> </important>",
26
- "StopTask": "<p>Stops a running task.</p>",
27
- "SubmitContainerStateChange": "<note><p>This action is only used by the Amazon EC2 Container Service agent, and it is not intended for use outside of the agent.</p></note> <p>Sent to acknowledge that a container changed states.</p>",
28
- "SubmitTaskStateChange": "<note><p>This action is only used by the Amazon EC2 Container Service agent, and it is not intended for use outside of the agent.</p></note> <p>Sent to acknowledge that a task changed states.</p>",
29
- "UpdateService": "<p>Modify the desired count or task definition used in a service.</p> <p>You can add to or subtract from the number of instantiations of a task definition in a service by specifying the cluster that the service is running in and a new <code>desiredCount</code> parameter.</p> <p>You can use <code>UpdateService</code> to modify your task definition and deploy a new version of your service, one task at a time. If you modify the task definition with <code>UpdateService</code>, Amazon ECS spawns a task with the new version of the task definition and then stops an old task after the new version is running. Because <code>UpdateService</code> starts a new version of the task before stopping an old version, your cluster must have capacity to support one more instantiation of the task when <code>UpdateService</code> is run. If your cluster cannot support another instantiation of the task used in your service, you can reduce the desired count of your service by one before modifying the task definition.</p>"
30
- },
31
- "service": "<p></p> <p>Amazon EC2 Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster of Amazon EC2 instances. Amazon ECS lets you launch and stop container-enabled applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features like security groups, Amazon EBS volumes, and IAM roles.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. Amazon EC2 Container Service eliminates the need for you to operate your own cluster management and configuration management systems or worry about scaling your management infrastructure.</p>",
32
- "shapes": {
33
- "Boolean": {
34
- "base": null,
35
- "refs": {
36
- "ContainerInstance$agentConnected": "<p>This parameter returns <code>true</code> if the agent is actually connected to Amazon ECS. Registered instances with an agent that may be unhealthy or stopped will return <code>false</code>, and instances without a connected agent cannot accept placement request.</p>"
37
- }
38
- },
39
- "BoxedBoolean": {
40
- "base": null,
41
- "refs": {
42
- "ContainerDefinition$essential": "<p>If the <code>essential</code> parameter of a container is marked as <code>true</code>, the failure of that container will stop the task. If the <code>essential</code> parameter of a container is marked as <code>false</code>, then its failure will not affect the rest of the containers in a task.</p>",
43
- "DeregisterContainerInstanceRequest$force": "<p>Force the deregistration of the container instance. You can use the <code>force</code> parameter if you have several tasks running on a container instance and you don't want to run <code>StopTask</code> for each task before deregistering the container instance.</p>",
44
- "MountPoint$readOnly": "<p>If this value is <code>true</code>, the container has read-only access to the volume. If this value is <code>false</code>, then the container can write to the volume. The default value is <code>false</code>.</p>",
45
- "VolumeFrom$readOnly": "<p>If this value is <code>true</code>, the container has read-only access to the volume. If this value is <code>false</code>, then the container can write to the volume. The default value is <code>false</code>.</p>"
46
- }
47
- },
48
- "BoxedInteger": {
49
- "base": null,
50
- "refs": {
51
- "Container$exitCode": "<p>The exit code returned from the container.</p>",
52
- "CreateServiceRequest$desiredCount": "<p>The number of instantiations of the specified task definition that you would like to place and keep running on your cluster.</p>",
53
- "ListClustersRequest$maxResults": "<p>The maximum number of cluster results returned by <code>ListClusters</code> in paginated output. When this parameter is used, <code>ListClusters</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListClusters</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListClusters</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
54
- "ListContainerInstancesRequest$maxResults": "<p>The maximum number of container instance results returned by <code>ListContainerInstances</code> in paginated output. When this parameter is used, <code>ListContainerInstances</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListContainerInstances</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListContainerInstances</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
55
- "ListServicesRequest$maxResults": "<p>The maximum number of container instance results returned by <code>ListServices</code> in paginated output. When this parameter is used, <code>ListServices</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListServices</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListServices</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
56
- "ListTaskDefinitionFamiliesRequest$maxResults": "<p>The maximum number of task definition family results returned by <code>ListTaskDefinitionFamilies</code> in paginated output. When this parameter is used, <code>ListTaskDefinitions</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListTaskDefinitionFamilies</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListTaskDefinitionFamilies</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
57
- "ListTaskDefinitionsRequest$maxResults": "<p>The maximum number of task definition results returned by <code>ListTaskDefinitions</code> in paginated output. When this parameter is used, <code>ListTaskDefinitions</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListTaskDefinitions</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListTaskDefinitions</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
58
- "ListTasksRequest$maxResults": "<p>The maximum number of task results returned by <code>ListTasks</code> in paginated output. When this parameter is used, <code>ListTasks</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListTasks</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListTasks</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>",
59
- "LoadBalancer$containerPort": "<p>The port on the container to associate with the load balancer.</p>",
60
- "NetworkBinding$containerPort": "<p>The port number on the container that is be used with the network binding.</p>",
61
- "NetworkBinding$hostPort": "<p>The port number on the host that is used with the network binding.</p>",
62
- "RunTaskRequest$count": "<p>The number of instantiations of the specified task that you would like to place on your cluster.</p> <important> <p>The <code>count</code> parameter is limited to 10 tasks per call.</p> </important>",
63
- "SubmitContainerStateChangeRequest$exitCode": "<p>The exit code returned for the state change request.</p>",
64
- "UpdateServiceRequest$desiredCount": "<p>The number of instantiations of the task that you would like to place and keep running in your service.</p>"
65
- }
66
- },
67
- "ClientException": {
68
- "base": "<p>These errors are usually caused by something the client did, such as use an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specify an identifier that is not valid.</p>",
69
- "refs": {
70
- }
71
- },
72
- "Cluster": {
73
- "base": "<p>A regional grouping of one or more container instances on which you can run task requests. Each account receives a default cluster the first time you use the Amazon ECS service, but you may also create other clusters. Clusters may contain more than one instance type simultaneously.</p> <important> <p>During the preview, each account is limited to two clusters.</p> </important>",
74
- "refs": {
75
- "Clusters$member": null,
76
- "CreateClusterResponse$cluster": "<p>The full description of your new cluster.</p>",
77
- "DeleteClusterResponse$cluster": "<p>The full description of the deleted cluster.</p>"
78
- }
79
- },
80
- "Clusters": {
81
- "base": null,
82
- "refs": {
83
- "DescribeClustersResponse$clusters": "<p>The list of clusters.</p>"
84
- }
85
- },
86
- "Container": {
87
- "base": null,
88
- "refs": {
89
- "Containers$member": null
90
- }
91
- },
92
- "ContainerDefinition": {
93
- "base": "<p>Container definitions are used in task definitions to describe the different containers that are launched as part of a task.</p>",
94
- "refs": {
95
- "ContainerDefinitions$member": null
96
- }
97
- },
98
- "ContainerDefinitions": {
99
- "base": null,
100
- "refs": {
101
- "RegisterTaskDefinitionRequest$containerDefinitions": "<p>A list of container definitions in JSON format that describe the different containers that make up your task.</p>",
102
- "TaskDefinition$containerDefinitions": "<p>A list of container definitions in JSON format that describe the different containers that make up your task. For more information on container definition parameters and defaults, see <a href=\"http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html\">Amazon ECS Task Definitions</a> in the <i>Amazon EC2 Container Service Developer Guide</i>.</p>"
103
- }
104
- },
105
- "ContainerInstance": {
106
- "base": "<p>An Amazon EC2 instance that is running the Amazon ECS agent and has been registered with a cluster.</p>",
107
- "refs": {
108
- "ContainerInstances$member": null,
109
- "DeregisterContainerInstanceResponse$containerInstance": null,
110
- "RegisterContainerInstanceResponse$containerInstance": null
111
- }
112
- },
113
- "ContainerInstances": {
114
- "base": null,
115
- "refs": {
116
- "DescribeContainerInstancesResponse$containerInstances": "<p>The list of container instances.</p>"
117
- }
118
- },
119
- "ContainerOverride": {
120
- "base": "<p>The name of a container in a task definition and the command it should run instead of its default.</p>",
121
- "refs": {
122
- "ContainerOverrides$member": null
123
- }
124
- },
125
- "ContainerOverrides": {
126
- "base": null,
127
- "refs": {
128
- "TaskOverride$containerOverrides": "<p>One or more container overrides sent to a task.</p>"
129
- }
130
- },
131
- "Containers": {
132
- "base": null,
133
- "refs": {
134
- "Task$containers": "<p>The containers associated with the task.</p>"
135
- }
136
- },
137
- "CreateClusterRequest": {
138
- "base": null,
139
- "refs": {
140
- }
141
- },
142
- "CreateClusterResponse": {
143
- "base": null,
144
- "refs": {
145
- }
146
- },
147
- "CreateServiceRequest": {
148
- "base": null,
149
- "refs": {
150
- }
151
- },
152
- "CreateServiceResponse": {
153
- "base": null,
154
- "refs": {
155
- }
156
- },
157
- "DeleteClusterRequest": {
158
- "base": null,
159
- "refs": {
160
- }
161
- },
162
- "DeleteClusterResponse": {
163
- "base": null,
164
- "refs": {
165
- }
166
- },
167
- "DeleteServiceRequest": {
168
- "base": null,
169
- "refs": {
170
- }
171
- },
172
- "DeleteServiceResponse": {
173
- "base": null,
174
- "refs": {
175
- }
176
- },
177
- "Deployment": {
178
- "base": null,
179
- "refs": {
180
- "Deployments$member": null
181
- }
182
- },
183
- "Deployments": {
184
- "base": null,
185
- "refs": {
186
- "Service$deployments": "<p>The current state of deployments for the service.</p>"
187
- }
188
- },
189
- "DeregisterContainerInstanceRequest": {
190
- "base": null,
191
- "refs": {
192
- }
193
- },
194
- "DeregisterContainerInstanceResponse": {
195
- "base": null,
196
- "refs": {
197
- }
198
- },
199
- "DeregisterTaskDefinitionRequest": {
200
- "base": null,
201
- "refs": {
202
- }
203
- },
204
- "DeregisterTaskDefinitionResponse": {
205
- "base": null,
206
- "refs": {
207
- }
208
- },
209
- "DescribeClustersRequest": {
210
- "base": null,
211
- "refs": {
212
- }
213
- },
214
- "DescribeClustersResponse": {
215
- "base": null,
216
- "refs": {
217
- }
218
- },
219
- "DescribeContainerInstancesRequest": {
220
- "base": null,
221
- "refs": {
222
- }
223
- },
224
- "DescribeContainerInstancesResponse": {
225
- "base": null,
226
- "refs": {
227
- }
228
- },
229
- "DescribeServicesRequest": {
230
- "base": null,
231
- "refs": {
232
- }
233
- },
234
- "DescribeServicesResponse": {
235
- "base": null,
236
- "refs": {
237
- }
238
- },
239
- "DescribeTaskDefinitionRequest": {
240
- "base": null,
241
- "refs": {
242
- }
243
- },
244
- "DescribeTaskDefinitionResponse": {
245
- "base": null,
246
- "refs": {
247
- }
248
- },
249
- "DescribeTasksRequest": {
250
- "base": null,
251
- "refs": {
252
- }
253
- },
254
- "DescribeTasksResponse": {
255
- "base": null,
256
- "refs": {
257
- }
258
- },
259
- "DiscoverPollEndpointRequest": {
260
- "base": null,
261
- "refs": {
262
- }
263
- },
264
- "DiscoverPollEndpointResponse": {
265
- "base": null,
266
- "refs": {
267
- }
268
- },
269
- "Double": {
270
- "base": null,
271
- "refs": {
272
- "Resource$doubleValue": "<p>When the <code>doubleValue</code> type is set, the value of the resource must be a double precision floating-point type.</p>"
273
- }
274
- },
275
- "EnvironmentVariables": {
276
- "base": null,
277
- "refs": {
278
- "ContainerDefinition$environment": "<p>The environment variables to pass to a container.</p>"
279
- }
280
- },
281
- "Failure": {
282
- "base": null,
283
- "refs": {
284
- "Failures$member": null
285
- }
286
- },
287
- "Failures": {
288
- "base": null,
289
- "refs": {
290
- "DescribeClustersResponse$failures": null,
291
- "DescribeContainerInstancesResponse$failures": null,
292
- "DescribeServicesResponse$failures": "<p>Any failures associated with the call.</p>",
293
- "DescribeTasksResponse$failures": null,
294
- "RunTaskResponse$failures": "<p>Any failed tasks from your <code>RunTask</code> action are listed here.</p>",
295
- "StartTaskResponse$failures": "<p>Any failed tasks from your <code>StartTask</code> action are listed here.</p>"
296
- }
297
- },
298
- "HostVolumeProperties": {
299
- "base": null,
300
- "refs": {
301
- "Volume$host": "<p>The path on the host container instance that is presented to the containers which access the volume. If this parameter is empty, then the Docker daemon assigns a host path for you.</p>"
302
- }
303
- },
304
- "Integer": {
305
- "base": null,
306
- "refs": {
307
- "Cluster$registeredContainerInstancesCount": "<p>The number of container instances registered into the cluster.</p>",
308
- "Cluster$runningTasksCount": "<p>The number of tasks in the cluster that are in the <code>RUNNING</code> state.</p>",
309
- "Cluster$pendingTasksCount": "<p>The number of tasks in the cluster that are in the <code>PENDING</code> state.</p>",
310
- "ContainerDefinition$cpu": "<p>The number of <code>cpu</code> units reserved for the container. A container instance has 1,024 <code>cpu</code> units for every CPU core.</p>",
311
- "ContainerDefinition$memory": "<p>The number of MiB of memory reserved for the container. Docker will allocate a minimum of 4 MiB of memory to a container.</p>",
312
- "ContainerInstance$runningTasksCount": "<p>The number of tasks on the container instance that are in the <code>RUNNING</code> status.</p>",
313
- "ContainerInstance$pendingTasksCount": "<p>The number of tasks on the container instance that are in the <code>PENDING</code> status.</p>",
314
- "Deployment$desiredCount": "<p>The most recent desired count of tasks that was specified for the service to deploy and/or maintain.</p>",
315
- "Deployment$pendingCount": "<p>The number of tasks in the deployment that are in the <code>PENDING</code> status.</p>",
316
- "Deployment$runningCount": "<p>The number of tasks in the deployment that are in the <code>RUNNING</code> status.</p>",
317
- "PortMapping$containerPort": "<p>The port number on the container that is bound to the user-specified or automatically assigned host port. If you specify a container port and not a host port, your container will automatically receive a host port in the 49153 to 65535 port range.</p>",
318
- "PortMapping$hostPort": "<p>The port number on the container instance to reserve for your container. You can specify a non-reserved host port for your container port mapping, or you can omit the <code>hostPort</code> while specifying a <code>containerPort</code> and your container will automatically receive a port in the 49153 to 65535 port range. You should not attempt to specify a host port in the 49153 to 65535 port range, since these are reserved for automatic assignment.</p> <p>The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS Container Agent port 51678. Any host port that was previously specified in a running task is also reserved while the task is running (once a task stops, the host port is released).The current reserved ports are displayed in the <code>remainingResources</code> of <a>DescribeContainerInstances</a> output, and a container instance may have up to 50 reserved ports at a time, including the default reserved ports (automatically assigned ports do not count toward this limit).</p>",
319
- "Resource$integerValue": "<p>When the <code>integerValue</code> type is set, the value of the resource must be an integer.</p>",
320
- "Service$desiredCount": "<p>The desired number of instantiations of the task definition to keep running on the service. This value is specified when the service is created with <a>CreateService</a>, and it can be modified with <a>UpdateService</a>.</p>",
321
- "Service$runningCount": "<p>The number of tasks in the cluster that are in the <code>RUNNING</code> state.</p>",
322
- "Service$pendingCount": "<p>The number of tasks in the cluster that are in the <code>PENDING</code> state.</p>",
323
- "TaskDefinition$revision": "<p>The revision of the task in a particular family. You can think of the revision as a version number of a task definition in a family. When you register a task definition for the first time, the revision is <code>1</code>, and each time you register a task definition in the same family, the revision value increases by one.</p>"
324
- }
325
- },
326
- "KeyValuePair": {
327
- "base": null,
328
- "refs": {
329
- "EnvironmentVariables$member": null
330
- }
331
- },
332
- "ListClustersRequest": {
333
- "base": null,
334
- "refs": {
335
- }
336
- },
337
- "ListClustersResponse": {
338
- "base": null,
339
- "refs": {
340
- }
341
- },
342
- "ListContainerInstancesRequest": {
343
- "base": null,
344
- "refs": {
345
- }
346
- },
347
- "ListContainerInstancesResponse": {
348
- "base": null,
349
- "refs": {
350
- }
351
- },
352
- "ListServicesRequest": {
353
- "base": null,
354
- "refs": {
355
- }
356
- },
357
- "ListServicesResponse": {
358
- "base": null,
359
- "refs": {
360
- }
361
- },
362
- "ListTaskDefinitionFamiliesRequest": {
363
- "base": null,
364
- "refs": {
365
- }
366
- },
367
- "ListTaskDefinitionFamiliesResponse": {
368
- "base": null,
369
- "refs": {
370
- }
371
- },
372
- "ListTaskDefinitionsRequest": {
373
- "base": null,
374
- "refs": {
375
- }
376
- },
377
- "ListTaskDefinitionsResponse": {
378
- "base": null,
379
- "refs": {
380
- }
381
- },
382
- "ListTasksRequest": {
383
- "base": null,
384
- "refs": {
385
- }
386
- },
387
- "ListTasksResponse": {
388
- "base": null,
389
- "refs": {
390
- }
391
- },
392
- "LoadBalancer": {
393
- "base": null,
394
- "refs": {
395
- "LoadBalancers$member": null
396
- }
397
- },
398
- "LoadBalancers": {
399
- "base": null,
400
- "refs": {
401
- "CreateServiceRequest$loadBalancers": "<p>A list of load balancer objects, containing the load balancer name, the container name (as it appears in a container definition), and the container port to access from the load balancer.</p>",
402
- "Service$loadBalancers": "<p>A list of load balancer objects, containing the load balancer name, the container name (as it appears in a container definition), and the container port to access from the load balancer.</p>"
403
- }
404
- },
405
- "Long": {
406
- "base": null,
407
- "refs": {
408
- "Resource$longValue": "<p>When the <code>longValue</code> type is set, the value of the resource must be an extended precision floating-point type.</p>"
409
- }
410
- },
411
- "MountPoint": {
412
- "base": null,
413
- "refs": {
414
- "MountPointList$member": null
415
- }
416
- },
417
- "MountPointList": {
418
- "base": null,
419
- "refs": {
420
- "ContainerDefinition$mountPoints": "<p>The mount points for data volumes in your container.</p>"
421
- }
422
- },
423
- "NetworkBinding": {
424
- "base": null,
425
- "refs": {
426
- "NetworkBindings$member": null
427
- }
428
- },
429
- "NetworkBindings": {
430
- "base": null,
431
- "refs": {
432
- "Container$networkBindings": null,
433
- "SubmitContainerStateChangeRequest$networkBindings": "<p>The network bindings of the container.</p>"
434
- }
435
- },
436
- "PortMapping": {
437
- "base": "<p>Port mappings allow containers to access ports on the host container instance to send or receive traffic. Port mappings are specified as part of the container definition.</p>",
438
- "refs": {
439
- "PortMappingList$member": null
440
- }
441
- },
442
- "PortMappingList": {
443
- "base": null,
444
- "refs": {
445
- "ContainerDefinition$portMappings": "<p>The list of port mappings for the container.</p>"
446
- }
447
- },
448
- "RegisterContainerInstanceRequest": {
449
- "base": null,
450
- "refs": {
451
- }
452
- },
453
- "RegisterContainerInstanceResponse": {
454
- "base": null,
455
- "refs": {
456
- }
457
- },
458
- "RegisterTaskDefinitionRequest": {
459
- "base": null,
460
- "refs": {
461
- }
462
- },
463
- "RegisterTaskDefinitionResponse": {
464
- "base": null,
465
- "refs": {
466
- }
467
- },
468
- "Resource": {
469
- "base": "<p>Describes the resources available for a container instance.</p>",
470
- "refs": {
471
- "Resources$member": null
472
- }
473
- },
474
- "Resources": {
475
- "base": null,
476
- "refs": {
477
- "ContainerInstance$remainingResources": "<p>The remaining resources of the container instance that are available for new tasks.</p>",
478
- "ContainerInstance$registeredResources": "<p>The registered resources on the container instance that are in use by current tasks.</p>",
479
- "RegisterContainerInstanceRequest$totalResources": null
480
- }
481
- },
482
- "RunTaskRequest": {
483
- "base": null,
484
- "refs": {
485
- }
486
- },
487
- "RunTaskResponse": {
488
- "base": null,
489
- "refs": {
490
- }
491
- },
492
- "ServerException": {
493
- "base": "<p>These errors are usually caused by a server-side issue.</p>",
494
- "refs": {
495
- }
496
- },
497
- "Service": {
498
- "base": null,
499
- "refs": {
500
- "CreateServiceResponse$service": "<p>The full description of your service following the create call.</p>",
501
- "DeleteServiceResponse$service": null,
502
- "Services$member": null,
503
- "UpdateServiceResponse$service": "<p>The full description of your service following the update call.</p>"
504
- }
505
- },
506
- "ServiceEvent": {
507
- "base": null,
508
- "refs": {
509
- "ServiceEvents$member": null
510
- }
511
- },
512
- "ServiceEvents": {
513
- "base": null,
514
- "refs": {
515
- "Service$events": "<p>The event stream for your service. A maximum of 100 of the latest events are displayed.</p>"
516
- }
517
- },
518
- "Services": {
519
- "base": null,
520
- "refs": {
521
- "DescribeServicesResponse$services": "<p>The list of services described.</p>"
522
- }
523
- },
524
- "StartTaskRequest": {
525
- "base": null,
526
- "refs": {
527
- }
528
- },
529
- "StartTaskResponse": {
530
- "base": null,
531
- "refs": {
532
- }
533
- },
534
- "StopTaskRequest": {
535
- "base": null,
536
- "refs": {
537
- }
538
- },
539
- "StopTaskResponse": {
540
- "base": null,
541
- "refs": {
542
- }
543
- },
544
- "String": {
545
- "base": null,
546
- "refs": {
547
- "ClientException$message": null,
548
- "Cluster$clusterArn": "<p>The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the <code>arn:aws:ecs</code> namespace, followed by the region of the cluster, the AWS account ID of the cluster owner, the <code>cluster</code> namespace, and then the cluster name. For example, arn:aws:ecs:<i>region</i>:<i>012345678910</i>:cluster/<i>test</i>.</p>",
549
- "Cluster$clusterName": "<p>A user-generated string that you can use to identify your cluster.</p>",
550
- "Cluster$status": "<p>The status of the cluster. The valid values are <code>ACTIVE</code> or <code>INACTIVE</code>. <code>ACTIVE</code> indicates that you can register container instances with the cluster and the associated instances can accept tasks.</p>",
551
- "Container$containerArn": "<p>The Amazon Resource Name (ARN) of the container.</p>",
552
- "Container$taskArn": "<p>The Amazon Resource Name (ARN) of the task.</p>",
553
- "Container$name": "<p>The name of the container.</p>",
554
- "Container$lastStatus": "<p>The last known status of the container.</p>",
555
- "Container$reason": "<p>A short (255 max characters) human-readable string to provide additional detail about a running or stopped container.</p>",
556
- "ContainerDefinition$name": "<p>The name of a container. If you are linking multiple containers together in a task definition, the <code>name</code> of one container can be entered in the <code>links</code> of another container to connect the containers.</p>",
557
- "ContainerDefinition$image": "<p>The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with <code><i>repository-url</i>/<i>image</i>:<i>tag</i></code>.</p>",
558
- "ContainerInstance$containerInstanceArn": "<p>The Amazon Resource Name (ARN) of the container instance. The ARN contains the <code>arn:aws:ecs</code> namespace, followed by the region of the container instance, the AWS account ID of the container instance owner, the <code>container-instance</code> namespace, and then the container instance UUID. For example, arn:aws:ecs:<i>region</i>:<i>aws_account_id</i>:container-instance/<i>container_instance_UUID</i>.</p>",
559
- "ContainerInstance$ec2InstanceId": "<p>The Amazon EC2 instance ID of the container instance.</p>",
560
- "ContainerInstance$status": "<p>The status of the container instance. The valid values are <code>ACTIVE</code> or <code>INACTIVE</code>. <code>ACTIVE</code> indicates that the container instance can accept tasks.</p>",
561
- "ContainerOverride$name": "<p>The name of the container that receives the override.</p>",
562
- "CreateClusterRequest$clusterName": "<p>The name of your cluster. If you do not specify a name for your cluster, you will create a cluster named <code>default</code>. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.</p>",
563
- "CreateServiceRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that you want to run your service on. If you do not specify a cluster, the default cluster is assumed.</p>",
564
- "CreateServiceRequest$serviceName": "<p>The name of your service. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.</p>",
565
- "CreateServiceRequest$taskDefinition": "<p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or full Amazon Resource Name (ARN) of the task definition that you want to run in your service.</p>",
566
- "CreateServiceRequest$clientToken": "<p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request. Up to 64 ASCII characters are allowed.</p>",
567
- "CreateServiceRequest$role": "<p>The name or full Amazon Resource Name (ARN) of the IAM role that allows your Amazon ECS container agent to make calls to your load balancer on your behalf. This parameter is only required if you are using a load balancer with your service.</p>",
568
- "DeleteClusterRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that you want to delete.</p>",
569
- "DeleteServiceRequest$cluster": "<p>The name of the cluster that hosts the service you want to delete.</p>",
570
- "DeleteServiceRequest$service": "<p>The name of the service you want to delete.</p>",
571
- "Deployment$id": "<p>The ID of the deployment.</p>",
572
- "Deployment$status": "<p>The status of the deployment. Valid values are <code>PRIMARY</code> (for the most recent deployment), <code>ACTIVE</code> (for previous deployments that still have tasks running, but are being replaced with the <code>PRIMARY</code> deployment), and <code>INACTIVE</code> (for deployments that have been completely replaced).</p>",
573
- "Deployment$taskDefinition": "<p>The most recent task definition that was specified for the service to use.</p>",
574
- "DeregisterContainerInstanceRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance you want to deregister. If you do not specify a cluster, the default cluster is assumed.</p>",
575
- "DeregisterContainerInstanceRequest$containerInstance": "<p>The container instance UUID or full Amazon Resource Name (ARN) of the container instance you want to deregister. The ARN contains the <code>arn:aws:ecs</code> namespace, followed by the region of the container instance, the AWS account ID of the container instance owner, the <code>container-instance</code> namespace, and then the container instance UUID. For example, arn:aws:ecs:<i>region</i>:<i>aws_account_id</i>:container-instance/<i>container_instance_UUID</i>.</p>",
576
- "DeregisterTaskDefinitionRequest$taskDefinition": "<p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or full Amazon Resource Name (ARN) of the task definition that you want to deregister.</p>",
577
- "DescribeContainerInstancesRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances you want to describe. If you do not specify a cluster, the default cluster is assumed.</p>",
578
- "DescribeServicesRequest$cluster": "<p>The name of the cluster that hosts the service you want to describe.</p>",
579
- "DescribeTaskDefinitionRequest$taskDefinition": "<p>The <code>family</code> for the latest revision, <code>family</code> and <code>revision</code> (<code>family:revision</code>) for a specific revision in the family, or full Amazon Resource Name (ARN) of the task definition that you want to describe.</p>",
580
- "DescribeTasksRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task you want to describe. If you do not specify a cluster, the default cluster is assumed.</p>",
581
- "DiscoverPollEndpointRequest$containerInstance": "<p>The container instance UUID or full Amazon Resource Name (ARN) of the container instance. The ARN contains the <code>arn:aws:ecs</code> namespace, followed by the region of the container instance, the AWS account ID of the container instance owner, the <code>container-instance</code> namespace, and then the container instance UUID. For example, arn:aws:ecs:<i>region</i>:<i>aws_account_id</i>:container-instance/<i>container_instance_UUID</i>.</p>",
582
- "DiscoverPollEndpointRequest$cluster": "<p>The cluster that the container instance belongs to.</p>",
583
- "DiscoverPollEndpointResponse$endpoint": "<p>The endpoint for the Amazon ECS agent to poll.</p>",
584
- "Failure$arn": "<p>The Amazon Resource Name (ARN) of the failed resource.</p>",
585
- "Failure$reason": "<p>The reason for the failure.</p>",
586
- "HostVolumeProperties$sourcePath": "<p>The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you.</p>",
587
- "KeyValuePair$name": "<p>The name of the key value pair.</p>",
588
- "KeyValuePair$value": "<p>The value of the key value pair.</p>",
589
- "ListClustersRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListClusters</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
590
- "ListClustersResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListClusters</code> request. When the results of a <code>ListClusters</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
591
- "ListContainerInstancesRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances you want to list. If you do not specify a cluster, the default cluster is assumed..</p>",
592
- "ListContainerInstancesRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListContainerInstances</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
593
- "ListContainerInstancesResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListContainerInstances</code> request. When the results of a <code>ListContainerInstances</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
594
- "ListServicesRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the services you want to list. If you do not specify a cluster, the default cluster is assumed..</p>",
595
- "ListServicesRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListServices</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
596
- "ListServicesResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListServices</code> request. When the results of a <code>ListServices</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
597
- "ListTaskDefinitionFamiliesRequest$familyPrefix": "<p>The <code>familyPrefix</code> is a string that is used to filter the results of <code>ListTaskDefinitionFamilies</code>. If you specify a <code>familyPrefix</code>, only task definition family names that begin with the <code>familyPrefix</code> string are returned.</p>",
598
- "ListTaskDefinitionFamiliesRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListTaskDefinitionFamilies</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
599
- "ListTaskDefinitionFamiliesResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListTaskDefinitionFamilies</code> request. When the results of a <code>ListTaskDefinitionFamilies</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
600
- "ListTaskDefinitionsRequest$familyPrefix": "<p>The full family name that you want to filter the <code>ListTaskDefinitions</code> results with. Specifying a <code>familyPrefix</code> will limit the listed task definitions to task definition revisions that belong to that family.</p>",
601
- "ListTaskDefinitionsRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListTaskDefinitions</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
602
- "ListTaskDefinitionsResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListTaskDefinitions</code> request. When the results of a <code>ListTaskDefinitions</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
603
- "ListTasksRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the tasks you want to list. If you do not specify a cluster, the default cluster is assumed..</p>",
604
- "ListTasksRequest$containerInstance": "<p>The container instance UUID or full Amazon Resource Name (ARN) of the container instance that you want to filter the <code>ListTasks</code> results with. Specifying a <code>containerInstance</code> will limit the results to tasks that belong to that container instance.</p>",
605
- "ListTasksRequest$family": "<p>The name of the family that you want to filter the <code>ListTasks</code> results with. Specifying a <code>family</code> will limit the results to tasks that belong to that family.</p>",
606
- "ListTasksRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListTasks</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>",
607
- "ListTasksRequest$startedBy": null,
608
- "ListTasksRequest$serviceName": "<p>The name of the service that you want to filter the <code>ListTasks</code> results with. Specifying a <code>serviceName</code> will limit the results to tasks that belong to that service.</p>",
609
- "ListTasksResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListTasks</code> request. When the results of a <code>ListTasks</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
610
- "LoadBalancer$loadBalancerName": "<p>The name of the load balancer.</p>",
611
- "LoadBalancer$containerName": "<p>The name of the container to associate with the load balancer.</p>",
612
- "MountPoint$sourceVolume": "<p>The name of the volume to mount.</p>",
613
- "MountPoint$containerPath": "<p>The path on the container to mount the host volume at.</p>",
614
- "NetworkBinding$bindIP": "<p>The IP address that the container is bound to on the container instance.</p>",
615
- "RegisterContainerInstanceRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that you want to register your container instance with. If you do not specify a cluster, the default cluster is assumed..</p>",
616
- "RegisterContainerInstanceRequest$instanceIdentityDocument": null,
617
- "RegisterContainerInstanceRequest$instanceIdentityDocumentSignature": null,
618
- "RegisterTaskDefinitionRequest$family": "<p>You must specify a <code>family</code> for a task definition, which allows you to track multiple versions of the same task definition. You can think of the <code>family</code> as a name for your task definition. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.</p>",
619
- "Resource$name": "<p>The name of the resource, such as <code>CPU</code>, <code>MEMORY</code>, <code>PORTS</code>, or a user-defined resource.</p>",
620
- "Resource$type": "<p>The type of the resource, such as <code>INTEGER</code>, <code>DOUBLE</code>, <code>LONG</code>, or <code>STRINGSET</code>.</p>",
621
- "RunTaskRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that you want to run your task on. If you do not specify a cluster, the default cluster is assumed..</p>",
622
- "RunTaskRequest$taskDefinition": "<p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or full Amazon Resource Name (ARN) of the task definition that you want to run.</p>",
623
- "RunTaskRequest$startedBy": null,
624
- "ServerException$message": null,
625
- "Service$serviceArn": "<p>The Amazon Resource Name (ARN) that identifies the service. The ARN contains the <code>arn:aws:ecs</code> namespace, followed by the region of the service, the AWS account ID of the service owner, the <code>service</code> namespace, and then the service name. For example, arn:aws:ecs:<i>region</i>:<i>012345678910</i>:service/<i>my-service</i>.</p>",
626
- "Service$serviceName": "<p>A user-generated string that you can use to identify your service.</p>",
627
- "Service$clusterArn": "<p>The Amazon Resource Name (ARN) of the of the cluster that hosts the service.</p>",
628
- "Service$status": "<p>The status of the service. The valid values are <code>ACTIVE</code>, <code>DRAINING</code>, or <code>INACTIVE</code>.</p>",
629
- "Service$taskDefinition": "<p>The task definition to use for tasks in the service. This value is specified when the service is created with <a>CreateService</a>, and it can be modified with <a>UpdateService</a>.</p>",
630
- "Service$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role associated with the service that allows the Amazon ECS container agent to register container instances with a load balancer. </p>",
631
- "ServiceEvent$id": "<p>The ID string of the event.</p>",
632
- "ServiceEvent$message": "<p>The event message.</p>",
633
- "StartTaskRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that you want to start your task on. If you do not specify a cluster, the default cluster is assumed..</p>",
634
- "StartTaskRequest$taskDefinition": "<p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or full Amazon Resource Name (ARN) of the task definition that you want to start.</p>",
635
- "StartTaskRequest$startedBy": null,
636
- "StopTaskRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task you want to stop. If you do not specify a cluster, the default cluster is assumed..</p>",
637
- "StopTaskRequest$task": "<p>The task UUIDs or full Amazon Resource Name (ARN) entry of the task you would like to stop.</p>",
638
- "StringList$member": null,
639
- "SubmitContainerStateChangeRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container.</p>",
640
- "SubmitContainerStateChangeRequest$task": "<p>The task UUID or full Amazon Resource Name (ARN) of the task that hosts the container.</p>",
641
- "SubmitContainerStateChangeRequest$containerName": "<p>The name of the container.</p>",
642
- "SubmitContainerStateChangeRequest$status": "<p>The status of the state change request.</p>",
643
- "SubmitContainerStateChangeRequest$reason": "<p>The reason for the state change request.</p>",
644
- "SubmitContainerStateChangeResponse$acknowledgment": "<p>Acknowledgement of the state change.</p>",
645
- "SubmitTaskStateChangeRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.</p>",
646
- "SubmitTaskStateChangeRequest$task": "<p>The task UUID or full Amazon Resource Name (ARN) of the task in the state change request.</p>",
647
- "SubmitTaskStateChangeRequest$status": "<p>The status of the state change request.</p>",
648
- "SubmitTaskStateChangeRequest$reason": "<p>The reason for the state change request.</p>",
649
- "SubmitTaskStateChangeResponse$acknowledgment": "<p>Acknowledgement of the state change.</p>",
650
- "Task$taskArn": "<p>The Amazon Resource Name (ARN) of the task.</p>",
651
- "Task$clusterArn": "<p>The Amazon Resource Name (ARN) of the of the cluster that hosts the task.</p>",
652
- "Task$taskDefinitionArn": "<p>The Amazon Resource Name (ARN) of the of the task definition that creates the task.</p>",
653
- "Task$containerInstanceArn": "<p>The Amazon Resource Name (ARN) of the container instances that host the task.</p>",
654
- "Task$lastStatus": "<p>The last known status of the task.</p>",
655
- "Task$desiredStatus": "<p>The desired status of the task.</p>",
656
- "Task$startedBy": null,
657
- "TaskDefinition$taskDefinitionArn": "<p>The full Amazon Resource Name (ARN) of the of the task definition.</p>",
658
- "TaskDefinition$family": "<p>The family of your task definition. You can think of the <code>family</code> as the name of your task definition.</p>",
659
- "UpdateServiceRequest$cluster": "<p>The short name or full Amazon Resource Name (ARN) of the cluster that your service is running on. If you do not specify a cluster, the default cluster is assumed.</p>",
660
- "UpdateServiceRequest$service": "<p>The name of the service that you want to update.</p>",
661
- "UpdateServiceRequest$taskDefinition": "<p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or full Amazon Resource Name (ARN) of the task definition that you want to run in your service. If you modify the task definition with <code>UpdateService</code>, Amazon ECS spawns a task with the new version of the task definition and then stops an old task after the new version is running.</p>",
662
- "VersionInfo$agentVersion": null,
663
- "VersionInfo$agentHash": null,
664
- "VersionInfo$dockerVersion": null,
665
- "Volume$name": "<p>The name of the volume. This name is referenced in the <code>sourceVolume</code> parameter of container definition <code>mountPoints</code>.</p>",
666
- "VolumeFrom$sourceContainer": "<p>The name of the container to mount volumes from.</p>"
667
- }
668
- },
669
- "StringList": {
670
- "base": null,
671
- "refs": {
672
- "ContainerDefinition$links": "<p>The <code>link</code> parameter allows containers to communicate with each other without the need for port mappings, using the <code>name</code> parameter. For more information on linking Docker containers, see <a href=\"https://docs.docker.com/userguide/dockerlinks/\">https://docs.docker.com/userguide/dockerlinks/</a>.</p>",
673
- "ContainerDefinition$entryPoint": "<important> <p>Early versions of the Amazon ECS container agent do not properly handle <code>entryPoint</code> parameters. If you have problems using <code>entryPoint</code>, update your container agent or enter your commands and arguments as <code>command</code> array items instead.</p> </important> <p>The <code>ENTRYPOINT</code> that is passed to the container. For more information on the Docker <code>ENTRYPOINT</code> parameter, see <a href=\"https://docs.docker.com/reference/builder/#entrypoint\">https://docs.docker.com/reference/builder/#entrypoint</a>.</p>",
674
- "ContainerDefinition$command": "<p>The <code>CMD</code> that is passed to the container. For more information on the Docker <code>CMD</code> parameter, see <a href=\"https://docs.docker.com/reference/builder/#cmd\">https://docs.docker.com/reference/builder/#cmd</a>.</p>",
675
- "ContainerOverride$command": "<p>The command to send to the container that overrides the default command from the Docker image or the task definition.</p>",
676
- "DescribeClustersRequest$clusters": "<p>A space-separated list of cluster names or full cluster Amazon Resource Name (ARN) entries. If you do not specify a cluster, the default cluster is assumed.</p>",
677
- "DescribeContainerInstancesRequest$containerInstances": "<p>A space-separated list of container instance UUIDs or full Amazon Resource Name (ARN) entries.</p>",
678
- "DescribeServicesRequest$services": "<p>A list of services you want to describe.</p>",
679
- "DescribeTasksRequest$tasks": "<p>A space-separated list of task UUIDs or full Amazon Resource Name (ARN) entries.</p>",
680
- "ListClustersResponse$clusterArns": "<p>The list of full Amazon Resource Name (ARN) entries for each cluster associated with your account.</p>",
681
- "ListContainerInstancesResponse$containerInstanceArns": "<p>The list of container instance full Amazon Resource Name (ARN) entries for each container instance associated with the specified cluster.</p>",
682
- "ListServicesResponse$serviceArns": "<p>The list of full Amazon Resource Name (ARN) entries for each service associated with the specified cluster.</p>",
683
- "ListTaskDefinitionFamiliesResponse$families": "<p>The list of task definition family names that match the <code>ListTaskDefinitionFamilies</code> request.</p>",
684
- "ListTaskDefinitionsResponse$taskDefinitionArns": "<p>The list of task definition Amazon Resource Name (ARN) entries for the <code>ListTaskDefintions</code> request.</p>",
685
- "ListTasksResponse$taskArns": "<p>The list of task Amazon Resource Name (ARN) entries for the <code>ListTasks</code> request.</p>",
686
- "Resource$stringSetValue": "<p>When the <code>stringSetValue</code> type is set, the value of the resource must be a string type.</p>",
687
- "StartTaskRequest$containerInstances": "<p>The container instance UUIDs or full Amazon Resource Name (ARN) entries for the container instances on which you would like to place your task.</p> <important> <p>The list of container instances to start tasks on is limited to 10.</p> </important>"
688
- }
689
- },
690
- "SubmitContainerStateChangeRequest": {
691
- "base": null,
692
- "refs": {
693
- }
694
- },
695
- "SubmitContainerStateChangeResponse": {
696
- "base": null,
697
- "refs": {
698
- }
699
- },
700
- "SubmitTaskStateChangeRequest": {
701
- "base": null,
702
- "refs": {
703
- }
704
- },
705
- "SubmitTaskStateChangeResponse": {
706
- "base": null,
707
- "refs": {
708
- }
709
- },
710
- "Task": {
711
- "base": null,
712
- "refs": {
713
- "StopTaskResponse$task": null,
714
- "Tasks$member": null
715
- }
716
- },
717
- "TaskDefinition": {
718
- "base": null,
719
- "refs": {
720
- "DeregisterTaskDefinitionResponse$taskDefinition": "<p>The full description of the deregistered task.</p>",
721
- "DescribeTaskDefinitionResponse$taskDefinition": "<p>The full task definition description.</p>",
722
- "RegisterTaskDefinitionResponse$taskDefinition": null
723
- }
724
- },
725
- "TaskOverride": {
726
- "base": "<p>A list of container overrides in JSON format that specify the name of a container in a task definition and the command it should run instead of its default.</p>",
727
- "refs": {
728
- "RunTaskRequest$overrides": "<p>A list of container overrides in JSON format that specify the name of a container in the specified task definition and the command it should run instead of its default. A total of 8192 characters are allowed for overrides. This limit includes the JSON formatting characters of the override structure.</p>",
729
- "StartTaskRequest$overrides": "<p>A list of container overrides in JSON format that specify the name of a container in the specified task definition and the command it should run instead of its default. A total of 8192 characters are allowed for overrides. This limit includes the JSON formatting characters of the override structure.</p>",
730
- "Task$overrides": "<p>One or more container overrides.</p>"
731
- }
732
- },
733
- "Tasks": {
734
- "base": null,
735
- "refs": {
736
- "DescribeTasksResponse$tasks": "<p>The list of tasks.</p>",
737
- "RunTaskResponse$tasks": "<p>A full description of the tasks that were run. Each task that was successfully placed on your cluster will be described here.</p>",
738
- "StartTaskResponse$tasks": "<p>A full description of the tasks that were started. Each task that was successfully placed on your container instances will be described here.</p>"
739
- }
740
- },
741
- "Timestamp": {
742
- "base": null,
743
- "refs": {
744
- "Deployment$createdAt": "<p>The Unix time in seconds and milliseconds when the service was created.</p>",
745
- "Deployment$updatedAt": "<p>The Unix time in seconds and milliseconds when the service was last updated.</p>",
746
- "ServiceEvent$createdAt": "<p>The Unix time in seconds and milliseconds when the event was triggered.</p>"
747
- }
748
- },
749
- "UpdateServiceRequest": {
750
- "base": null,
751
- "refs": {
752
- }
753
- },
754
- "UpdateServiceResponse": {
755
- "base": null,
756
- "refs": {
757
- }
758
- },
759
- "VersionInfo": {
760
- "base": null,
761
- "refs": {
762
- "RegisterContainerInstanceRequest$versionInfo": null
763
- }
764
- },
765
- "Volume": {
766
- "base": null,
767
- "refs": {
768
- "VolumeList$member": null
769
- }
770
- },
771
- "VolumeFrom": {
772
- "base": null,
773
- "refs": {
774
- "VolumeFromList$member": null
775
- }
776
- },
777
- "VolumeFromList": {
778
- "base": null,
779
- "refs": {
780
- "ContainerDefinition$volumesFrom": "<p>Data volumes to mount from another container.</p>"
781
- }
782
- },
783
- "VolumeList": {
784
- "base": null,
785
- "refs": {
786
- "RegisterTaskDefinitionRequest$volumes": "<p>A list of volume definitions in JSON format that containers in your task may use.</p>",
787
- "TaskDefinition$volumes": "<p>The list of volumes in a task. For more information on volume definition parameters and defaults, see <a href=\"http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html\">Amazon ECS Task Definitions</a> in the <i>Amazon EC2 Container Service Developer Guide</i>.</p>"
788
- }
789
- }
790
- }
791
- }