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,414 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CreateFileSystem": "<p> Creates a new, empty file system. The operation requires a creation token in the request that Amazon EFS uses to ensure idempotent creation (calling the operation with same creation token has no effect). If a file system does not currently exist that is owned by the caller's AWS account with the specified creation token, this operation does the following: </p> <ul> <li>Creates a new, empty file system. The file system will have an Amazon EFS assigned ID, and an initial lifecycle state \"creating\". </li> <li> Returns with the description of the created file system. </li> </ul> <p>Otherwise, this operation returns a <code>FileSystemAlreadyExists</code> error with the ID of the existing file system.</p> <note>For basic use cases, you can use a randomly generated UUID for the creation token.</note> <p> The idempotent operation allows you to retry a <code>CreateFileSystem</code> call without risk of creating an extra file system. This can happen when an initial call fails in a way that leaves it uncertain whether or not a file system was actually created. An example might be that a transport level timeout occurred or your connection was reset. As long as you use the same creation token, if the initial call had succeeded in creating a file system, the client can learn of its existence from the <code>FileSystemAlreadyExists</code> error. </p> <note>The <code>CreateFileSystem</code> call returns while the file system's lifecycle state is still \"creating\". You can check the file system creation status by calling the <a>DescribeFileSystems</a> API, which among other things returns the file system state.</note> <p> After the file system is fully created, Amazon EFS sets its lifecycle state to \"available\", at which point you can create one or more mount targets for the file system (<a>CreateMountTarget</a>) in your VPC. You mount your Amazon EFS file system on an EC2 instances in your VPC via the mount target. For more information, see <a href=\"http://docs.aws.amazon.com/efs/latest/ug/how-it-works.html\">Amazon EFS: How it Works</a> </p> <p> This operation requires permission for the <code>elasticfilesystem:CreateFileSystem</code> action. </p>",
5
- "CreateMountTarget": "<p>Creates a mount target for a file system. You can then mount the file system on EC2 instances via the mount target. </p> <p>You can create one mount target in each Availability Zone in your VPC. All EC2 instances in a VPC within a given Availability Zone share a single mount target for a given file system. If you have multiple subnets in an Availability Zone, you create a mount target in one of the subnets. EC2 instances do not need to be in the same subnet as the mount target in order to access their file system. For more information, see <a href=\"http://docs.aws.amazon.com/efs/latest/ug/how-it-works.html\">Amazon EFS: How it Works</a>. </p> <p>In the request, you also specify a file system ID for which you are creating the mount target and the file system's lifecycle state must be \"available\" (see <a>DescribeFileSystems</a>).</p> <p> In the request, you also provide a subnet ID, which serves several purposes:</p> <ul> <li>It determines the VPC in which Amazon EFS creates the mount target.</li> <li>It determines the Availability Zone in which Amazon EFS creates the mount target. </li> <li>It determines the IP address range from which Amazon EFS selects the IP address of the mount target if you don't specify an IP address in the request. </li> </ul> <p>After creating the mount target, Amazon EFS returns a response that includes, a <code>MountTargetId</code> and an <code>IpAddress</code>. You use this IP address when mounting the file system in an EC2 instance. You can also use the mount target's DNS name when mounting the file system. The EC2 instance on which you mount the file system via the mount target can resolve the mount target's DNS name to its IP address. For more information, see <a href=\"http://docs.aws.amazon.com/efs/latest/ug/how-it-works.html#how-it-works-implementation\">How it Works: Implementation Overview</a> </p> <p> Note that you can create mount targets for a file system in only one VPC, and there can be only one mount target per Availability Zone. That is, if the file system already has one or more mount targets created for it, the request to add another mount target must meet the following requirements: </p> <ul> <li> <p>The subnet specified in the request must belong to the same VPC as the subnets of the existing mount targets.</p> </li> <li>The subnet specified in the request must not be in the same Availability Zone as any of the subnets of the existing mount targets.</li> </ul> <p>If the request satisfies the requirements, Amazon EFS does the following:</p> <ul> <li>Creates a new mount target in the specified subnet. </li> <li>Also creates a new network interface in the subnet as follows: <ul> <li>If the request provides an <code>IpAddress</code>, Amazon EFS assigns that IP address to the network interface. Otherwise, Amazon EFS assigns a free address in the subnet (in the same way that the Amazon EC2 <code>CreateNetworkInterface</code> call does when a request does not specify a primary private IP address).</li> <li>If the request provides <code>SecurityGroups</code>, this network interface is associated with those security groups. Otherwise, it belongs to the default security group for the subnet's VPC.</li> <li>Assigns the description <code>\"Mount target <i>fsmt-id</i> for file system <i>fs-id</i>\"</code> where <code><i>fsmt-id</i></code> is the mount target ID, and <code><i>fs-id</i></code> is the <code>FileSystemId</code>.</li> <li>Sets the <code>requesterManaged</code> property of the network interface to \"true\", and the <code>requesterId</code> value to \"EFS\".</li> </ul> <p>Each Amazon EFS mount target has one corresponding requestor-managed EC2 network interface. After the network interface is created, Amazon EFS sets the <code>NetworkInterfaceId</code> field in the mount target's description to the network interface ID, and the <code>IpAddress</code> field to its address. If network interface creation fails, the entire <code>CreateMountTarget</code> operation fails.</p> </li> </ul> <note>The <code>CreateMountTarget</code> call returns only after creating the network interface, but while the mount target state is still \"creating\". You can check the mount target creation status by calling the <a>DescribeFileSystems</a> API, which among other things returns the mount target state.</note> <p>We recommend you create a mount target in each of the Availability Zones. There are cost considerations for using a file system in an Availability Zone through a mount target created in another Availability Zone. For more information, go to <a href=\"http://aws.amazon.com/efs/\">Amazon EFS</a> product detail page. In addition, by always using a mount target local to the instance's Availability Zone, you eliminate a partial failure scenario; if the Availablity Zone in which your mount target is created goes down, then you won't be able to access your file system through that mount target. </p> <p>This operation requires permission for the following action on the file system:</p> <ul> <li><code>elasticfilesystem:CreateMountTarget</code></li> </ul> <p>This operation also requires permission for the following Amazon EC2 actions:</p> <ul> <li><code>ec2:DescribeSubnets</code></li> <li><code>ec2:DescribeNetworkInterfaces</code></li> <li><code>ec2:CreateNetworkInterface</code></li> </ul>",
6
- "CreateTags": "<p>Creates or overwrites tags associated with a file system. Each tag is a key-value pair. If a tag key specified in the request already exists on the file system, this operation overwrites its value with the value provided in the request. If you add the \"Name\" tag to your file system, Amazon EFS returns it in the response to the <a>DescribeFileSystems</a> API. </p> <p>This operation requires permission for the <code>elasticfilesystem:CreateTags</code> action.</p>",
7
- "DeleteFileSystem": "<p> Deletes a file system, permanently severing access to its contents. Upon return, the file system no longer exists and you will not be able to access any contents of the deleted file system. </p> <p> You cannot delete a file system that is in use. That is, if the file system has any mount targets, you must first delete them. For more information, see <a>DescribeMountTargets</a> and <a>DeleteMountTarget</a>. </p> <note>The <code>DeleteFileSystem</code> call returns while the file system state is still \"deleting\". You can check the file system deletion status by calling the <a>DescribeFileSystems</a> API, which returns a list of file systems in your account. If you pass file system ID or creation token for the deleted file system, the <a>DescribeFileSystems</a> will return a 404 \"FileSystemNotFound\" error.</note> <p>This operation requires permission for the <code>elasticfilesystem:DeleteFileSystem</code> action.</p>",
8
- "DeleteMountTarget": "<p>Deletes the specified mount target. </p> <p> This operation forcibly breaks any mounts of the file system via the mount target being deleted, which might disrupt instances or applications using those mounts. To avoid applications getting cut off abruptly, you might consider unmounting any mounts of the mount target, if feasible. The operation also deletes the associated network interface. Uncommitted writes may be lost, but breaking a mount target using this operation does not corrupt the file system itself. The file system you created remains. You can mount an EC2 instance in your VPC using another mount target. </p> <p> This operation requires permission for the following action on the file system: </p> <ul> <li><code>elasticfilesystem:DeleteMountTarget</code></li> </ul> <note>The <code>DeleteMountTarget</code> call returns while the mount target state is still \"deleting\". You can check the mount target deletion by calling the <a>DescribeMountTargets</a> API, which returns a list of mount target descriptions for the given file system. </note> <p>The operation also requires permission for the following Amazon EC2 action on the mount target's network interface:</p> <ul> <li><code>ec2:DeleteNetworkInterface</code></li> </ul>",
9
- "DeleteTags": "<p>Deletes the specified tags from a file system. If the <code>DeleteTags</code> request includes a tag key that does not exist, Amazon EFS ignores it; it is not an error. For more information about tags and related restrictions, go to <a href=\"http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html\">Tag Restrictions</a> in the <i>AWS Billing and Cost Management User Guide</i>.</p> <p>This operation requires permission for the <code>elasticfilesystem:DeleteTags</code> action.</p>",
10
- "DescribeFileSystems": "<p>Returns the description of a specific Amazon EFS file system if either the file system <code>CreationToken</code> or the <code>FileSystemId</code> is provided; otherwise, returns descriptions of all file systems owned by the caller's AWS account in the AWS region of the endpoint that you're calling.</p> <p> When retrieving all file system descriptions, you can optionally specify the <code>MaxItems</code> parameter to limit the number of descriptions in a response. If more file system descriptions remain, Amazon EFS returns a <code>NextMarker</code>, an opaque token, in the response. In this case, you should send a subsequent request with the <code>Marker</code> request parameter set to the value of <code>NextMarker</code>. </p> <p> So to retrieve a list of your file system descriptions, the expected usage of this API is an iterative process of first calling <code>DescribeFileSystems</code> without the <code>Marker</code> and then continuing to call it with the <code>Marker</code> parameter set to the value of the <code>NextMarker</code> from the previous response until the response has no <code>NextMarker</code>. </p> <p> Note that the implementation may return fewer than <code>MaxItems</code> file system descriptions while still including a <code>NextMarker</code> value. </p> <p> The order of file systems returned in the response of one <code>DescribeFileSystems</code> call, and the order of file systems returned across the responses of a multi-call iteration, is unspecified. </p> <p> This operation requires permission for the <code>elasticfilesystem:DescribeFileSystems</code> action. </p>",
11
- "DescribeMountTargetSecurityGroups": "<p>Returns the security groups currently in effect for a mount target. This operation requires that the network interface of the mount target has been created and the life cycle state of the mount target is not \"deleted\".</p> <p>This operation requires permissions for the following actions:</p> <ul> <li> <code>elasticfilesystem:DescribeMountTargetSecurityGroups</code> action on the mount target's file system. </li> <li> <code>ec2:DescribeNetworkInterfaceAttribute</code> action on the mount target's network interface. </li> </ul>",
12
- "DescribeMountTargets": "<p>Returns the descriptions of the current mount targets for a file system. The order of mount targets returned in the response is unspecified.</p> <p> This operation requires permission for the <code>elasticfilesystem:DescribeMountTargets</code> action on the file system <code>FileSystemId</code>. </p>",
13
- "DescribeTags": "<p>Returns the tags associated with a file system. The order of tags returned in the response of one <code>DescribeTags</code> call, and the order of tags returned across the responses of a multi-call iteration (when using pagination), is unspecified. </p> <p> This operation requires permission for the <code>elasticfilesystem:DescribeTags</code> action. </p>",
14
- "ModifyMountTargetSecurityGroups": "<p>Modifies the set of security groups in effect for a mount target.</p> <p>When you create a mount target, Amazon EFS also creates a new network interface (see <a>CreateMountTarget</a>). This operation replaces the security groups in effect for the network interface associated with a mount target, with the <code>SecurityGroups</code> provided in the request. This operation requires that the network interface of the mount target has been created and the life cycle state of the mount target is not \"deleted\". </p> <p>The operation requires permissions for the following actions:</p> <ul> <li> <code>elasticfilesystem:ModifyMountTargetSecurityGroups</code> action on the mount target's file system. </li> <li> <code>ec2:ModifyNetworkInterfaceAttribute</code> action on the mount target's network interface. </li> </ul>"
15
- },
16
- "service": "<fullname>Amazon Elastic File System</fullname>",
17
- "shapes": {
18
- "AwsAccountId": {
19
- "base": null,
20
- "refs": {
21
- "FileSystemDescription$OwnerId": "<p>The AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.</p>",
22
- "MountTargetDescription$OwnerId": "<p>The AWS account ID that owns the resource.</p>"
23
- }
24
- },
25
- "BadRequest": {
26
- "base": "<p>Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.</p>",
27
- "refs": {
28
- }
29
- },
30
- "CreateFileSystemRequest": {
31
- "base": null,
32
- "refs": {
33
- }
34
- },
35
- "CreateMountTargetRequest": {
36
- "base": null,
37
- "refs": {
38
- }
39
- },
40
- "CreateTagsRequest": {
41
- "base": null,
42
- "refs": {
43
- }
44
- },
45
- "CreationToken": {
46
- "base": null,
47
- "refs": {
48
- "CreateFileSystemRequest$CreationToken": "<p>String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.</p>",
49
- "DescribeFileSystemsRequest$CreationToken": "<p> Optional string. Restricts the list to the file system with this creation token (you specify a creation token at the time of creating an Amazon EFS file system). </p>",
50
- "FileSystemDescription$CreationToken": "<p>Opaque string specified in the request. </p>"
51
- }
52
- },
53
- "DeleteFileSystemRequest": {
54
- "base": null,
55
- "refs": {
56
- }
57
- },
58
- "DeleteMountTargetRequest": {
59
- "base": null,
60
- "refs": {
61
- }
62
- },
63
- "DeleteTagsRequest": {
64
- "base": null,
65
- "refs": {
66
- }
67
- },
68
- "DependencyTimeout": {
69
- "base": "<p>The service timed out trying to fulfill the request, and the client should try the call again.</p>",
70
- "refs": {
71
- }
72
- },
73
- "DescribeFileSystemsRequest": {
74
- "base": null,
75
- "refs": {
76
- }
77
- },
78
- "DescribeFileSystemsResponse": {
79
- "base": null,
80
- "refs": {
81
- }
82
- },
83
- "DescribeMountTargetSecurityGroupsRequest": {
84
- "base": null,
85
- "refs": {
86
- }
87
- },
88
- "DescribeMountTargetSecurityGroupsResponse": {
89
- "base": null,
90
- "refs": {
91
- }
92
- },
93
- "DescribeMountTargetsRequest": {
94
- "base": null,
95
- "refs": {
96
- }
97
- },
98
- "DescribeMountTargetsResponse": {
99
- "base": null,
100
- "refs": {
101
- }
102
- },
103
- "DescribeTagsRequest": {
104
- "base": null,
105
- "refs": {
106
- }
107
- },
108
- "DescribeTagsResponse": {
109
- "base": null,
110
- "refs": {
111
- }
112
- },
113
- "ErrorCode": {
114
- "base": null,
115
- "refs": {
116
- "BadRequest$ErrorCode": null,
117
- "DependencyTimeout$ErrorCode": null,
118
- "FileSystemAlreadyExists$ErrorCode": null,
119
- "FileSystemInUse$ErrorCode": null,
120
- "FileSystemLimitExceeded$ErrorCode": null,
121
- "FileSystemNotFound$ErrorCode": null,
122
- "IncorrectFileSystemLifeCycleState$ErrorCode": null,
123
- "IncorrectMountTargetState$ErrorCode": null,
124
- "InternalServerError$ErrorCode": null,
125
- "IpAddressInUse$ErrorCode": null,
126
- "MountTargetConflict$ErrorCode": null,
127
- "MountTargetNotFound$ErrorCode": null,
128
- "NetworkInterfaceLimitExceeded$ErrorCode": null,
129
- "NoFreeAddressesInSubnet$ErrorCode": null,
130
- "SecurityGroupLimitExceeded$ErrorCode": null,
131
- "SecurityGroupNotFound$ErrorCode": null,
132
- "SubnetNotFound$ErrorCode": null,
133
- "UnsupportedAvailabilityZone$ErrorCode": null
134
- }
135
- },
136
- "ErrorMessage": {
137
- "base": null,
138
- "refs": {
139
- "BadRequest$Message": null,
140
- "DependencyTimeout$Message": null,
141
- "FileSystemAlreadyExists$Message": null,
142
- "FileSystemInUse$Message": null,
143
- "FileSystemLimitExceeded$Message": null,
144
- "FileSystemNotFound$Message": null,
145
- "IncorrectFileSystemLifeCycleState$Message": null,
146
- "IncorrectMountTargetState$Message": null,
147
- "InternalServerError$Message": null,
148
- "IpAddressInUse$Message": null,
149
- "MountTargetConflict$Message": null,
150
- "MountTargetNotFound$Message": null,
151
- "NetworkInterfaceLimitExceeded$Message": null,
152
- "NoFreeAddressesInSubnet$Message": null,
153
- "SecurityGroupLimitExceeded$Message": null,
154
- "SecurityGroupNotFound$Message": null,
155
- "SubnetNotFound$Message": null,
156
- "UnsupportedAvailabilityZone$Message": null
157
- }
158
- },
159
- "FileSystemAlreadyExists": {
160
- "base": "<p>Returned if the file system you are trying to create already exists, with the creation token you provided.</p>",
161
- "refs": {
162
- }
163
- },
164
- "FileSystemDescription": {
165
- "base": "<p>This object provides description of a file system.</p>",
166
- "refs": {
167
- "FileSystemDescriptions$member": null
168
- }
169
- },
170
- "FileSystemDescriptions": {
171
- "base": null,
172
- "refs": {
173
- "DescribeFileSystemsResponse$FileSystems": "<p>An array of file system descriptions.</p>"
174
- }
175
- },
176
- "FileSystemId": {
177
- "base": null,
178
- "refs": {
179
- "CreateMountTargetRequest$FileSystemId": "<p>The ID of the file system for which to create the mount target.</p>",
180
- "CreateTagsRequest$FileSystemId": "<p>String. The ID of the file system whose tags you want to modify. This operation modifies only the tags and not the file system.</p>",
181
- "DeleteFileSystemRequest$FileSystemId": "<p>The ID of the file system you want to delete.</p>",
182
- "DeleteTagsRequest$FileSystemId": "<p>String. The ID of the file system whose tags you want to delete.</p>",
183
- "DescribeFileSystemsRequest$FileSystemId": "<p>Optional string. File system ID whose description you want to retrieve. </p>",
184
- "DescribeMountTargetsRequest$FileSystemId": "<p>String. The ID of the file system whose mount targets you want to list.</p>",
185
- "DescribeTagsRequest$FileSystemId": "<p>The ID of the file system whose tag set you want to retrieve.</p>",
186
- "FileSystemAlreadyExists$FileSystemId": null,
187
- "FileSystemDescription$FileSystemId": "<p>The file system ID assigned by Amazon EFS.</p>",
188
- "MountTargetDescription$FileSystemId": "<p>The ID of the file system for which the mount target is intended.</p>"
189
- }
190
- },
191
- "FileSystemInUse": {
192
- "base": "<p>Returned if a file system has mount targets. </p>",
193
- "refs": {
194
- }
195
- },
196
- "FileSystemLimitExceeded": {
197
- "base": "<p>Returned if the AWS account has already created maximum number of file systems allowed per account. </p>",
198
- "refs": {
199
- }
200
- },
201
- "FileSystemNotFound": {
202
- "base": "<p>Returned if the specified <code>FileSystemId</code> does not exist in the requester's AWS account.</p>",
203
- "refs": {
204
- }
205
- },
206
- "FileSystemSize": {
207
- "base": "<p>This object provides the latest known metered size, in bytes, of data stored in the file system, in its <code>Value</code> field, and the time at which that size was determined in its <code>Timestamp</code> field. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent the actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not necessarily the exact size the file system was at any instant in time.</p>",
208
- "refs": {
209
- "FileSystemDescription$SizeInBytes": "<p> This object provides the latest known metered size of data stored in the file system, in bytes, in its <code>Value</code> field, and the time at which that size was determined in its <code>Timestamp</code> field. The <code>Timestamp</code> value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time. </p>"
210
- }
211
- },
212
- "FileSystemSizeValue": {
213
- "base": null,
214
- "refs": {
215
- "FileSystemSize$Value": "<p>The latest known metered size, in bytes, of data stored in the file system.</p>"
216
- }
217
- },
218
- "IncorrectFileSystemLifeCycleState": {
219
- "base": "<p>Returned if the file system's life cycle state is not \"created\".</p>",
220
- "refs": {
221
- }
222
- },
223
- "IncorrectMountTargetState": {
224
- "base": "<p>Returned if the mount target is not in the correct state for the operation.</p>",
225
- "refs": {
226
- }
227
- },
228
- "InternalServerError": {
229
- "base": "<p>Returned if an error occurred on the server side.</p>",
230
- "refs": {
231
- }
232
- },
233
- "IpAddress": {
234
- "base": null,
235
- "refs": {
236
- "CreateMountTargetRequest$IpAddress": "<p>A valid IPv4 address within the address range of the specified subnet.</p>",
237
- "MountTargetDescription$IpAddress": "<p>The address at which the file system may be mounted via the mount target.</p>"
238
- }
239
- },
240
- "IpAddressInUse": {
241
- "base": "<p>Returned if the request specified an <code>IpAddress</code> that is already in use in the subnet.</p>",
242
- "refs": {
243
- }
244
- },
245
- "LifeCycleState": {
246
- "base": null,
247
- "refs": {
248
- "FileSystemDescription$LifeCycleState": "<p>A predefined string value that indicates the lifecycle phase of the file system. </p>",
249
- "MountTargetDescription$LifeCycleState": "<p>The lifecycle state the mount target is in.</p>"
250
- }
251
- },
252
- "Marker": {
253
- "base": null,
254
- "refs": {
255
- "DescribeFileSystemsRequest$Marker": "<p> Optional string. Opaque pagination token returned from a previous <code>DescribeFileSystems</code> operation. If present, specifies to continue the list from where the returning call had left off. </p>",
256
- "DescribeFileSystemsResponse$Marker": "<p>A string, present if provided by caller in the request.</p>",
257
- "DescribeFileSystemsResponse$NextMarker": "<p>A string, present if there are more file systems than returned in the response. You can use the <code>NextMarker</code> in the subsequent request to fetch the descriptions.</p>",
258
- "DescribeMountTargetsRequest$Marker": "<p>Optional. String. Opaque pagination token returned from a previous <code>DescribeMountTargets</code> operation. If present, it specifies to continue the list from where the previous returning call left off.</p>",
259
- "DescribeMountTargetsResponse$Marker": "<p>If the request included the <code>Marker</code>, the response returns that value in this field.</p>",
260
- "DescribeMountTargetsResponse$NextMarker": "<p>If a value is present, there are more mount targets to return. In a subsequent request, you can provide <code>Marker</code> in your request with this value to retrieve the next set of mount targets.</p>",
261
- "DescribeTagsRequest$Marker": "<p>Optional. String. Opaque pagination token returned from a previous <code>DescribeTags</code> operation. If present, it specifies to continue the list from where the previous call left off.</p>",
262
- "DescribeTagsResponse$Marker": "<p>If the request included a <code>Marker</code>, the response returns that value in this field.</p>",
263
- "DescribeTagsResponse$NextMarker": "<p>If a value is present, there are more tags to return. In a subsequent request, you can provide the value of <code>NextMarker</code> as the value of the <code>Marker</code> parameter in your next request to retrieve the next set of tags.</p>"
264
- }
265
- },
266
- "MaxItems": {
267
- "base": null,
268
- "refs": {
269
- "DescribeFileSystemsRequest$MaxItems": "<p>Optional integer. Specifies the maximum number of file systems to return in the response. This parameter value must be greater than 0. The number of items Amazon EFS returns will be the minimum of the <code>MaxItems</code> parameter specified in the request and the service's internal maximum number of items per page. </p>",
270
- "DescribeMountTargetsRequest$MaxItems": "<p>Optional. Maximum number of mount targets to return in the response. It must be an integer with a value greater than zero.</p>",
271
- "DescribeTagsRequest$MaxItems": "<p>Optional. Maximum number of file system tags to return in the response. It must be an integer with a value greater than zero.</p>"
272
- }
273
- },
274
- "ModifyMountTargetSecurityGroupsRequest": {
275
- "base": null,
276
- "refs": {
277
- }
278
- },
279
- "MountTargetConflict": {
280
- "base": "<p>Returned if the mount target would violate one of the specified restrictions based on the file system's existing mount targets.</p>",
281
- "refs": {
282
- }
283
- },
284
- "MountTargetCount": {
285
- "base": null,
286
- "refs": {
287
- "FileSystemDescription$NumberOfMountTargets": "<p>The current number of mount targets (see <a>CreateMountTarget</a>) the file system has.</p>"
288
- }
289
- },
290
- "MountTargetDescription": {
291
- "base": "<p>This object provides description of a mount target.</p>",
292
- "refs": {
293
- "MountTargetDescriptions$member": null
294
- }
295
- },
296
- "MountTargetDescriptions": {
297
- "base": null,
298
- "refs": {
299
- "DescribeMountTargetsResponse$MountTargets": "<p>Returns the file system's mount targets as an array of <code>MountTargetDescription</code> objects.</p>"
300
- }
301
- },
302
- "MountTargetId": {
303
- "base": null,
304
- "refs": {
305
- "DeleteMountTargetRequest$MountTargetId": "<p>String. The ID of the mount target to delete.</p>",
306
- "DescribeMountTargetSecurityGroupsRequest$MountTargetId": "<p>The ID of the mount target whose security groups you want to retrieve.</p>",
307
- "ModifyMountTargetSecurityGroupsRequest$MountTargetId": "<p>The ID of the mount target whose security groups you want to modify.</p>",
308
- "MountTargetDescription$MountTargetId": "<p>The system-assigned mount target ID. </p>"
309
- }
310
- },
311
- "MountTargetNotFound": {
312
- "base": "<p>Returned if there is no mount target with the specified ID is found in the caller's account.</p>",
313
- "refs": {
314
- }
315
- },
316
- "NetworkInterfaceId": {
317
- "base": null,
318
- "refs": {
319
- "MountTargetDescription$NetworkInterfaceId": "<p>The ID of the network interface that Amazon EFS created when it created the mount target.</p>"
320
- }
321
- },
322
- "NetworkInterfaceLimitExceeded": {
323
- "base": "<p> The calling account has reached the ENI limit for the specific AWS region. Client should try to delete some ENIs or get its account limit raised. For more information, go to <a href=\"http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html\">Amazon VPC Limits</a> in the Amazon Virtual Private Cloud User Guide (see the Network interfaces per VPC entry in the table). </p>",
324
- "refs": {
325
- }
326
- },
327
- "NoFreeAddressesInSubnet": {
328
- "base": "<p>Returned if <code>IpAddress</code> was not specified in the request and there are no free IP addresses in the subnet.</p>",
329
- "refs": {
330
- }
331
- },
332
- "SecurityGroup": {
333
- "base": null,
334
- "refs": {
335
- "SecurityGroups$member": null
336
- }
337
- },
338
- "SecurityGroupLimitExceeded": {
339
- "base": "<p>Returned if the size of <code>SecurityGroups</code> specified in the request is greater than five.</p>",
340
- "refs": {
341
- }
342
- },
343
- "SecurityGroupNotFound": {
344
- "base": "<p>Returned if one of the specified security groups does not exist in the subnet's VPC.</p>",
345
- "refs": {
346
- }
347
- },
348
- "SecurityGroups": {
349
- "base": null,
350
- "refs": {
351
- "CreateMountTargetRequest$SecurityGroups": "<p> Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must be for the same VPC as subnet specified. </p>",
352
- "DescribeMountTargetSecurityGroupsResponse$SecurityGroups": "<p>An array of security groups.</p>",
353
- "ModifyMountTargetSecurityGroupsRequest$SecurityGroups": "<p>An array of up to five VPC security group IDs.</p>"
354
- }
355
- },
356
- "SubnetId": {
357
- "base": null,
358
- "refs": {
359
- "CreateMountTargetRequest$SubnetId": "<p>The ID of the subnet to add the mount target in.</p>",
360
- "MountTargetDescription$SubnetId": "<p>The ID of the subnet that the mount target is in.</p>"
361
- }
362
- },
363
- "SubnetNotFound": {
364
- "base": "<p>Returned if there is no subnet with ID <code>SubnetId</code> provided in the request.</p>",
365
- "refs": {
366
- }
367
- },
368
- "Tag": {
369
- "base": "<p>A tag is a pair of key and value. The allowed characters in keys and values are letters, whitespace, and numbers, representable in UTF-8, and the characters '+', '-', '=', '.', '_', ':', and '/'. </p>",
370
- "refs": {
371
- "Tags$member": null
372
- }
373
- },
374
- "TagKey": {
375
- "base": null,
376
- "refs": {
377
- "Tag$Key": "<p>Tag key, a string. The key must not start with \"aws:\".</p>",
378
- "TagKeys$member": null
379
- }
380
- },
381
- "TagKeys": {
382
- "base": null,
383
- "refs": {
384
- "DeleteTagsRequest$TagKeys": "<p>A list of tag keys to delete.</p>"
385
- }
386
- },
387
- "TagValue": {
388
- "base": null,
389
- "refs": {
390
- "FileSystemDescription$Name": "<p>You can add tags to a file system (see <a>CreateTags</a>) including a \"Name\" tag. If the file system has a \"Name\" tag, Amazon EFS returns the value in this field. </p>",
391
- "Tag$Value": "<p>Value of the tag key.</p>"
392
- }
393
- },
394
- "Tags": {
395
- "base": null,
396
- "refs": {
397
- "CreateTagsRequest$Tags": "<p> An array of <code>Tag</code> objects to add. Each <code>Tag</code> object is a key-value pair. </p>",
398
- "DescribeTagsResponse$Tags": "<p>Returns tags associated with the file system as an array of <code>Tag</code> objects. </p>"
399
- }
400
- },
401
- "Timestamp": {
402
- "base": null,
403
- "refs": {
404
- "FileSystemDescription$CreationTime": "<p>The time at which the file system was created, in seconds, since 1970-01-01T00:00:00Z.</p>",
405
- "FileSystemSize$Timestamp": "<p>The time at which the size of data, returned in the <code>Value</code> field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.</p>"
406
- }
407
- },
408
- "UnsupportedAvailabilityZone": {
409
- "base": null,
410
- "refs": {
411
- }
412
- }
413
- }
414
- }
@@ -1,1078 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddTags": "<p>Adds the specified tags to the specified load balancer. Each load balancer can have a maximum of 10 tags.</p> <p>Each tag consists of a key and an optional value. If a tag with the same key is already associated with the load balancer, <code>AddTags</code> updates its value.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#tagging-elb\">Tagging</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
5
- "ApplySecurityGroupsToLoadBalancer": "<p>Associates one or more security groups with your load balancer in a virtual private cloud (VPC). The specified security groups override the previously associated security groups.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/USVPC_ApplySG.html\">Manage Security Groups for Amazon VPC</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
6
- "AttachLoadBalancerToSubnets": "<p>Adds one or more subnets to the set of configured subnets for the specified load balancer.</p> <p>The load balancer evenly distributes requests across all registered subnets. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForVPC.html\">Elastic Load Balancing in Amazon VPC</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
7
- "ConfigureHealthCheck": "<p>Specifies the health check settings to use when evaluating the health state of your back-end instances.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#healthcheck\">Health Checks</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
8
- "CreateAppCookieStickinessPolicy": "<p>Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be associated only with HTTP/HTTPS listeners.</p> <p>This policy is similar to the policy created by <a>CreateLBCookieStickinessPolicy</a>, except that the lifetime of the special Elastic Load Balancing cookie, <code>AWSELB</code>, follows the lifetime of the application-generated cookie specified in the policy configuration. The load balancer only inserts a new stickiness cookie when the application response includes a new application cookie.</p> <p>If the application cookie is explicitly removed or expires, the session stops being sticky until a new application cookie is issued.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsAppCookies\">Application-Controlled Session Stickiness</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
9
- "CreateLBCookieStickinessPolicy": "<p>Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified expiration period. This policy can be associated only with HTTP/HTTPS listeners.</p> <p>When a load balancer implements this policy, the load balancer uses a special cookie to track the back-end server instance for each request. When the load balancer receives a request, it first checks to see if this cookie is present in the request. If so, the load balancer sends the request to the application server specified in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load-balancing algorithm.</p> <p>A cookie is inserted into the response for binding subsequent requests from the same user to that server. The validity of the cookie is based on the cookie expiration time, which is specified in the policy configuration.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsLBCookies\">Duration-Based Session Stickiness</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
10
- "CreateLoadBalancer": "<p>Creates a load balancer.</p> <p>If the call completes successfully, a new load balancer is created with a unique Domain Name Service (DNS) name. The DNS name includes the name of the AWS region in which the load balancer was created. For example, the DNS name might end with either of the following:</p> <ul> <li> <code>us-east-1.elb.amazonaws.com</code> </li> <li> <code>us-west-2.elb.amazonaws.com</code> </li> </ul> <p>For information about the AWS regions supported by Elastic Load Balancing, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region\">Regions and Endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>You can create up to 20 load balancers per region per account. You can request an increase for the number of load balancers for your account. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-limits.html\">Elastic Load Balancing Limits</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p> <p>Elastic Load Balancing supports load balancing your EC2 instances launched in either the EC2-Classic or EC2-VPC platform. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForEC2.html\">Elastic Load Balancing in EC2-Classic</a> or <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForVPC.html\">Elastic Load Balancing in a VPC</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
11
- "CreateLoadBalancerListeners": "<p>Creates one or more listeners for the specified load balancer. If a listener with the specified port does not already exist, it is created; otherwise, the properties of the new listener must match the properties of the existing listener.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/us-add-listener.html\">Add a Listener to Your Load Balancer</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
12
- "CreateLoadBalancerPolicy": "<p>Creates a policy with the specified attributes for the specified load balancer.</p> <p>Policies are settings that are saved for your load balancer and that can be applied to the front-end listener or the back-end application server, depending on the policy type.</p>",
13
- "DeleteLoadBalancer": "<p>Deletes the specified load balancer.</p> <p>If you are attempting to recreate a load balancer, you must reconfigure all settings. The DNS name associated with a deleted load balancer are no longer usable. The name and associated DNS record of the deleted load balancer no longer exist and traffic sent to any of its IP addresses is no longer delivered to back-end instances.</p> <p>If the load balancer does not exist or has already been deleted, the call to <code>DeleteLoadBalancer</code> still succeeds.</p>",
14
- "DeleteLoadBalancerListeners": "<p>Deletes the specified listeners from the specified load balancer.</p>",
15
- "DeleteLoadBalancerPolicy": "<p>Deletes the specified policy from the specified load balancer. This policy must not be enabled for any listeners.</p>",
16
- "DeregisterInstancesFromLoadBalancer": "<p>Deregisters the specified instances from the specified load balancer. After the instance is deregistered, it no longer receives traffic from the load balancer.</p> <p>You can use <a>DescribeLoadBalancers</a> to verify that the instance is deregistered from the load balancer.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_DeReg_Reg_Instances.html\">Deregister and Register Amazon EC2 Instances</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
17
- "DescribeInstanceHealth": "<p>Describes the state of the specified instances registered with the specified load balancer. If no instances are specified, the call describes the state of all instances registered with the load balancer, not including any terminated instances.</p>",
18
- "DescribeLoadBalancerAttributes": "<p>Describes the attributes for the specified load balancer.</p>",
19
- "DescribeLoadBalancerPolicies": "<p>Describes the specified policies.</p> <p>If you specify a load balancer name, the action returns the descriptions of all policies created for the load balancer. If you specify a policy name associated with your load balancer, the action returns the description of that policy. If you don't specify a load balancer name, the action returns descriptions of the specified sample policies, or descriptions of all sample policies. The names of the sample policies have the <code>ELBSample-</code> prefix.</p>",
20
- "DescribeLoadBalancerPolicyTypes": "<p>Describes the specified load balancer policy types.</p> <p>You can use these policy types with <a>CreateLoadBalancerPolicy</a> to create policy configurations for a load balancer.</p>",
21
- "DescribeLoadBalancers": "<p>Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers.</p>",
22
- "DescribeTags": "<p>Describes the tags associated with the specified load balancers.</p>",
23
- "DetachLoadBalancerFromSubnets": "<p>Removes the specified subnets from the set of configured subnets for the load balancer.</p> <p>After a subnet is removed, all EC2 instances registered with the load balancer in the removed subnet go into the <code>OutOfService</code> state. Then, the load balancer balances the traffic among the remaining routable subnets.</p>",
24
- "DisableAvailabilityZonesForLoadBalancer": "<p>Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer.</p> <p>There must be at least one Availability Zone registered with a load balancer at all times. After an Availability Zone is removed, all instances registered with the load balancer that are in the removed Availability Zone go into the <code>OutOfService</code> state. Then, the load balancer attempts to equally balance the traffic among its remaining Availability Zones.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_ShrinkLBApp04.html\">Disable an Availability Zone from a Load-Balanced Application</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
25
- "EnableAvailabilityZonesForLoadBalancer": "<p>Adds the specified Availability Zones to the set of Availability Zones for the specified load balancer.</p> <p>The load balancer evenly distributes requests across all its registered Availability Zones that contain instances.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_AddLBAvailabilityZone.html\">Add Availability Zone</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
26
- "ModifyLoadBalancerAttributes": "<p>Modifies the attributes of the specified load balancer.</p> <p>You can modify the load balancer attributes, such as <code>AccessLogs</code>, <code>ConnectionDraining</code>, and <code>CrossZoneLoadBalancing</code> by either enabling or disabling them. Or, you can modify the load balancer attribute <code>ConnectionSettings</code> by specifying an idle connection timeout value for your load balancer.</p> <p>For more information, see the following in the <i>Elastic Load Balancing Developer Guide</i>:</p> <ul> <li><a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#request-routing\">Cross-Zone Load Balancing</a></li> <li><a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#conn-drain\">Connection Draining</a></li> <li><a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/access-log-collection.html\">Access Logs</a></li> <li><a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#idle-timeout\">Idle Connection Timeout</a></li> </ul>",
27
- "RegisterInstancesWithLoadBalancer": "<p>Adds the specified instances to the specified load balancer.</p> <p>The instance must be a running instance in the same network as the load balancer (EC2-Classic or the same VPC). If you have EC2-Classic instances and a load balancer in a VPC with ClassicLink enabled, you can link the EC2-Classic instances to that VPC and then register the linked EC2-Classic instances with the load balancer in the VPC.</p> <p>Note that <code>RegisterInstanceWithLoadBalancer</code> completes when the request has been registered. Instance registration happens shortly afterwards. To check the state of the registered instances, use <a>DescribeLoadBalancers</a> or <a>DescribeInstanceHealth</a>.</p> <p>After the instance is registered, it starts receiving traffic and requests from the load balancer. Any instance that is not in one of the Availability Zones registered for the load balancer is moved to the <code>OutOfService</code> state. If an Availability Zone is added to the load balancer later, any instances registered with the load balancer move to the <code>InService</code> state.</p> <p>If you stop an instance registered with a load balancer and then start it, the IP addresses associated with the instance changes. Elastic Load Balancing cannot recognize the new IP address, which prevents it from routing traffic to the instances. We recommend that you use the following sequence: stop the instance, deregister the instance, start the instance, and then register the instance. To deregister instances from a load balancer, use <a>DeregisterInstancesFromLoadBalancer</a>.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_DeReg_Reg_Instances.html\">Deregister and Register EC2 Instances</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
28
- "RemoveTags": "<p>Removes one or more tags from the specified load balancer.</p>",
29
- "SetLoadBalancerListenerSSLCertificate": "<p>Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior certificate that was used on the same load balancer and port.</p> <p>For more information about updating your SSL certificate, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_UpdatingLoadBalancerSSL.html\">Updating an SSL Certificate for a Load Balancer</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
30
- "SetLoadBalancerPoliciesForBackendServer": "<p>Replaces the set of policies associated with the specified port on which the back-end server is listening with a new set of policies. At this time, only the back-end server authentication policy type can be applied to the back-end ports; this policy type is composed of multiple public key policies.</p> <p>Each time you use <code>SetLoadBalancerPoliciesForBackendServer</code> to enable the policies, use the <code>PolicyNames</code> parameter to list the policies that you want to enable.</p> <p>You can use <a>DescribeLoadBalancers</a> or <a>DescribeLoadBalancerPolicies</a> to verify that the policy is associated with the back-end server.</p>",
31
- "SetLoadBalancerPoliciesOfListener": "<p>Associates, updates, or disables a policy with a listener for the specified load balancer. You can associate multiple policies with a listener.</p>"
32
- },
33
- "service": "<fullname>Elastic Load Balancing</fullname> <p>Elastic Load Balancing automatically distributes incoming web traffic across multiple Amazon EC2 instances.</p> <p>All Elastic Load Balancing actions and commands are <i>idempotent</i>, which means that they complete no more than one time. If you repeat a request or a command, the action succeeds with a 200 OK response code.</p> <p>For detailed information about the features of Elastic Load Balancing, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenarios.html\">Managing Load Balancers</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
34
- "shapes": {
35
- "AccessLog": {
36
- "base": "<p>Information about the <code>AccessLog</code> attribute.</p>",
37
- "refs": {
38
- "LoadBalancerAttributes$AccessLog": "<p>If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/enable-access-logs.html\">Enable Access Logs</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>"
39
- }
40
- },
41
- "AccessLogEnabled": {
42
- "base": null,
43
- "refs": {
44
- "AccessLog$Enabled": "<p>Specifies whether access log is enabled for the load balancer.</p>"
45
- }
46
- },
47
- "AccessLogInterval": {
48
- "base": null,
49
- "refs": {
50
- "AccessLog$EmitInterval": "<p>The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.</p> <p>Default: 60 minutes</p>"
51
- }
52
- },
53
- "AccessLogPrefix": {
54
- "base": null,
55
- "refs": {
56
- "AccessLog$S3BucketPrefix": "<p>The logical hierarchy you created for your Amazon S3 bucket, for example <code>my-bucket-prefix/prod</code>. If the prefix is not provided, the log is placed at the root level of the bucket.</p>"
57
- }
58
- },
59
- "AccessPointName": {
60
- "base": null,
61
- "refs": {
62
- "AddAvailabilityZonesInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
63
- "ApplySecurityGroupsToLoadBalancerInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
64
- "AttachLoadBalancerToSubnetsInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
65
- "ConfigureHealthCheckInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
66
- "CreateAccessPointInput$LoadBalancerName": "<p>The name of the load balancer.</p> <p>This name must be unique within your AWS account, must have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen.</p>",
67
- "CreateAppCookieStickinessPolicyInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
68
- "CreateLBCookieStickinessPolicyInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
69
- "CreateLoadBalancerListenerInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
70
- "CreateLoadBalancerPolicyInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
71
- "DeleteAccessPointInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
72
- "DeleteLoadBalancerListenerInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
73
- "DeleteLoadBalancerPolicyInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
74
- "DeregisterEndPointsInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
75
- "DescribeEndPointStateInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
76
- "DescribeLoadBalancerAttributesInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
77
- "DescribeLoadBalancerPoliciesInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
78
- "DetachLoadBalancerFromSubnetsInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
79
- "LoadBalancerDescription$LoadBalancerName": "<p>The name of the load balancer.</p>",
80
- "LoadBalancerNames$member": null,
81
- "LoadBalancerNamesMax20$member": null,
82
- "ModifyLoadBalancerAttributesInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
83
- "ModifyLoadBalancerAttributesOutput$LoadBalancerName": "<p>The name of the load balancer.</p>",
84
- "RegisterEndPointsInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
85
- "RemoveAvailabilityZonesInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
86
- "SetLoadBalancerListenerSSLCertificateInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
87
- "SetLoadBalancerPoliciesForBackendServerInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
88
- "SetLoadBalancerPoliciesOfListenerInput$LoadBalancerName": "<p>The name of the load balancer.</p>",
89
- "TagDescription$LoadBalancerName": "<p>The name of the load balancer.</p>"
90
- }
91
- },
92
- "AccessPointNotFoundException": {
93
- "base": "<p>The specified load balancer does not exist.</p>",
94
- "refs": {
95
- }
96
- },
97
- "AccessPointPort": {
98
- "base": null,
99
- "refs": {
100
- "Listener$LoadBalancerPort": "<p>The port on which the load balancer is listening: 25, 80, 443, 465, 587, or 1024-65535.</p>",
101
- "Ports$member": null,
102
- "SetLoadBalancerListenerSSLCertificateInput$LoadBalancerPort": "<p>The port that uses the specified SSL certificate.</p>",
103
- "SetLoadBalancerPoliciesOfListenerInput$LoadBalancerPort": "<p>The external port of the load balancer for the policy.</p>"
104
- }
105
- },
106
- "AddAvailabilityZonesInput": {
107
- "base": null,
108
- "refs": {
109
- }
110
- },
111
- "AddAvailabilityZonesOutput": {
112
- "base": null,
113
- "refs": {
114
- }
115
- },
116
- "AddTagsInput": {
117
- "base": null,
118
- "refs": {
119
- }
120
- },
121
- "AddTagsOutput": {
122
- "base": null,
123
- "refs": {
124
- }
125
- },
126
- "AdditionalAttribute": {
127
- "base": "<p>This data type is reserved.</p>",
128
- "refs": {
129
- "AdditionalAttributes$member": null
130
- }
131
- },
132
- "AdditionalAttributes": {
133
- "base": null,
134
- "refs": {
135
- "LoadBalancerAttributes$AdditionalAttributes": "<p>This parameter is reserved.</p>"
136
- }
137
- },
138
- "AppCookieStickinessPolicies": {
139
- "base": null,
140
- "refs": {
141
- "Policies$AppCookieStickinessPolicies": "<p>The stickiness policies created using <a>CreateAppCookieStickinessPolicy</a>.</p>"
142
- }
143
- },
144
- "AppCookieStickinessPolicy": {
145
- "base": "<p>Information about a policy for application-controlled session stickiness.</p>",
146
- "refs": {
147
- "AppCookieStickinessPolicies$member": null
148
- }
149
- },
150
- "ApplySecurityGroupsToLoadBalancerInput": {
151
- "base": null,
152
- "refs": {
153
- }
154
- },
155
- "ApplySecurityGroupsToLoadBalancerOutput": {
156
- "base": null,
157
- "refs": {
158
- }
159
- },
160
- "AttachLoadBalancerToSubnetsInput": {
161
- "base": null,
162
- "refs": {
163
- }
164
- },
165
- "AttachLoadBalancerToSubnetsOutput": {
166
- "base": null,
167
- "refs": {
168
- }
169
- },
170
- "AttributeName": {
171
- "base": null,
172
- "refs": {
173
- "PolicyAttribute$AttributeName": "<p>The name of the attribute.</p>",
174
- "PolicyAttributeDescription$AttributeName": "<p>The name of the attribute.</p>",
175
- "PolicyAttributeTypeDescription$AttributeName": "<p>The name of the attribute.</p>"
176
- }
177
- },
178
- "AttributeType": {
179
- "base": null,
180
- "refs": {
181
- "PolicyAttributeTypeDescription$AttributeType": "<p>The type of the attribute. For example, <code>Boolean</code> or <code>Integer</code>.</p>"
182
- }
183
- },
184
- "AttributeValue": {
185
- "base": null,
186
- "refs": {
187
- "PolicyAttribute$AttributeValue": "<p>The value of the attribute.</p>",
188
- "PolicyAttributeDescription$AttributeValue": "<p>The value of the attribute.</p>"
189
- }
190
- },
191
- "AvailabilityZone": {
192
- "base": null,
193
- "refs": {
194
- "AvailabilityZones$member": null
195
- }
196
- },
197
- "AvailabilityZones": {
198
- "base": null,
199
- "refs": {
200
- "AddAvailabilityZonesInput$AvailabilityZones": "<p>The Availability Zones. These must be in the same region as the load balancer.</p>",
201
- "AddAvailabilityZonesOutput$AvailabilityZones": "<p>The updated list of Availability Zones for the load balancer.</p>",
202
- "CreateAccessPointInput$AvailabilityZones": "<p>One or more Availability Zones from the same region as the load balancer. Traffic is equally distributed across all specified Availability Zones.</p> <p>You must specify at least one Availability Zone.</p> <p>You can add more Availability Zones after you create the load balancer using <a>EnableAvailabilityZonesForLoadBalancer</a>.</p>",
203
- "LoadBalancerDescription$AvailabilityZones": "<p>The Availability Zones for the load balancer.</p>",
204
- "RemoveAvailabilityZonesInput$AvailabilityZones": "<p>The Availability Zones.</p>",
205
- "RemoveAvailabilityZonesOutput$AvailabilityZones": "<p>The remaining Availability Zones for the load balancer.</p>"
206
- }
207
- },
208
- "BackendServerDescription": {
209
- "base": "<p>Information about the configuration of a back-end server.</p>",
210
- "refs": {
211
- "BackendServerDescriptions$member": null
212
- }
213
- },
214
- "BackendServerDescriptions": {
215
- "base": null,
216
- "refs": {
217
- "LoadBalancerDescription$BackendServerDescriptions": "<p>Information about the back-end servers.</p>"
218
- }
219
- },
220
- "Cardinality": {
221
- "base": null,
222
- "refs": {
223
- "PolicyAttributeTypeDescription$Cardinality": "<p>The cardinality of the attribute.</p> <p>Valid values:</p> <ul> <li>ONE(1) : Single value required</li> <li>ZERO_OR_ONE(0..1) : Up to one value can be supplied</li> <li>ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed</li> <li>ONE_OR_MORE(1..*0) : Required. Multiple values are allowed</li> </ul>"
224
- }
225
- },
226
- "CertificateNotFoundException": {
227
- "base": "<p>The specified SSL ID does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM).</p>",
228
- "refs": {
229
- }
230
- },
231
- "ConfigureHealthCheckInput": {
232
- "base": null,
233
- "refs": {
234
- }
235
- },
236
- "ConfigureHealthCheckOutput": {
237
- "base": null,
238
- "refs": {
239
- }
240
- },
241
- "ConnectionDraining": {
242
- "base": "<p>Information about the <code>ConnectionDraining</code> attribute.</p>",
243
- "refs": {
244
- "LoadBalancerAttributes$ConnectionDraining": "<p>If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy back-end instance. </p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/config-conn-drain.html\">Enable Connection Draining</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>"
245
- }
246
- },
247
- "ConnectionDrainingEnabled": {
248
- "base": null,
249
- "refs": {
250
- "ConnectionDraining$Enabled": "<p>Specifies whether connection draining is enabled for the load balancer.</p>"
251
- }
252
- },
253
- "ConnectionDrainingTimeout": {
254
- "base": null,
255
- "refs": {
256
- "ConnectionDraining$Timeout": "<p>The maximum time, in seconds, to keep the existing connections open before deregistering the instances.</p>"
257
- }
258
- },
259
- "ConnectionSettings": {
260
- "base": "<p>Information about the <code>ConnectionSettings</code> attribute.</p>",
261
- "refs": {
262
- "LoadBalancerAttributes$ConnectionSettings": "<p>If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.</p> <p>By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/config-idle-timeout.html\">Configure Idle Connection Timeout</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>"
263
- }
264
- },
265
- "CookieExpirationPeriod": {
266
- "base": null,
267
- "refs": {
268
- "CreateLBCookieStickinessPolicyInput$CookieExpirationPeriod": "<p>The time period, in seconds, after which the cookie should be considered stale. If you do not specify this parameter, the sticky session lasts for the duration of the browser session.</p>",
269
- "LBCookieStickinessPolicy$CookieExpirationPeriod": "<p>The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session.</p>"
270
- }
271
- },
272
- "CookieName": {
273
- "base": null,
274
- "refs": {
275
- "AppCookieStickinessPolicy$CookieName": "<p>The name of the application cookie used for stickiness.</p>",
276
- "CreateAppCookieStickinessPolicyInput$CookieName": "<p>The name of the application cookie used for stickiness.</p>"
277
- }
278
- },
279
- "CreateAccessPointInput": {
280
- "base": null,
281
- "refs": {
282
- }
283
- },
284
- "CreateAccessPointOutput": {
285
- "base": null,
286
- "refs": {
287
- }
288
- },
289
- "CreateAppCookieStickinessPolicyInput": {
290
- "base": null,
291
- "refs": {
292
- }
293
- },
294
- "CreateAppCookieStickinessPolicyOutput": {
295
- "base": null,
296
- "refs": {
297
- }
298
- },
299
- "CreateLBCookieStickinessPolicyInput": {
300
- "base": null,
301
- "refs": {
302
- }
303
- },
304
- "CreateLBCookieStickinessPolicyOutput": {
305
- "base": null,
306
- "refs": {
307
- }
308
- },
309
- "CreateLoadBalancerListenerInput": {
310
- "base": null,
311
- "refs": {
312
- }
313
- },
314
- "CreateLoadBalancerListenerOutput": {
315
- "base": null,
316
- "refs": {
317
- }
318
- },
319
- "CreateLoadBalancerPolicyInput": {
320
- "base": null,
321
- "refs": {
322
- }
323
- },
324
- "CreateLoadBalancerPolicyOutput": {
325
- "base": null,
326
- "refs": {
327
- }
328
- },
329
- "CreatedTime": {
330
- "base": null,
331
- "refs": {
332
- "LoadBalancerDescription$CreatedTime": "<p>The date and time the load balancer was created.</p>"
333
- }
334
- },
335
- "CrossZoneLoadBalancing": {
336
- "base": "<p>Information about the <code>CrossZoneLoadBalancing</code> attribute.</p>",
337
- "refs": {
338
- "LoadBalancerAttributes$CrossZoneLoadBalancing": "<p>If enabled, the load balancer routes the request traffic evenly across all back-end instances regardless of the Availability Zones.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/enable-disable-crosszone-lb.html\">Enable Cross-Zone Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>"
339
- }
340
- },
341
- "CrossZoneLoadBalancingEnabled": {
342
- "base": null,
343
- "refs": {
344
- "CrossZoneLoadBalancing$Enabled": "<p>Specifies whether cross-zone load balancing is enabled for the load balancer.</p>"
345
- }
346
- },
347
- "DNSName": {
348
- "base": null,
349
- "refs": {
350
- "CreateAccessPointOutput$DNSName": "<p>The DNS name of the load balancer.</p>",
351
- "LoadBalancerDescription$DNSName": "<p>The external DNS name of the load balancer.</p>",
352
- "LoadBalancerDescription$CanonicalHostedZoneName": "<p>The Amazon Route 53 hosted zone associated with the load balancer.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html\">Using Domain Names With Elastic Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
353
- "LoadBalancerDescription$CanonicalHostedZoneNameID": "<p>The ID of the Amazon Route 53 hosted zone name associated with the load balancer.</p>"
354
- }
355
- },
356
- "DefaultValue": {
357
- "base": null,
358
- "refs": {
359
- "PolicyAttributeTypeDescription$DefaultValue": "<p>The default value of the attribute, if applicable.</p>"
360
- }
361
- },
362
- "DeleteAccessPointInput": {
363
- "base": null,
364
- "refs": {
365
- }
366
- },
367
- "DeleteAccessPointOutput": {
368
- "base": null,
369
- "refs": {
370
- }
371
- },
372
- "DeleteLoadBalancerListenerInput": {
373
- "base": null,
374
- "refs": {
375
- }
376
- },
377
- "DeleteLoadBalancerListenerOutput": {
378
- "base": null,
379
- "refs": {
380
- }
381
- },
382
- "DeleteLoadBalancerPolicyInput": {
383
- "base": "=",
384
- "refs": {
385
- }
386
- },
387
- "DeleteLoadBalancerPolicyOutput": {
388
- "base": null,
389
- "refs": {
390
- }
391
- },
392
- "DeregisterEndPointsInput": {
393
- "base": null,
394
- "refs": {
395
- }
396
- },
397
- "DeregisterEndPointsOutput": {
398
- "base": null,
399
- "refs": {
400
- }
401
- },
402
- "DescribeAccessPointsInput": {
403
- "base": null,
404
- "refs": {
405
- }
406
- },
407
- "DescribeAccessPointsOutput": {
408
- "base": null,
409
- "refs": {
410
- }
411
- },
412
- "DescribeEndPointStateInput": {
413
- "base": null,
414
- "refs": {
415
- }
416
- },
417
- "DescribeEndPointStateOutput": {
418
- "base": null,
419
- "refs": {
420
- }
421
- },
422
- "DescribeLoadBalancerAttributesInput": {
423
- "base": null,
424
- "refs": {
425
- }
426
- },
427
- "DescribeLoadBalancerAttributesOutput": {
428
- "base": null,
429
- "refs": {
430
- }
431
- },
432
- "DescribeLoadBalancerPoliciesInput": {
433
- "base": null,
434
- "refs": {
435
- }
436
- },
437
- "DescribeLoadBalancerPoliciesOutput": {
438
- "base": null,
439
- "refs": {
440
- }
441
- },
442
- "DescribeLoadBalancerPolicyTypesInput": {
443
- "base": null,
444
- "refs": {
445
- }
446
- },
447
- "DescribeLoadBalancerPolicyTypesOutput": {
448
- "base": null,
449
- "refs": {
450
- }
451
- },
452
- "DescribeTagsInput": {
453
- "base": null,
454
- "refs": {
455
- }
456
- },
457
- "DescribeTagsOutput": {
458
- "base": null,
459
- "refs": {
460
- }
461
- },
462
- "Description": {
463
- "base": null,
464
- "refs": {
465
- "InstanceState$Description": "<p>A description of the instance state. This string can contain one or more of the following messages.</p> <ul> <li> <p><code>N/A</code></p> </li> <li> <p><code>A transient error occurred. Please try again later.</code></p> </li> <li> <p><code>Instance has failed at least the UnhealthyThreshold number of health checks consecutively.</code></p> </li> <li> <p><code>Instance has not passed the configured HealthyThreshold number of health checks consecutively.</code></p> </li> <li> <p><code>Instance registration is still in progress.</code></p> </li> <li> <p><code>Instance is in the EC2 Availability Zone for which LoadBalancer is not configured to route traffic to.</code></p> </li> <li> <p><code>Instance is not currently registered with the LoadBalancer.</code></p> </li> <li> <p><code>Instance deregistration currently in progress.</code></p> </li> <li> <p><code>Disable Availability Zone is currently in progress.</code></p> </li> <li> <p><code>Instance is in pending state.</code></p> </li> <li> <p><code>Instance is in stopped state.</code></p> </li> <li> <p><code>Instance is in terminated state.</code></p> </li> </ul>",
466
- "PolicyAttributeTypeDescription$Description": "<p>A description of the attribute.</p>",
467
- "PolicyTypeDescription$Description": "<p>A description of the policy type.</p>"
468
- }
469
- },
470
- "DetachLoadBalancerFromSubnetsInput": {
471
- "base": null,
472
- "refs": {
473
- }
474
- },
475
- "DetachLoadBalancerFromSubnetsOutput": {
476
- "base": null,
477
- "refs": {
478
- }
479
- },
480
- "DuplicateAccessPointNameException": {
481
- "base": "<p>The specified load balancer name already exists for this account.</p>",
482
- "refs": {
483
- }
484
- },
485
- "DuplicateListenerException": {
486
- "base": "<p>A listener already exists for the specified <code>LoadBalancerName</code> and <code>LoadBalancerPort</code>, but with a different <code>InstancePort</code>, <code>Protocol</code>, or <code>SSLCertificateId</code>.</p>",
487
- "refs": {
488
- }
489
- },
490
- "DuplicatePolicyNameException": {
491
- "base": "<p>A policy with the specified name already exists for this load balancer.</p>",
492
- "refs": {
493
- }
494
- },
495
- "DuplicateTagKeysException": {
496
- "base": "<p>A tag key was specified more than once.</p>",
497
- "refs": {
498
- }
499
- },
500
- "EndPointPort": {
501
- "base": null,
502
- "refs": {
503
- "SetLoadBalancerPoliciesForBackendServerInput$InstancePort": "<p>The port number associated with the back-end server.</p>"
504
- }
505
- },
506
- "HealthCheck": {
507
- "base": "<p>Information about a health check.</p>",
508
- "refs": {
509
- "ConfigureHealthCheckInput$HealthCheck": "<p>The configuration information for the new health check.</p>",
510
- "ConfigureHealthCheckOutput$HealthCheck": "<p>The updated health check.</p>",
511
- "LoadBalancerDescription$HealthCheck": "<p>Information about the health checks conducted on the load balancer.</p>"
512
- }
513
- },
514
- "HealthCheckInterval": {
515
- "base": null,
516
- "refs": {
517
- "HealthCheck$Interval": "<p>The approximate interval, in seconds, between health checks of an individual instance.</p>"
518
- }
519
- },
520
- "HealthCheckTarget": {
521
- "base": null,
522
- "refs": {
523
- "HealthCheck$Target": "<p>The instance being checked. The protocol is either TCP, HTTP, HTTPS, or SSL. The range of valid ports is one (1) through 65535.</p> <p>TCP is the default, specified as a TCP: port pair, for example \"TCP:5000\". In this case, a health check simply attempts to open a TCP connection to the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy.</p> <p>SSL is also specified as SSL: port pair, for example, SSL:5000.</p> <p>For HTTP/HTTPS, you must include a ping path in the string. HTTP is specified as a HTTP:port;/;PathToPing; grouping, for example \"HTTP:80/weather/us/wa/seattle\". In this case, a HTTP GET request is issued to the instance on the given port and path. Any answer other than \"200 OK\" within the timeout period is considered unhealthy.</p> <p>The total length of the HTTP ping target must be 1024 16-bit Unicode characters or less.</p>"
524
- }
525
- },
526
- "HealthCheckTimeout": {
527
- "base": null,
528
- "refs": {
529
- "HealthCheck$Timeout": "<p>The amount of time, in seconds, during which no response means a failed health check.</p> <p>This value must be less than the <code>Interval</code> value.</p>"
530
- }
531
- },
532
- "HealthyThreshold": {
533
- "base": null,
534
- "refs": {
535
- "HealthCheck$HealthyThreshold": "<p>The number of consecutive health checks successes required before moving the instance to the <code>Healthy</code> state.</p>"
536
- }
537
- },
538
- "IdleTimeout": {
539
- "base": null,
540
- "refs": {
541
- "ConnectionSettings$IdleTimeout": "<p>The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.</p>"
542
- }
543
- },
544
- "Instance": {
545
- "base": "<p>The ID of a back-end instance.</p>",
546
- "refs": {
547
- "Instances$member": null
548
- }
549
- },
550
- "InstanceId": {
551
- "base": null,
552
- "refs": {
553
- "Instance$InstanceId": "<p>The ID of the instance.</p>",
554
- "InstanceState$InstanceId": "<p>The ID of the instance.</p>"
555
- }
556
- },
557
- "InstancePort": {
558
- "base": null,
559
- "refs": {
560
- "BackendServerDescription$InstancePort": "<p>The port on which the back-end server is listening.</p>",
561
- "Listener$InstancePort": "<p>The port on which the instance server is listening - 25, 80, 443, 465, 587, or 1024-65535.</p>"
562
- }
563
- },
564
- "InstanceState": {
565
- "base": "<p>Information about the state of a back-end instance.</p>",
566
- "refs": {
567
- "InstanceStates$member": null
568
- }
569
- },
570
- "InstanceStates": {
571
- "base": null,
572
- "refs": {
573
- "DescribeEndPointStateOutput$InstanceStates": "<p>Information about the health of the instances.</p>"
574
- }
575
- },
576
- "Instances": {
577
- "base": null,
578
- "refs": {
579
- "DeregisterEndPointsInput$Instances": "<p>The IDs of the instances.</p>",
580
- "DeregisterEndPointsOutput$Instances": "<p>The remaining instances registered with the load balancer.</p>",
581
- "DescribeEndPointStateInput$Instances": "<p>The IDs of the instances.</p>",
582
- "LoadBalancerDescription$Instances": "<p>The IDs of the instances for the load balancer.</p>",
583
- "RegisterEndPointsInput$Instances": "<p>The IDs of the instances.</p>",
584
- "RegisterEndPointsOutput$Instances": "<p>The updated list of instances for the load balancer.</p>"
585
- }
586
- },
587
- "InvalidConfigurationRequestException": {
588
- "base": "<p>The requested configuration change is not valid.</p>",
589
- "refs": {
590
- }
591
- },
592
- "InvalidEndPointException": {
593
- "base": "<p>The specified endpoint is not valid.</p>",
594
- "refs": {
595
- }
596
- },
597
- "InvalidSchemeException": {
598
- "base": "<p>The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.</p>",
599
- "refs": {
600
- }
601
- },
602
- "InvalidSecurityGroupException": {
603
- "base": "<p>One or more of the specified security groups do not exist.</p>",
604
- "refs": {
605
- }
606
- },
607
- "InvalidSubnetException": {
608
- "base": "<p>The specified VPC has no associated Internet gateway.</p>",
609
- "refs": {
610
- }
611
- },
612
- "LBCookieStickinessPolicies": {
613
- "base": null,
614
- "refs": {
615
- "Policies$LBCookieStickinessPolicies": "<p>The stickiness policies created using <a>CreateLBCookieStickinessPolicy</a>.</p>"
616
- }
617
- },
618
- "LBCookieStickinessPolicy": {
619
- "base": "<p>Information about a policy for duration-based session stickiness.</p>",
620
- "refs": {
621
- "LBCookieStickinessPolicies$member": null
622
- }
623
- },
624
- "Listener": {
625
- "base": "<p>Information about a listener.</p> <p>For information about the protocols and the ports supported by Elastic Load Balancing, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-listener-config.html\">Listener Configurations for Elastic Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
626
- "refs": {
627
- "ListenerDescription$Listener": null,
628
- "Listeners$member": null
629
- }
630
- },
631
- "ListenerDescription": {
632
- "base": "<p>The policies enabled for a listener.</p>",
633
- "refs": {
634
- "ListenerDescriptions$member": null
635
- }
636
- },
637
- "ListenerDescriptions": {
638
- "base": null,
639
- "refs": {
640
- "LoadBalancerDescription$ListenerDescriptions": "<p>The listeners for the load balancer.</p>"
641
- }
642
- },
643
- "ListenerNotFoundException": {
644
- "base": "<p>The load balancer does not have a listener configured at the specified port.</p>",
645
- "refs": {
646
- }
647
- },
648
- "Listeners": {
649
- "base": null,
650
- "refs": {
651
- "CreateAccessPointInput$Listeners": "<p>The listeners.</p> <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-listener-config.html\">Listener Configurations for Elastic Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
652
- "CreateLoadBalancerListenerInput$Listeners": "<p>The listeners.</p>"
653
- }
654
- },
655
- "LoadBalancerAttributeNotFoundException": {
656
- "base": "<p>The specified load balancer attribute does not exist.</p>",
657
- "refs": {
658
- }
659
- },
660
- "LoadBalancerAttributes": {
661
- "base": "<p>The attributes for a load balancer.</p>",
662
- "refs": {
663
- "DescribeLoadBalancerAttributesOutput$LoadBalancerAttributes": "<p>Information about the load balancer attributes.</p>",
664
- "ModifyLoadBalancerAttributesInput$LoadBalancerAttributes": "<p>The attributes of the load balancer.</p>",
665
- "ModifyLoadBalancerAttributesOutput$LoadBalancerAttributes": null
666
- }
667
- },
668
- "LoadBalancerDescription": {
669
- "base": "<p>Information about a load balancer.</p>",
670
- "refs": {
671
- "LoadBalancerDescriptions$member": null
672
- }
673
- },
674
- "LoadBalancerDescriptions": {
675
- "base": null,
676
- "refs": {
677
- "DescribeAccessPointsOutput$LoadBalancerDescriptions": "<p>Information about the load balancers.</p>"
678
- }
679
- },
680
- "LoadBalancerNames": {
681
- "base": null,
682
- "refs": {
683
- "AddTagsInput$LoadBalancerNames": "<p>The name of the load balancer. You can specify one load balancer only.</p>",
684
- "DescribeAccessPointsInput$LoadBalancerNames": "<p>The names of the load balancers.</p>",
685
- "RemoveTagsInput$LoadBalancerNames": "<p>The name of the load balancer. You can specify a maximum of one load balancer name.</p>"
686
- }
687
- },
688
- "LoadBalancerNamesMax20": {
689
- "base": null,
690
- "refs": {
691
- "DescribeTagsInput$LoadBalancerNames": "<p>The names of the load balancers.</p>"
692
- }
693
- },
694
- "LoadBalancerScheme": {
695
- "base": null,
696
- "refs": {
697
- "CreateAccessPointInput$Scheme": "<p>The type of a load balancer. Valid only for load balancers in a VPC.</p> <p>By default, Elastic Load Balancing creates an Internet-facing load balancer with a publicly resolvable DNS name, which resolves to public IP addresses. For more information about Internet-facing and Internal load balancers, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/vpc-loadbalancer-types.html\">Internet-facing and Internal Load Balancers</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p> <p>Specify <code>internal</code> to create an internal load balancer with a DNS name that resolves to private IP addresses.</p>",
698
- "LoadBalancerDescription$Scheme": "<p>The type of load balancer. Valid only for load balancers in a VPC.</p> <p>If <code>Scheme</code> is <code>internet-facing</code>, the load balancer has a public DNS name that resolves to a public IP address.</p> <p>If <code>Scheme</code> is <code>internal</code>, the load balancer has a public DNS name that resolves to a private IP address.</p>"
699
- }
700
- },
701
- "Marker": {
702
- "base": null,
703
- "refs": {
704
- "DescribeAccessPointsInput$Marker": "<p>The marker for the next set of results. (You received this marker from a previous call.)</p>",
705
- "DescribeAccessPointsOutput$NextMarker": "<p>The marker to use when requesting the next set of results. If there are no additional results, the string is empty.</p>"
706
- }
707
- },
708
- "ModifyLoadBalancerAttributesInput": {
709
- "base": null,
710
- "refs": {
711
- }
712
- },
713
- "ModifyLoadBalancerAttributesOutput": {
714
- "base": null,
715
- "refs": {
716
- }
717
- },
718
- "PageSize": {
719
- "base": null,
720
- "refs": {
721
- "DescribeAccessPointsInput$PageSize": "<p>The maximum number of results to return with this call (a number from 1 to 400). The default is 400.</p>"
722
- }
723
- },
724
- "Policies": {
725
- "base": "<p>The policies for a load balancer.</p>",
726
- "refs": {
727
- "LoadBalancerDescription$Policies": "<p>The policies defined for the load balancer.</p>"
728
- }
729
- },
730
- "PolicyAttribute": {
731
- "base": "<p>Information about a policy attribute.</p>",
732
- "refs": {
733
- "PolicyAttributes$member": null
734
- }
735
- },
736
- "PolicyAttributeDescription": {
737
- "base": "<p>Information about a policy attribute.</p>",
738
- "refs": {
739
- "PolicyAttributeDescriptions$member": null
740
- }
741
- },
742
- "PolicyAttributeDescriptions": {
743
- "base": null,
744
- "refs": {
745
- "PolicyDescription$PolicyAttributeDescriptions": "<p>The policy attributes.</p>"
746
- }
747
- },
748
- "PolicyAttributeTypeDescription": {
749
- "base": "<p>Information about a policy attribute type.</p>",
750
- "refs": {
751
- "PolicyAttributeTypeDescriptions$member": null
752
- }
753
- },
754
- "PolicyAttributeTypeDescriptions": {
755
- "base": null,
756
- "refs": {
757
- "PolicyTypeDescription$PolicyAttributeTypeDescriptions": "<p>The description of the policy attributes associated with the policies defined by Elastic Load Balancing.</p>"
758
- }
759
- },
760
- "PolicyAttributes": {
761
- "base": null,
762
- "refs": {
763
- "CreateLoadBalancerPolicyInput$PolicyAttributes": "<p>The attributes for the policy.</p>"
764
- }
765
- },
766
- "PolicyDescription": {
767
- "base": "<p>Information about a policy.</p>",
768
- "refs": {
769
- "PolicyDescriptions$member": null
770
- }
771
- },
772
- "PolicyDescriptions": {
773
- "base": null,
774
- "refs": {
775
- "DescribeLoadBalancerPoliciesOutput$PolicyDescriptions": "<p>Information about the policies.</p>"
776
- }
777
- },
778
- "PolicyName": {
779
- "base": null,
780
- "refs": {
781
- "AppCookieStickinessPolicy$PolicyName": "<p>The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer.</p>",
782
- "CreateAppCookieStickinessPolicyInput$PolicyName": "<p>The name of the policy being created. This name must be unique within the set of policies for this load balancer.</p>",
783
- "CreateLBCookieStickinessPolicyInput$PolicyName": "<p>The name of the policy being created. This name must be unique within the set of policies for this load balancer.</p>",
784
- "CreateLoadBalancerPolicyInput$PolicyName": "<p>The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.</p>",
785
- "DeleteLoadBalancerPolicyInput$PolicyName": "<p>The name of the policy.</p>",
786
- "LBCookieStickinessPolicy$PolicyName": "<p>The name for the policy being created. The name must be unique within the set of policies for this load balancer.</p>",
787
- "PolicyDescription$PolicyName": "<p>The name of the policy.</p>",
788
- "PolicyNames$member": null
789
- }
790
- },
791
- "PolicyNames": {
792
- "base": null,
793
- "refs": {
794
- "BackendServerDescription$PolicyNames": "<p>The names of the policies enabled for the back-end server.</p>",
795
- "DescribeLoadBalancerPoliciesInput$PolicyNames": "<p>The names of the policies.</p>",
796
- "ListenerDescription$PolicyNames": "<p>The policies. If there are no policies enabled, the list is empty.</p>",
797
- "Policies$OtherPolicies": "<p>The policies other than the stickiness policies.</p>",
798
- "SetLoadBalancerPoliciesForBackendServerInput$PolicyNames": "<p>The names of the policies. If the list is empty, then all current polices are removed from the back-end server.</p>",
799
- "SetLoadBalancerPoliciesOfListenerInput$PolicyNames": "<p>The names of the policies. If the list is empty, the current policy is removed from the listener.</p>"
800
- }
801
- },
802
- "PolicyNotFoundException": {
803
- "base": "<p>One or more of the specified policies do not exist.</p>",
804
- "refs": {
805
- }
806
- },
807
- "PolicyTypeDescription": {
808
- "base": "<p>Information about a policy type.</p>",
809
- "refs": {
810
- "PolicyTypeDescriptions$member": null
811
- }
812
- },
813
- "PolicyTypeDescriptions": {
814
- "base": null,
815
- "refs": {
816
- "DescribeLoadBalancerPolicyTypesOutput$PolicyTypeDescriptions": "<p>Information about the policy types.</p>"
817
- }
818
- },
819
- "PolicyTypeName": {
820
- "base": null,
821
- "refs": {
822
- "CreateLoadBalancerPolicyInput$PolicyTypeName": "<p>The name of the base policy type. To get the list of policy types, use <a>DescribeLoadBalancerPolicyTypes</a>.</p>",
823
- "PolicyDescription$PolicyTypeName": "<p>The name of the policy type.</p>",
824
- "PolicyTypeDescription$PolicyTypeName": "<p>The name of the policy type.</p>",
825
- "PolicyTypeNames$member": null
826
- }
827
- },
828
- "PolicyTypeNames": {
829
- "base": null,
830
- "refs": {
831
- "DescribeLoadBalancerPolicyTypesInput$PolicyTypeNames": "<p>The names of the policy types. If no names are specified, describes all policy types defined by Elastic Load Balancing.</p>"
832
- }
833
- },
834
- "PolicyTypeNotFoundException": {
835
- "base": "<p>One or more of the specified policy types do not exist.</p>",
836
- "refs": {
837
- }
838
- },
839
- "Ports": {
840
- "base": null,
841
- "refs": {
842
- "DeleteLoadBalancerListenerInput$LoadBalancerPorts": "<p>The client port numbers of the listeners.</p>"
843
- }
844
- },
845
- "Protocol": {
846
- "base": null,
847
- "refs": {
848
- "Listener$Protocol": "<p>The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL.</p>",
849
- "Listener$InstanceProtocol": "<p>The protocol to use for routing traffic to back-end instances: HTTP, HTTPS, TCP, or SSL.</p> <p>If the front-end protocol is HTTP, HTTPS, TCP, or SSL, <code>InstanceProtocol</code> must be at the same protocol.</p> <p>If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure, (HTTPS or SSL), the listener's <code>InstanceProtocol</code> must also be secure.</p> <p>If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP, the listener's <code>InstanceProtocol</code> must be HTTP or TCP.</p>"
850
- }
851
- },
852
- "ReasonCode": {
853
- "base": null,
854
- "refs": {
855
- "InstanceState$ReasonCode": "<p>Information about the cause of <code>OutOfService</code> instances. Specifically, whether the cause is Elastic Load Balancing or the instance.</p> <p>Valid values: <code>ELB</code> | <code>Instance</code> | <code>N/A</code></p>"
856
- }
857
- },
858
- "RegisterEndPointsInput": {
859
- "base": null,
860
- "refs": {
861
- }
862
- },
863
- "RegisterEndPointsOutput": {
864
- "base": null,
865
- "refs": {
866
- }
867
- },
868
- "RemoveAvailabilityZonesInput": {
869
- "base": null,
870
- "refs": {
871
- }
872
- },
873
- "RemoveAvailabilityZonesOutput": {
874
- "base": null,
875
- "refs": {
876
- }
877
- },
878
- "RemoveTagsInput": {
879
- "base": null,
880
- "refs": {
881
- }
882
- },
883
- "RemoveTagsOutput": {
884
- "base": null,
885
- "refs": {
886
- }
887
- },
888
- "S3BucketName": {
889
- "base": null,
890
- "refs": {
891
- "AccessLog$S3BucketName": "<p>The name of the Amazon S3 bucket where the access logs are stored.</p>"
892
- }
893
- },
894
- "SSLCertificateId": {
895
- "base": null,
896
- "refs": {
897
- "Listener$SSLCertificateId": "<p>The Amazon Resource Name (ARN) of the server certificate.</p>",
898
- "SetLoadBalancerListenerSSLCertificateInput$SSLCertificateId": "<p>The Amazon Resource Name (ARN) of the SSL certificate.</p>"
899
- }
900
- },
901
- "SecurityGroupId": {
902
- "base": null,
903
- "refs": {
904
- "SecurityGroups$member": null
905
- }
906
- },
907
- "SecurityGroupName": {
908
- "base": null,
909
- "refs": {
910
- "SourceSecurityGroup$GroupName": "<p>The name of the security group.</p>"
911
- }
912
- },
913
- "SecurityGroupOwnerAlias": {
914
- "base": null,
915
- "refs": {
916
- "SourceSecurityGroup$OwnerAlias": "<p>The owner of the security group.</p>"
917
- }
918
- },
919
- "SecurityGroups": {
920
- "base": null,
921
- "refs": {
922
- "ApplySecurityGroupsToLoadBalancerInput$SecurityGroups": "<p>The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.</p>",
923
- "ApplySecurityGroupsToLoadBalancerOutput$SecurityGroups": "<p>The IDs of the security groups associated with the load balancer.</p>",
924
- "CreateAccessPointInput$SecurityGroups": "<p>The IDs of the security groups to assign to the load balancer.</p>",
925
- "LoadBalancerDescription$SecurityGroups": "<p>The security groups for the load balancer. Valid only for load balancers in a VPC.</p>"
926
- }
927
- },
928
- "SetLoadBalancerListenerSSLCertificateInput": {
929
- "base": null,
930
- "refs": {
931
- }
932
- },
933
- "SetLoadBalancerListenerSSLCertificateOutput": {
934
- "base": null,
935
- "refs": {
936
- }
937
- },
938
- "SetLoadBalancerPoliciesForBackendServerInput": {
939
- "base": null,
940
- "refs": {
941
- }
942
- },
943
- "SetLoadBalancerPoliciesForBackendServerOutput": {
944
- "base": null,
945
- "refs": {
946
- }
947
- },
948
- "SetLoadBalancerPoliciesOfListenerInput": {
949
- "base": null,
950
- "refs": {
951
- }
952
- },
953
- "SetLoadBalancerPoliciesOfListenerOutput": {
954
- "base": null,
955
- "refs": {
956
- }
957
- },
958
- "SourceSecurityGroup": {
959
- "base": "<p>Information about a source security group.</p>",
960
- "refs": {
961
- "LoadBalancerDescription$SourceSecurityGroup": "<p>The security group that you can use as part of your inbound rules for your load balancer's back-end application instances. To only allow traffic from load balancers, add a security group rule to your back end instance that specifies this source security group as the inbound source.</p>"
962
- }
963
- },
964
- "State": {
965
- "base": null,
966
- "refs": {
967
- "InstanceState$State": "<p>The current state of the instance.</p> <p>Valid values: <code>InService</code> | <code>OutOfService</code> | <code>Unknown</code></p>"
968
- }
969
- },
970
- "StringVal": {
971
- "base": null,
972
- "refs": {
973
- "AdditionalAttribute$Key": "<p>This parameter is reserved.</p>",
974
- "AdditionalAttribute$Value": "<p>This parameter is reserved.</p>"
975
- }
976
- },
977
- "SubnetId": {
978
- "base": null,
979
- "refs": {
980
- "Subnets$member": null
981
- }
982
- },
983
- "SubnetNotFoundException": {
984
- "base": "<p>One or more of the specified subnets do not exist.</p>",
985
- "refs": {
986
- }
987
- },
988
- "Subnets": {
989
- "base": null,
990
- "refs": {
991
- "AttachLoadBalancerToSubnetsInput$Subnets": "<p>The IDs of the subnets to add for the load balancer. You can add only one subnet per Availability Zone.</p>",
992
- "AttachLoadBalancerToSubnetsOutput$Subnets": "<p>The IDs of the subnets attached to the load balancer.</p>",
993
- "CreateAccessPointInput$Subnets": "<p>The IDs of the subnets in your VPC to attach to the load balancer. Specify one subnet per Availability Zone specified in <code>AvailabilityZones</code>.</p>",
994
- "DetachLoadBalancerFromSubnetsInput$Subnets": "<p>The IDs of the subnets.</p>",
995
- "DetachLoadBalancerFromSubnetsOutput$Subnets": "<p>The IDs of the remaining subnets for the load balancer.</p>",
996
- "LoadBalancerDescription$Subnets": "<p>The IDs of the subnets for the load balancer.</p>"
997
- }
998
- },
999
- "Tag": {
1000
- "base": "<p>Information about a tag.</p>",
1001
- "refs": {
1002
- "TagList$member": null
1003
- }
1004
- },
1005
- "TagDescription": {
1006
- "base": "<p>The tags associated with a load balancer.</p>",
1007
- "refs": {
1008
- "TagDescriptions$member": null
1009
- }
1010
- },
1011
- "TagDescriptions": {
1012
- "base": null,
1013
- "refs": {
1014
- "DescribeTagsOutput$TagDescriptions": "<p>Information about the tags.</p>"
1015
- }
1016
- },
1017
- "TagKey": {
1018
- "base": null,
1019
- "refs": {
1020
- "Tag$Key": "<p>The key of the tag.</p>",
1021
- "TagKeyOnly$Key": "<p>The name of the key.</p>"
1022
- }
1023
- },
1024
- "TagKeyList": {
1025
- "base": null,
1026
- "refs": {
1027
- "RemoveTagsInput$Tags": "<p>The list of tag keys to remove.</p>"
1028
- }
1029
- },
1030
- "TagKeyOnly": {
1031
- "base": "<p>The key of a tag.</p>",
1032
- "refs": {
1033
- "TagKeyList$member": null
1034
- }
1035
- },
1036
- "TagList": {
1037
- "base": null,
1038
- "refs": {
1039
- "AddTagsInput$Tags": "<p>The tags.</p>",
1040
- "CreateAccessPointInput$Tags": "<p>A list of tags to assign to the load balancer.</p> <p>For more information about tagging your load balancer, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#tagging-elb\">Tagging</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>",
1041
- "TagDescription$Tags": "<p>The tags.</p>"
1042
- }
1043
- },
1044
- "TagValue": {
1045
- "base": null,
1046
- "refs": {
1047
- "Tag$Value": "<p>The value of the tag.</p>"
1048
- }
1049
- },
1050
- "TooManyAccessPointsException": {
1051
- "base": "<p>The quota for the number of load balancers has been reached.</p>",
1052
- "refs": {
1053
- }
1054
- },
1055
- "TooManyPoliciesException": {
1056
- "base": "<p>The quota for the number of policies for this load balancer has been reached.</p>",
1057
- "refs": {
1058
- }
1059
- },
1060
- "TooManyTagsException": {
1061
- "base": "<p>The quota for the number of tags that can be assigned to a load balancer has been reached.</p>",
1062
- "refs": {
1063
- }
1064
- },
1065
- "UnhealthyThreshold": {
1066
- "base": null,
1067
- "refs": {
1068
- "HealthCheck$UnhealthyThreshold": "<p>The number of consecutive health check failures required before moving the instance to the <code>Unhealthy</code> state.</p>"
1069
- }
1070
- },
1071
- "VPCId": {
1072
- "base": null,
1073
- "refs": {
1074
- "LoadBalancerDescription$VPCId": "<p>The ID of the VPC for the load balancer.</p>"
1075
- }
1076
- }
1077
- }
1078
- }