aws-sdk-core 2.0.0.rc1 → 2.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/README.md +6 -3
  4. data/Rakefile +2 -0
  5. data/apis/AutoScaling-2011-01-01.json +1 -0
  6. data/apis/CloudFormation-2010-05-15.json +75 -0
  7. data/apis/CloudFront-2012-05-05.json +1 -0
  8. data/apis/CloudFront-2013-05-12.json +1 -0
  9. data/apis/CloudFront-2013-08-26.json +1 -0
  10. data/apis/CloudSearch-2011-02-01.json +1 -0
  11. data/apis/CloudWatch-2010-08-01.json +1 -0
  12. data/apis/DataPipeline-2012-10-29.json +1 -0
  13. data/apis/DirectConnect-2012-10-25.json +1 -0
  14. data/apis/DynamoDB-2011-12-05.json +1 -0
  15. data/apis/DynamoDB-2012-08-10.json +1 -0
  16. data/apis/EC2-2013-06-15.json +1 -0
  17. data/apis/EC2-2013-10-01.json +1 -0
  18. data/apis/EMR-2009-03-31.json +1 -0
  19. data/apis/ElastiCache-2012-11-15.json +1 -0
  20. data/apis/ElastiCache-2013-06-15.json +1 -0
  21. data/apis/ElasticBeanstalk-2010-12-01.json +1 -0
  22. data/apis/ElasticLoadBalancing-2012-06-01.json +73 -0
  23. data/apis/ElasticTranscoder-2012-09-25.json +231 -0
  24. data/apis/Glacier-2012-06-01.json +2 -0
  25. data/apis/IAM-2010-05-08.json +1 -0
  26. data/apis/ImportExport-2010-06-01.json +1 -0
  27. data/apis/OpsWorks-2013-02-18.json +1 -0
  28. data/apis/RDS-2013-01-10.json +1 -0
  29. data/apis/RDS-2013-02-12.json +1 -0
  30. data/apis/RDS-2013-05-15.json +1 -0
  31. data/apis/Redshift-2012-12-01.json +1 -0
  32. data/apis/Route53-2012-12-12.json +1 -0
  33. data/apis/S3-2006-03-01.json +5 -0
  34. data/apis/SDB-2009-04-15.json +1 -0
  35. data/apis/SES-2010-12-01.json +1 -0
  36. data/apis/SNS-2010-03-31.json +1 -0
  37. data/apis/SQS-2012-11-05.json +1 -0
  38. data/apis/STS-2011-06-15.json +1 -0
  39. data/apis/SWF-2012-01-25.json +1 -0
  40. data/apis/StorageGateway-2012-06-30.json +1 -0
  41. data/apis/StorageGateway-2013-06-30.json +2018 -0
  42. data/apis/Support-2013-04-15.json +1 -0
  43. data/apis/source/cloudformation-2010-05-15.json +118 -12
  44. data/apis/source/elasticloadbalancing-2012-06-01.json +347 -220
  45. data/apis/source/elastictranscoder-2012-09-25.json +315 -5
  46. data/apis/source/s3-2006-03-01.json +3 -0
  47. data/apis/source/storagegateway-2013-06-30.json +12560 -0
  48. data/apis/source/storagegateway-2013-06-30.paginators.json +28 -0
  49. data/doc-src/plugins/apis.rb +44 -1
  50. data/doc-src/templates/default/fulldoc/html/setup.rb +1 -1
  51. data/features/common/step_definitions.rb +3 -5
  52. data/features/env.rb +2 -0
  53. data/features/glacier/client.feature +8 -0
  54. data/features/glacier/step_definitions.rb +7 -7
  55. data/features/s3/step_definitions.rb +2 -3
  56. data/lib/aws.rb +75 -69
  57. data/lib/aws/api/service_translators/glacier.rb +1 -0
  58. data/lib/aws/api/translator.rb +13 -8
  59. data/lib/aws/credentials.rb +5 -5
  60. data/lib/aws/instance_profile_credentials.rb +113 -0
  61. data/lib/aws/plugins/credentials.rb +2 -1
  62. data/lib/aws/plugins/glacier_account_id.rb +11 -0
  63. data/lib/aws/plugins/glacier_checksums.rb +7 -3
  64. data/lib/aws/plugins/instance_profile_credentials.rb +14 -0
  65. data/lib/aws/plugins/s3_bucket_dns.rb +17 -14
  66. data/lib/aws/plugins/s3_md5s.rb +3 -3
  67. data/lib/aws/service.rb +10 -9
  68. data/lib/aws/signers/s3.rb +2 -2
  69. data/lib/aws/signers/v2.rb +1 -1
  70. data/lib/aws/signers/v4.rb +2 -2
  71. data/lib/aws/version.rb +1 -1
  72. data/lib/aws/xml/serializer.rb +1 -1
  73. data/spec/aws/instance_profile_credentials_spec.rb +94 -0
  74. data/spec/aws/operations_spec.rb +1 -1
  75. data/spec/aws/plugins/credentials_spec.rb +2 -2
  76. data/spec/fixtures/operations/glacier/account_id_param.yml +13 -0
  77. data/spec/fixtures/operations/glacier/custom_account_id.yml +11 -0
  78. data/spec/fixtures/operations/glacier/default_account_id.yml +10 -0
  79. data/spec/fixtures/operations/s3/content_type_header.yml +12 -0
  80. data/spec/fixtures/operations/s3/md5_checksum_disabled.yml +1 -1
  81. data/tasks/apis.rake +2 -2
  82. data/tasks/docs.rake +2 -1
  83. data/tasks/handlers.rake +30 -0
  84. data/vendor/seahorse/lib/seahorse/client.rb +1 -0
  85. data/vendor/seahorse/lib/seahorse/client/base.rb +0 -18
  86. data/vendor/seahorse/lib/seahorse/client/block_io.rb +0 -7
  87. data/vendor/seahorse/lib/seahorse/client/configuration.rb +57 -37
  88. data/vendor/seahorse/lib/seahorse/client/handler_list.rb +115 -78
  89. data/vendor/seahorse/lib/seahorse/client/http/endpoint.rb +19 -15
  90. data/vendor/seahorse/lib/seahorse/client/http/request.rb +0 -15
  91. data/vendor/seahorse/lib/seahorse/client/logging/formatter.rb +0 -7
  92. data/vendor/seahorse/lib/seahorse/client/managed_file.rb +14 -0
  93. data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +1 -3
  94. data/vendor/seahorse/lib/seahorse/client/plugins/content_length.rb +1 -1
  95. data/vendor/seahorse/lib/seahorse/client/plugins/endpoint.rb +81 -10
  96. data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +1 -71
  97. data/vendor/seahorse/lib/seahorse/client/request.rb +26 -3
  98. data/vendor/seahorse/spec/seahorse/client/base_spec.rb +1 -5
  99. data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +1 -10
  100. data/vendor/seahorse/spec/seahorse/client/handler_list_spec.rb +10 -10
  101. data/vendor/seahorse/spec/seahorse/client/http/endpoint_spec.rb +46 -14
  102. data/vendor/seahorse/spec/seahorse/client/http/request_spec.rb +1 -42
  103. data/vendor/seahorse/spec/seahorse/client/logging/formatter_spec.rb +1 -6
  104. data/vendor/seahorse/spec/seahorse/client/logging/handler_spec.rb +1 -1
  105. data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +5 -4
  106. data/vendor/seahorse/spec/seahorse/client/param_converter_spec.rb +1 -0
  107. data/vendor/seahorse/spec/seahorse/client/plugins/{restful_bindings/uri_path_builder_spec.rb → endpoint/request_uri_builder_spec.rb} +3 -3
  108. data/vendor/seahorse/spec/seahorse/client/plugins/endpoint_spec.rb +1 -11
  109. data/vendor/seahorse/spec/seahorse/client/request_spec.rb +63 -13
  110. metadata +21 -3
@@ -18,6 +18,7 @@
18
18
  "Aws::Plugins::RetryErrors",
19
19
  "Aws::Plugins::GlobalConfiguration",
20
20
  "Aws::Plugins::RegionalEndpoint",
21
+ "Aws::Plugins::InstanceProfileCredentials",
21
22
  "Aws::Plugins::Credentials",
22
23
  "Aws::Plugins::JsonProtocol",
23
24
  "Aws::Plugins::JsonRpcHeaders",
@@ -45,7 +45,6 @@
45
45
  "shape_name": "TemplateBody",
46
46
  "type": "string",
47
47
  "min_length": 1,
48
- "max_length": 51200,
49
48
  "documentation": "\n <p>Structure containing the template body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User\n Guide</a>.)</p>\n <p>Conditional: You must pass <code>TemplateBody</code> or <code>TemplateURL</code>. If both are passed, only\n <code>TemplateBody</code> is used.</p>\n "
50
49
  },
51
50
  "TemplateURL": {
@@ -122,6 +121,20 @@
122
121
  ],
123
122
  "documentation": "\n <p>Determines what action will be taken if stack creation fails. This must be one of: DO_NOTHING, ROLLBACK, or\n DELETE. You can specify either <code>OnFailure</code> or <code>DisableRollback</code>, but not both.</p>\n <p>Default: <code>ROLLBACK</code></p>\n "
124
123
  },
124
+ "StackPolicyBody": {
125
+ "shape_name": "StackPolicyBody",
126
+ "type": "string",
127
+ "min_length": 1,
128
+ "max_length": 16384,
129
+ "documentation": "\n <p>Structure containing the stack policy body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\">\n AWS CloudFormation User Guide</a>.)</p>\n <p>If you pass <code>StackPolicyBody</code> and <code>StackPolicyURL</code>, only\n <code>StackPolicyBody</code> is used.</p>\n "
130
+ },
131
+ "StackPolicyURL": {
132
+ "shape_name": "StackPolicyURL",
133
+ "type": "string",
134
+ "min_length": 1,
135
+ "max_length": 1350,
136
+ "documentation": "\n <p>Location of a file containing the stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. If you pass <code>StackPolicyBody</code> and <code>StackPolicyURL</code>, only\n <code>StackPolicyBody</code> is used.</p>\n "
137
+ },
125
138
  "Tags": {
126
139
  "shape_name": "Tags",
127
140
  "type": "list",
@@ -142,7 +155,7 @@
142
155
  },
143
156
  "documentation": "\n <p>The Tag type is used by <code>CreateStack</code> in the <code>Tags</code> parameter. It allows you to specify a\n key/value pair that can be used to store information related to cost allocation for an AWS CloudFormation\n stack.</p>\n "
144
157
  },
145
- "documentation": "\n <p>A set of user-defined <code>Tags</code> to associate with this stack, represented by key/value pairs. Tags\n defined for the stack are propogated to EC2 resources that are created as part of the stack. A maximum number of\n 10 tags can be specified.</p>\n "
158
+ "documentation": "\n <p>A set of user-defined <code>Tags</code> to associate with this stack, represented by key/value pairs. Tags\n defined for the stack are propagated to EC2 resources that are created as part of the stack. A maximum number of\n 10 tags can be specified.</p>\n "
146
159
  }
147
160
  },
148
161
  "documentation": "\n <p>The input for <a>CreateStack</a> action.</p>\n "
@@ -759,7 +772,6 @@
759
772
  "shape_name": "TemplateBody",
760
773
  "type": "string",
761
774
  "min_length": 1,
762
- "max_length": 51200,
763
775
  "documentation": "\n <p>Structure containing the template body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User\n Guide</a>.)</p>\n <p>Conditional: You must pass <code>TemplateBody</code> or <code>TemplateURL</code>. If both are passed, only\n <code>TemplateBody</code> is used.</p>\n "
764
776
  },
765
777
  "TemplateURL": {
@@ -809,7 +821,41 @@
809
821
  "errors": [
810
822
 
811
823
  ],
812
- "documentation": "\n <p>Returns the estimated monthly cost of a template. The return value is an AWS Simple Monthly Calculator URL with\n a query string that describes the resources required to run the template.</p>\n\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=EstimateTemplateCost\n &TemplateURL= https://s3.amazonaws.com/cloudformation-samples-us-east-1/Drupal_Simple.template\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2011-12-04T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<EstimateTemplateCostResult>\n <Url>http://calculator.s3.amazonaws.com/calc5.html?key=cf-2e351785-e821-450c-9d58-625e1e1ebfb6</Url>\n</EstimateTemplateCostResult></queryresponse>\n </examples>\n "
824
+ "documentation": "\n <p>Returns the estimated monthly cost of a template. The return value is an AWS Simple Monthly Calculator URL with\n a query string that describes the resources required to run the template.</p>\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=EstimateTemplateCost\n &TemplateURL= https://s3.amazonaws.com/cloudformation-samples-us-east-1/Drupal_Simple.template\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2011-12-04T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<EstimateTemplateCostResult>\n <Url>http://calculator.s3.amazonaws.com/calc5.html?key=cf-2e351785-e821-450c-9d58-625e1e1ebfb6</Url>\n</EstimateTemplateCostResult></queryresponse>\n </examples>\n "
825
+ },
826
+ "GetStackPolicy": {
827
+ "name": "GetStackPolicy",
828
+ "input": {
829
+ "shape_name": "GetStackPolicyInput",
830
+ "type": "structure",
831
+ "members": {
832
+ "StackName": {
833
+ "shape_name": "StackName",
834
+ "type": "string",
835
+ "documentation": "\n <p>The name or stack ID that is associated with the stack whose policy you want to get.</p>\n ",
836
+ "required": true
837
+ }
838
+ },
839
+ "documentation": "\n <p>The input for the <a>GetStackPolicy</a> action.</p>\n "
840
+ },
841
+ "output": {
842
+ "shape_name": "GetStackPolicyOutput",
843
+ "type": "structure",
844
+ "members": {
845
+ "StackPolicyBody": {
846
+ "shape_name": "StackPolicyBody",
847
+ "type": "string",
848
+ "min_length": 1,
849
+ "max_length": 16384,
850
+ "documentation": "\n <p>Structure containing the stack policy body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\">\n AWS CloudFormation User Guide</a>.)</p>\n "
851
+ }
852
+ },
853
+ "documentation": "\n <p>The output for the <a>GetStackPolicy</a> action.</p>\n "
854
+ },
855
+ "errors": [
856
+
857
+ ],
858
+ "documentation": "\n <p>Returns the stack policy for a specified stack. If a stack doesn't have a policy, a null value is returned.</p>\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=GetStackPolicy\n &StackName=MyStack\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n <queryresponse>\n<GetTemplateResult>\n <StackPolicyBody>\"{\n \"Statement\" : [\n {\n \"Effect\" : \"Deny\",\n \"Action\" : \"Update*\",\n \"Resource\" : \"LogicalResourceId/ProductionDatabase\"\n },\n {\n \"Effect\" : \"Allow\",\n \"Action\" : \"Update:*\",\n \"Resource\" : \"*\"\n }\n ]\n }</StackPolicyBody>\n</GetTemplateResult></queryresponse>\n </examples>\n "
813
859
  },
814
860
  "GetTemplate": {
815
861
  "name": "GetTemplate",
@@ -820,7 +866,7 @@
820
866
  "StackName": {
821
867
  "shape_name": "StackName",
822
868
  "type": "string",
823
- "documentation": "\n <p>The name or the unique identifier associated with the stack.</p>\n ",
869
+ "documentation": "\n <p>The name or the unique identifier associated with the stack, which are not always interchangeable:</p>\n <ul>\n <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li>\n <li>Deleted stacks: You must specify the unique stack ID.</li>\n </ul>\n <p>Default: There is no default value.</p>\n ",
824
870
  "required": true
825
871
  }
826
872
  },
@@ -834,7 +880,6 @@
834
880
  "shape_name": "TemplateBody",
835
881
  "type": "string",
836
882
  "min_length": 1,
837
- "max_length": 51200,
838
883
  "documentation": "\n <p>Structure containing the template body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/\">AWS CloudFormation User\n Guide</a>.)</p>\n "
839
884
  }
840
885
  },
@@ -843,7 +888,7 @@
843
888
  "errors": [
844
889
 
845
890
  ],
846
- "documentation": "\n <p>Returns the template body for a specified stack name. You can get the template for running or deleted\n stacks.</p>\n <p>For deleted stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted.</p>\n <note> If the template does not exist, a <code>ValidationError</code> is returned. </note>\n\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=GetTemplate\n &StackName=MyStack\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<GetTemplateResult>\n <TemplateBody>\"{\n \"AWSTemplateFormatVersion\" : \"2010-09-09\",\n \"Description\" : \"Simple example\",\n \"Resources\" : {\n \"MySQS\" : {\n \"Type\" : \"AWS::SQS::Queue\",\n \"Properties\" : {\n }\n }\n }\n}</TemplateBody>\n</GetTemplateResult></queryresponse>\n </examples>\n "
891
+ "documentation": "\n <p>Returns the template body for a specified stack. You can get the template for running or deleted\n stacks.</p>\n <p>For deleted stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted.</p>\n <note> If the template does not exist, a <code>ValidationError</code> is returned. </note>\n\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=GetTemplate\n &StackName=MyStack\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<GetTemplateResult>\n <TemplateBody>\"{\n \"AWSTemplateFormatVersion\" : \"2010-09-09\",\n \"Description\" : \"Simple example\",\n \"Resources\" : {\n \"MySQS\" : {\n \"Type\" : \"AWS::SQS::Queue\",\n \"Properties\" : {\n }\n }\n }\n}</TemplateBody>\n</GetTemplateResult></queryresponse>\n </examples>\n "
847
892
  },
848
893
  "ListStackResources": {
849
894
  "name": "ListStackResources",
@@ -854,7 +899,7 @@
854
899
  "StackName": {
855
900
  "shape_name": "StackName",
856
901
  "type": "string",
857
- "documentation": "\n <p>The name or the unique identifier associated with the stack.</p>\n <p>Default: There is no default value.</p>\n ",
902
+ "documentation": "\n <p>The name or the unique identifier associated with the stack, which are not always interchangeable:</p>\n <ul>\n <li>Running stacks: You can specify either the stack's name or its unique stack ID.</li>\n <li>Deleted stacks: You must specify the unique stack ID.</li>\n </ul>\n <p>Default: There is no default value.</p>\n ",
858
903
  "required": true
859
904
  },
860
905
  "NextToken": {
@@ -1079,6 +1124,41 @@
1079
1124
  ],
1080
1125
  "documentation": "\n <p>Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary\n information for stacks that have been deleted is kept for 90 days after the stack is deleted. If no\n StackStatusFilter is specified, summary information for all stacks is returned (including existing stacks and\n stacks that have been deleted).</p>\n <examples>\n\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=ListStacks\n &StackStatusFilter.member.1=CREATE_IN_PROGRESS\n &StackStatusFilter.member.2=DELETE_COMPLETE\n &Version=2010-05-15\n &SignatureVersion=2\n &SignatureMethod=HmacSHA256\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n <queryresponse><ListStacksResponse>\n <ListStacksResult>\n <StackSummaries>\n <member>\n <StackId>\n arn:aws:cloudformation:us-east-1:1234567:stack/TestCreate1/aaaaa\n </StackId>\n <StackStatus>CREATE_IN_PROGRESS</StackStatus>\n <StackName>vpc1</StackName>\n <CreationTime>2011-05-23T15:47:44Z</CreationTime>\n <TemplateDescription>\n Creates one EC2 instance and a load balancer.\n </TemplateDescription>\n </member>\n <member>\n <StackId>\n arn:aws:cloudformation:us-east-1:1234567:stack/TestDelete2/bbbbb\n </StackId>\n <StackStatus>DELETE_COMPLETE</StackStatus>\n <DeletionTime>2011-03-10T16:20:51Z</DeletionTime>\n <StackName>WP1</StackName>\n <CreationTime>2011-03-05T19:57:58Z</CreationTime>\n <TemplateDescription>\n A simple basic Cloudformation Template.\n </TemplateDescription>\n </member>\n </StackSummaries>\n </ListStacksResult>\n</ListStacksResponse></queryresponse>\n </examples>\n "
1081
1126
  },
1127
+ "SetStackPolicy": {
1128
+ "name": "SetStackPolicy",
1129
+ "input": {
1130
+ "shape_name": "SetStackPolicyInput",
1131
+ "type": "structure",
1132
+ "members": {
1133
+ "StackName": {
1134
+ "shape_name": "StackName",
1135
+ "type": "string",
1136
+ "documentation": "\n <p>The name or stack ID that you want to associate a policy with.</p>\n ",
1137
+ "required": true
1138
+ },
1139
+ "StackPolicyBody": {
1140
+ "shape_name": "StackPolicyBody",
1141
+ "type": "string",
1142
+ "min_length": 1,
1143
+ "max_length": 16384,
1144
+ "documentation": "\n <p>Structure containing the stack policy body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html\">\n AWS CloudFormation User Guide</a>.)</p>\n <p>You must pass <code>StackPolicyBody</code> or <code>StackPolicyURL</code>. If both are passed, only\n <code>StackPolicyBody</code> is used.</p>\n "
1145
+ },
1146
+ "StackPolicyURL": {
1147
+ "shape_name": "StackPolicyURL",
1148
+ "type": "string",
1149
+ "min_length": 1,
1150
+ "max_length": 1350,
1151
+ "documentation": "\n <p>Location of a file containing the stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. You must pass <code>StackPolicyBody</code> or <code>StackPolicyURL</code>. If both are passed, only\n <code>StackPolicyBody</code> is used.</p>\n "
1152
+ }
1153
+ },
1154
+ "documentation": "\n <p>The input for the <a>SetStackPolicy</a> action.</p>\n "
1155
+ },
1156
+ "output": null,
1157
+ "errors": [
1158
+
1159
+ ],
1160
+ "documentation": "\n <p>Sets a stack policy for a specified stack.</p>\n "
1161
+ },
1082
1162
  "UpdateStack": {
1083
1163
  "name": "UpdateStack",
1084
1164
  "input": {
@@ -1095,7 +1175,6 @@
1095
1175
  "shape_name": "TemplateBody",
1096
1176
  "type": "string",
1097
1177
  "min_length": 1,
1098
- "max_length": 51200,
1099
1178
  "documentation": "\n <p>Structure containing the template body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User\n Guide</a>.)</p>\n <p>Conditional: You must pass <code>TemplateBody</code> or <code>TemplateURL</code>. If both are passed, only\n <code>TemplateBody</code> is used.</p>\n "
1100
1179
  },
1101
1180
  "TemplateURL": {
@@ -1105,6 +1184,20 @@
1105
1184
  "max_length": 1024,
1106
1185
  "documentation": "\n <p>Location of file containing the template body. The URL must point to a template located in an S3 bucket in the\n same region as the stack. For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User\n Guide</a>.</p>\n <p>Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only\n <code>TemplateBody</code> is used.</p>\n "
1107
1186
  },
1187
+ "StackPolicyDuringUpdateBody": {
1188
+ "shape_name": "StackPolicyDuringUpdateBody",
1189
+ "type": "string",
1190
+ "min_length": 1,
1191
+ "max_length": 16384,
1192
+ "documentation": "\n <p>Structure containing the temporary overriding stack policy body. If you pass <code>StackPolicyDuringUpdateBody</code> and <code>StackPolicyDuringUpdateURL</code>, only\n <code>StackPolicyDuringUpdateBody</code> is used.</p>\n <p>If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that associated with the stack will be used.</p>\n "
1193
+ },
1194
+ "StackPolicyDuringUpdateURL": {
1195
+ "shape_name": "StackPolicyDuringUpdateURL",
1196
+ "type": "string",
1197
+ "min_length": 1,
1198
+ "max_length": 1350,
1199
+ "documentation": "\n <p>Location of a file containing the temporary overriding stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. If you pass <code>StackPolicyDuringUpdateBody</code> and <code>StackPolicyDuringUpdateURL</code>, only\n <code>StackPolicyDuringUpdateBody</code> is used.</p>\n <p>If you want to update protected resources, specify a temporary overriding stack policy during this update. If you do not specify a stack policy, the current policy that is associated with the stack will be used.</p>\n "
1200
+ },
1108
1201
  "Parameters": {
1109
1202
  "shape_name": "Parameters",
1110
1203
  "type": "list",
@@ -1139,6 +1232,20 @@
1139
1232
  "documentation": null
1140
1233
  },
1141
1234
  "documentation": "\n <p>The list of capabilities that you want to allow in the stack. If your stack contains IAM resources, you must\n specify the CAPABILITY_IAM value for this parameter; otherwise, this action returns an InsufficientCapabilities\n error. IAM resources are the following: <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html\">AWS::IAM::AccessKey</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html\">AWS::IAM::Group</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html\">AWS::IAM::Policy</a>, <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html\">AWS::IAM::User</a>, and <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html\">AWS::IAM::UserToGroupAddition</a>.</p>\n "
1235
+ },
1236
+ "StackPolicyBody": {
1237
+ "shape_name": "StackPolicyBody",
1238
+ "type": "string",
1239
+ "min_length": 1,
1240
+ "max_length": 16384,
1241
+ "documentation": "\n <p>Structure containing the updated stack policy body. If you pass <code>StackPolicyBody</code> and <code>StackPolicyURL</code>, only\n <code>StackPolicyBody</code> is used.</p>\n <p>If you want to update a stack policy during a stack update, specify an updated stack policy. For example, you can include an updated stack policy to protect a new resource created in the stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.</p>\n "
1242
+ },
1243
+ "StackPolicyURL": {
1244
+ "shape_name": "StackPolicyURL",
1245
+ "type": "string",
1246
+ "min_length": 1,
1247
+ "max_length": 1350,
1248
+ "documentation": "\n <p>Location of a file containing the updated stack policy. The URL must point to a policy (max size: 16KB) located in an S3 bucket in the same region as the stack. If you pass <code>StackPolicyBody</code> and <code>StackPolicyURL</code>, only\n <code>StackPolicyBody</code> is used.</p>\n <p>If you want to update a stack policy during a stack update, specify an updated stack policy. For example, you can include an updated stack policy to protect a new resource created in the stack update. If you do not specify a stack policy, the current policy that is associated with the stack is unchanged.</p>\n "
1142
1249
  }
1143
1250
  },
1144
1251
  "documentation": "\n <p>The input for <a>UpdateStack</a> action.</p>\n "
@@ -1164,7 +1271,7 @@
1164
1271
  "documentation": "\n <p>The template contains resources with capabilities that were not specified in the Capabilities parameter.</p>\n "
1165
1272
  }
1166
1273
  ],
1167
- "documentation": "\n <p>Updates a stack as specified in the template. After the call completes successfully, the stack update starts.\n You can check the status of the stack via the <a>DescribeStacks</a> action.</p>\n <p>To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a> action.</p>\n <p>Tags that were associated with this stack during creation time will still be associated with the stack after an\n <code>UpdateStack</code> operation.</p>\n <p>For more information about creating an update template, updating a stack, and monitoring the progress of the\n update, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html\">Updating a Stack</a>.</p>\n\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=UpdateStack\n &StackName=MyStack\n &TemplateBody=[Template Document]\n &Parameters.member.1.ParameterKey=AvailabilityZone\n &Parameters.member.1.ParameterValue=us-east-1a\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<UpdateStackResult>\n <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId>\n</UpdateStackResult></queryresponse>\n </examples>\n "
1274
+ "documentation": "\n <p>Updates a stack as specified in the template. After the call completes successfully, the stack update starts.\n You can check the status of the stack via the <a>DescribeStacks</a> action.</p>\n <p></p>\n <p><b>Note: </b>You cannot update <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html\">AWS::S3::Bucket</a>\n resources, for example, to add or modify tags.</p>\n <p></p>\n <p>To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a> action.</p>\n <p>Tags that were associated with this stack during creation time will still be associated with the stack after an\n <code>UpdateStack</code> operation.</p>\n <p>For more information about creating an update template, updating a stack, and monitoring the progress of the\n update, see <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html\">Updating a Stack</a>.</p>\n\n <examples>\n <queryrequest>\nhttps://cloudformation.us-east-1.amazonaws.com/\n ?Action=UpdateStack\n &StackName=MyStack\n &TemplateBody=[Template Document]\n &Parameters.member.1.ParameterKey=AvailabilityZone\n &Parameters.member.1.ParameterValue=us-east-1a\n &Version=2010-05-15\n &SignatureVersion=2\n &Timestamp=2010-07-27T22%3A26%3A28.000Z\n &AWSAccessKeyId=[AWS Access KeyID]\n &Signature=[Signature]</queryrequest>\n\n <queryresponse>\n<UpdateStackResult>\n <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId>\n</UpdateStackResult></queryresponse>\n </examples>\n "
1168
1275
  },
1169
1276
  "ValidateTemplate": {
1170
1277
  "name": "ValidateTemplate",
@@ -1176,7 +1283,6 @@
1176
1283
  "shape_name": "TemplateBody",
1177
1284
  "type": "string",
1178
1285
  "min_length": 1,
1179
- "max_length": 51200,
1180
1286
  "documentation": "\n <p>String containing the template body. (For more information, go to the <a href=\"http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide\">AWS CloudFormation User\n Guide</a>.)</p>\n <p>Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only\n <code>TemplateBody</code> is used.</p>\n "
1181
1287
  },
1182
1288
  "TemplateURL": {
@@ -1241,7 +1347,7 @@
1241
1347
  ],
1242
1348
  "documentation": null
1243
1349
  },
1244
- "documentation": "\n <p>The capabitilites found within the template. Currently, CAPABILITY_IAM is the only capability detected. If\n your template contains IAM resources, you must specify the CAPABILITY_IAM value for this parameter when you use\n the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template; otherwise, those actions return an\n InsufficientCapabilities error.</p>\n "
1350
+ "documentation": "\n <p>The capabilities found within the template. Currently, CAPABILITY_IAM is the only capability detected. If\n your template contains IAM resources, you must specify the CAPABILITY_IAM value for this parameter when you use\n the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template; otherwise, those actions return an\n InsufficientCapabilities error.</p>\n "
1245
1351
  },
1246
1352
  "CapabilitiesReason": {
1247
1353
  "shape_name": "CapabilitiesReason",
@@ -5,8 +5,7 @@
5
5
  "signature_version": "v4",
6
6
  "service_full_name": "Elastic Load Balancing",
7
7
  "endpoint_prefix": "elasticloadbalancing",
8
- "xmlnamespace": "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
9
- "documentation": "\n \t<fullname>Elastic Load Balancing</fullname>\n \n <p>\n Elastic Load Balancing is a cost-effective and easy\n to use web service to help you improve the availability and\n scalability of your application running on Amazon Elastic Cloud Compute (Amazon EC2). It makes it easy for\n you to distribute application loads between two or more\n EC2 instances. Elastic Load Balancing supports the growth in traffic of your application by enabling availability through redundancy.\n </p>\n \n <p>This guide provides detailed information about Elastic Load Balancing \n actions, data types, and parameters that can be used for sending a \n query request. Query requests are HTTP or HTTPS requests that use the \n HTTP verb GET or POST and a query parameter named Action or Operation. \n Action is used throughout this documentation, although Operation is \n supported for backward compatibility with other AWS Query APIs.</p>\n \n <p>For detailed information on constructing a query request using the actions, data types, and parameters mentioned in this guide,\n go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-query-api.html\">Using the Query API</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>For detailed information about Elastic Load Balancing features and their associated actions, go to \n <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenarios.html\">Using Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>This reference guide is based on the current WSDL, which is available at:\n <a href=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/ElasticLoadBalancing.wsdl\"></a> \n </p>\n \n ",
8
+ "documentation": "\n \t<fullname>Elastic Load Balancing</fullname>\n \n <p>\n Elastic Load Balancing is a cost-effective and easy\n to use web service to help you improve the availability and\n scalability of your application running on Amazon Elastic Cloud Compute (Amazon EC2). It makes it easy for\n you to distribute application loads between two or more\n EC2 instances. Elastic Load Balancing supports the growth in traffic of your application by enabling availability through redundancy.\n </p>\n \n <p>This guide provides detailed information about Elastic Load Balancing \n actions, data types, and parameters that can be used for sending a \n query request. Query requests are HTTP or HTTPS requests that use the \n HTTP verb GET or POST and a query parameter named Action or Operation. \n Action is used throughout this documentation, although Operation is \n supported for backward compatibility with other AWS Query APIs.</p>\n \n <p>For detailed information on constructing a query request using the actions, data types, and parameters mentioned in this guide,\n go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-query-api.html\">Using the Query API</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>For detailed information about Elastic Load Balancing features and their associated actions, go to \n <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenarios.html\">Using Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>This reference guide is based on the current WSDL, which is available at:\n <a href=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/ElasticLoadBalancing.wsdl\"></a> \n </p>\n <p><b>Endpoints</b></p>\n <p>The examples in this guide assume that your load balancers are created in the US East (Northern Virginia) region and use us-east-1 as the endpoint.</p>\n <p>You can create your load balancers in other AWS regions. For information about regions and endpoints supported by Elastic Load Balancing, see \n <a href=\"http://docs.aws.amazon.com/general/latest/gr/index.html?rande.html\">Regions and Endpoints</a> \n in the Amazon Web Services General Reference.\n </p>\n \n ",
10
9
  "operations": {
11
10
  "ApplySecurityGroupsToLoadBalancer": {
12
11
  "name": "ApplySecurityGroupsToLoadBalancer",
@@ -17,7 +16,7 @@
17
16
  "LoadBalancerName": {
18
17
  "shape_name": "AccessPointName",
19
18
  "type": "string",
20
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account. \n </p> \n ",
19
+ "documentation": "\n <p>\n The name associated with the load balancer.\n The name must be unique within the set of load balancers associated with your AWS account. \n </p> \n ",
21
20
  "required": true
22
21
  },
23
22
  "SecurityGroups": {
@@ -28,11 +27,11 @@
28
27
  "type": "string",
29
28
  "documentation": null
30
29
  },
31
- "documentation": "\n <p>\n A list of security group IDs to associate with your LoadBalancer in VPC. The security\n group IDs must be provided as the ID and not the security group name (For example, sg-1234).\n </p> \n ",
30
+ "documentation": "\n <p>\n A list of security group IDs to associate with your load balancer in VPC. The security\n group IDs must be provided as the ID and not the security group name (For example, sg-1234).\n </p> \n ",
32
31
  "required": true
33
32
  }
34
33
  },
35
- "documentation": "\n <p>\n The input for the <a>ApplySecurityGroupsToLoadBalancer</a> action.\n </p> \n "
34
+ "documentation": "\n <p>\n The input for the <a>ApplySecurityGroupsToLoadBalancer</a> action.\n </p> \n "
36
35
  },
37
36
  "output": {
38
37
  "shape_name": "ApplySecurityGroupsToLoadBalancerOutput",
@@ -46,10 +45,10 @@
46
45
  "type": "string",
47
46
  "documentation": null
48
47
  },
49
- "documentation": "\n <p>\n A list of security group IDs associated with your LoadBalancer.\n </p> \n "
48
+ "documentation": "\n <p>\n A list of security group IDs associated with your load balancer.\n </p> \n "
50
49
  }
51
50
  },
52
- "documentation": "\n <p>\n The out for the <a>ApplySecurityGroupsToLoadBalancer</a> action.\n </p> \n "
51
+ "documentation": "\n <p>\n The out for the <a>ApplySecurityGroupsToLoadBalancer</a> action.\n </p> \n "
53
52
  },
54
53
  "errors": [
55
54
  {
@@ -57,7 +56,7 @@
57
56
  "type": "structure",
58
57
  "members": {
59
58
  },
60
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
59
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
61
60
  },
62
61
  {
63
62
  "shape_name": "InvalidConfigurationRequestException",
@@ -71,10 +70,10 @@
71
70
  "type": "structure",
72
71
  "members": {
73
72
  },
74
- "documentation": "\n <p>\n One or more specified security groups do not exist. \n </p>\n "
73
+ "documentation": "\n <p>\n One or more specified security groups do not exist. \n </p>\n "
75
74
  }
76
75
  ],
77
- "documentation": "\n <p>\n Associates one or more security groups with your LoadBalancer in VPC. \n The provided security group IDs will override any currently applied security groups.\n </p> \n "
76
+ "documentation": "\n <p>\n Associates one or more security groups with your load balancer in Amazon Virtual Private Cloud (Amazon VPC). \n The provided security group IDs will override any currently applied security groups.\n </p> \n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/USVPC_ApplySG.html\">Manage Security Groups in Amazon VPC</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?SecurityGroups.member.1=sg-123456789\n&LoadBalancerName=my-test-vpc-loadbalancer\n&Version=2012-06-01\n&Action=ApplySecurityGroupsToLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><ApplySecurityGroupsToLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <ApplySecurityGroupsToLoadBalancerResult>\n <SecurityGroups>\n <member>sg-123456789</member>\n </SecurityGroups>\n </ApplySecurityGroupsToLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>06b5decc-102a-11e3-9ad6-bf3e4EXAMPLE</RequestId>\n </ResponseMetadata>\n</ApplySecurityGroupsToLoadBalancerResponse>\n </queryresponse>\n </examples> \n "
78
77
  },
79
78
  "AttachLoadBalancerToSubnets": {
80
79
  "name": "AttachLoadBalancerToSubnets",
@@ -85,7 +84,7 @@
85
84
  "LoadBalancerName": {
86
85
  "shape_name": "AccessPointName",
87
86
  "type": "string",
88
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
87
+ "documentation": "\n <p>\n The name associated with the load balancer.\n The name must be unique within the set of load balancers associated with your AWS account.\n </p>\n ",
89
88
  "required": true
90
89
  },
91
90
  "Subnets": {
@@ -96,11 +95,11 @@
96
95
  "type": "string",
97
96
  "documentation": null
98
97
  },
99
- "documentation": "\n <p>\n A list of subnet IDs to add for the LoadBalancer.\n </p> \n ",
98
+ "documentation": "\n <p>\n A list of subnet IDs to add for the load balancer. You can add only one subnet per Availability Zone.\n </p> \n ",
100
99
  "required": true
101
100
  }
102
101
  },
103
- "documentation": "\n <p>\n The input for the <a>AttachLoadBalancerToSubnets</a> action. \n </p> \n "
102
+ "documentation": "\n <p>\n The input for the <a>AttachLoadBalancerToSubnets</a> action. \n </p> \n "
104
103
  },
105
104
  "output": {
106
105
  "shape_name": "AttachLoadBalancerToSubnetsOutput",
@@ -114,10 +113,10 @@
114
113
  "type": "string",
115
114
  "documentation": null
116
115
  },
117
- "documentation": "\n <p>\n A list of subnet IDs added for the LoadBalancer. \n </p> \n "
116
+ "documentation": "\n <p>\n A list of subnet IDs attached to the load balancer. \n </p> \n "
118
117
  }
119
118
  },
120
- "documentation": "\n <p>\n The output for the <a>AttachLoadBalancerToSubnets</a> action.\n </p>\n "
119
+ "documentation": "\n <p>\n The output for the <a>AttachLoadBalancerToSubnets</a> action.\n </p>\n "
121
120
  },
122
121
  "errors": [
123
122
  {
@@ -125,7 +124,7 @@
125
124
  "type": "structure",
126
125
  "members": {
127
126
  },
128
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
127
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
129
128
  },
130
129
  {
131
130
  "shape_name": "InvalidConfigurationRequestException",
@@ -149,7 +148,7 @@
149
148
  "documentation": "\n <p>\n The VPC has no Internet gateway. \n </p>\n "
150
149
  }
151
150
  ],
152
- "documentation": "\n <p>\n Adds one or more subnets to the set of configured subnets in the VPC for the LoadBalancer.\n </p> \n <p>\n The Loadbalancers evenly distribute requests across all of the registered subnets. \n </p>\n "
151
+ "documentation": "\n <p>\n Adds one or more subnets to the set of configured subnets in the Amazon Virtual Private Cloud (Amazon VPC) for the load balancer.\n </p> \n <p>\n The load balancers evenly distribute requests across all of the registered subnets. \n For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForVPC.html\">Deploy Elastic Load Balancing in Amazon VPC</a> in the <i>Elastic Load Balancing Developer Guide</i>.\n </p>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Subnets.member.1=subnet-3561b05e\n&LoadBalancerName=my-test-vpc-loadbalancer\n&Version=2012-06-01\n&Action=AttachLoadBalancerToSubnets\n&AUTHPARAMS </queryrequest> \n <queryresponse><AttachLoadBalancerToSubnetsResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<AttachLoadBalancerToSubnetsResult>\n <Subnets>\n <member>subnet-119f0078</member>\n <member>subnet-3561b05e</member>\n </Subnets>\n</AttachLoadBalancerToSubnetsResult>\n <ResponseMetadata>\n <RequestId>07b1ecbc-1100-11e3-acaf-dd7edEXAMPLE</RequestId>\n </ResponseMetadata>\n</AttachLoadBalancerToSubnetsResponse>\n </queryresponse>\n </examples> \n "
153
152
  },
154
153
  "ConfigureHealthCheck": {
155
154
  "name": "ConfigureHealthCheck",
@@ -160,7 +159,7 @@
160
159
  "LoadBalancerName": {
161
160
  "shape_name": "AccessPointName",
162
161
  "type": "string",
163
- "documentation": "\n <p>\n The mnemonic name associated with the LoadBalancer.\n This name must be unique within the client AWS account.\n </p>\n ",
162
+ "documentation": "\n <p>\n The mnemonic name associated with the load balancer.\n The name must be unique within the set of load balancers associated with your AWS account.\n </p>\n ",
164
163
  "required": true
165
164
  },
166
165
  "HealthCheck": {
@@ -206,11 +205,11 @@
206
205
  "required": true
207
206
  }
208
207
  },
209
- "documentation": "\n <p>\n A structure containing the configuration information\n for the new healthcheck.\n </p>\n ",
208
+ "documentation": "\n <p>\n A structure containing the configuration information\n for the new healthcheck.\n </p>\n ",
210
209
  "required": true
211
210
  }
212
211
  },
213
- "documentation": "\n \t<p>\n \tInput for the <a>ConfigureHealthCheck</a> action.\n \t</p>\n "
212
+ "documentation": "\n <p>\n Input for the <a>ConfigureHealthCheck</a> action.\n </p>\n "
214
213
  },
215
214
  "output": {
216
215
  "shape_name": "ConfigureHealthCheckOutput",
@@ -259,10 +258,10 @@
259
258
  "required": true
260
259
  }
261
260
  },
262
- "documentation": "\n <p>\n The updated healthcheck for the instances.\n </p>\n "
261
+ "documentation": "\n <p>\n The updated healthcheck for the instances.\n </p>\n "
263
262
  }
264
263
  },
265
- "documentation": "\n \t<p>\n \tThe output for the <a>ConfigureHealthCheck</a> action.\n \t</p>\n "
264
+ "documentation": "\n <p>\n The output for the <a>ConfigureHealthCheck</a> action.\n </p>\n "
266
265
  },
267
266
  "errors": [
268
267
  {
@@ -270,10 +269,10 @@
270
269
  "type": "structure",
271
270
  "members": {
272
271
  },
273
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
272
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
274
273
  }
275
274
  ],
276
- "documentation": "\n <p>\n Enables the client to define an application\n healthcheck for the instances.\n </p>\n "
275
+ "documentation": "\n <p>\n Specifies the health check settings to use for evaluating the health state of your back-end instances. \n </p>\n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#healthcheck\">Health Check</a> in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?HealthCheck.HealthyThreshold=2\n&HealthCheck.UnhealthyThreshold=2\n&LoadBalancerName=MyLoadBalancer\n&HealthCheck.Target=HTTP:80/ping\n&HealthCheck.Interval=30\n&HealthCheck.Timeout=3\n&Version=2012-06-01\n&Action=ConfigureHealthCheck\n&AUTHPARAMS </queryrequest> \n <queryresponse><ConfigureHealthCheckResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<ConfigureHealthCheckResult>\n <HealthCheck>\n <Interval>30</Interval>\n <Target>HTTP:80/ping</Target>\n <HealthyThreshold>2</HealthyThreshold>\n <Timeout>3</Timeout>\n <UnhealthyThreshold>2</UnhealthyThreshold>\n </HealthCheck>\n</ConfigureHealthCheckResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</ConfigureHealthCheckResponse>\n </queryresponse>\n </examples> \n "
277
276
  },
278
277
  "CreateAppCookieStickinessPolicy": {
279
278
  "name": "CreateAppCookieStickinessPolicy",
@@ -284,30 +283,30 @@
284
283
  "LoadBalancerName": {
285
284
  "shape_name": "AccessPointName",
286
285
  "type": "string",
287
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
286
+ "documentation": "\n <p>\n The name of the load balancer. \n </p>\n ",
288
287
  "required": true
289
288
  },
290
289
  "PolicyName": {
291
290
  "shape_name": "PolicyName",
292
291
  "type": "string",
293
- "documentation": "\n <p>\n The name of the policy being created. \n The name must be unique within the set of policies for this LoadBalancer. \n </p>\n ",
292
+ "documentation": "\n <p>\n The name of the policy being created. \n The name must be unique within the set of policies for this load balancer. \n </p>\n ",
294
293
  "required": true
295
294
  },
296
295
  "CookieName": {
297
296
  "shape_name": "CookieName",
298
297
  "type": "string",
299
- "documentation": "\n <p>\n Name of the application cookie used for stickiness. \n </p>\n ",
298
+ "documentation": "\n <p>\n Name of the application cookie used for stickiness. \n </p>\n ",
300
299
  "required": true
301
300
  }
302
301
  },
303
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>CreateAppCookieStickinessPolicy</a> action.\n\t\t</p>\n "
302
+ "documentation": "\n <p>\n The input for the <a>CreateAppCookieStickinessPolicy</a> action.\n </p>\n "
304
303
  },
305
304
  "output": {
306
305
  "shape_name": "CreateAppCookieStickinessPolicyOutput",
307
306
  "type": "structure",
308
307
  "members": {
309
308
  },
310
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>CreateAppCookieStickinessPolicy</a> action.\n\t\t</p>\n "
309
+ "documentation": "\n <p>\n The output for the <a>CreateAppCookieStickinessPolicy</a> action.\n </p>\n "
311
310
  },
312
311
  "errors": [
313
312
  {
@@ -315,21 +314,21 @@
315
314
  "type": "structure",
316
315
  "members": {
317
316
  },
318
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
317
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
319
318
  },
320
319
  {
321
320
  "shape_name": "DuplicatePolicyNameException",
322
321
  "type": "structure",
323
322
  "members": {
324
323
  },
325
- "documentation": "\n <p>\n Policy with the same name exists for this LoadBalancer.\n Please choose another name.\n </p>\n "
324
+ "documentation": "\n <p>\n Policy with the same name exists for this load balancer.\n Please choose another name.\n </p>\n "
326
325
  },
327
326
  {
328
327
  "shape_name": "TooManyPoliciesException",
329
328
  "type": "structure",
330
329
  "members": {
331
330
  },
332
- "documentation": "\n <p>\n Quota for number of policies for this LoadBalancer\n has already been reached.\n </p>\n "
331
+ "documentation": "\n <p>\n Quota for number of policies for this load balancer\n has already been reached.\n </p>\n "
333
332
  },
334
333
  {
335
334
  "shape_name": "InvalidConfigurationRequestException",
@@ -339,7 +338,7 @@
339
338
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
340
339
  }
341
340
  ],
342
- "documentation": "\n <p>\n Generates a stickiness policy with sticky session lifetimes that follow \n that of an application-generated cookie. This policy can be associated\n only with HTTP/HTTPS listeners.\n </p>\n <p>\n This policy is similar to the policy created by <a>CreateLBCookieStickinessPolicy</a>, \n except that the lifetime of the special Elastic Load Balancing cookie follows the\n lifetime of the application-generated cookie specified in the policy configuration. \n The LoadBalancer only inserts a new stickiness cookie when the application response\n includes a new application cookie. \n </p>\n <p>\n If the application cookie is explicitly removed or expires, the session stops being\n sticky until a new application cookie is issued. \n </p>\n <note>\n An application client must receive and send two cookies: the application-generated \n cookie and the special Elastic Load Balancing cookie named <code>AWSELB</code>. \n This is the default behavior for many common web browsers.\n </note>\n <p>For information on using <a>CreateAppCookieStickinessPolicy</a>, see <i>Using the Query API</i> in the <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsAppCookies\">Enabling Application-Controlled Sesssion Stickiness</a> section of\n the <i>Elastic Load Balancing Developer Guide</i>.</p>\n "
341
+ "documentation": "\n <p>\n Generates a stickiness policy with sticky session lifetimes that follow \n that of an application-generated cookie. This policy can be associated\n only with HTTP/HTTPS listeners.\n </p>\n <p>\n This policy is similar to the policy created by <a>CreateLBCookieStickinessPolicy</a>, \n except that the lifetime of the special Elastic Load Balancing cookie follows the\n lifetime of the application-generated cookie specified in the policy configuration. \n The load balancer only inserts a new stickiness cookie when the application response\n includes a new application cookie. \n </p>\n <p>\n If the application cookie is explicitly removed or expires, the session stops being\n sticky until a new application cookie is issued. \n </p>\n <note>\n An application client must receive and send two cookies: the application-generated \n cookie and the special Elastic Load Balancing cookie named <code>AWSELB</code>. \n This is the default behavior for many common web browsers.\n </note>\n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsAppCookies\">Enabling Application-Controlled Session Stickiness</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?CookieName=MyAppCookie\n&LoadBalancerName=MyLoadBalancer\n&PolicyName=MyAppStickyPolicy\n&Version=2012-06-01\n&Action=CreateAppCookieStickinessPolicy\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateAppCookieStickinessPolicyResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateAppCookieStickinessPolicyResult/>\n<ResponseMetadata>\n <RequestId>99a693e9-12b8-11e3-9ad6-bf3e4EXAMPLE</RequestId>\n</ResponseMetadata>\n</CreateAppCookieStickinessPolicyResponse>\n </queryresponse>\n </examples> \n "
343
342
  },
344
343
  "CreateLBCookieStickinessPolicy": {
345
344
  "name": "CreateLBCookieStickinessPolicy",
@@ -350,29 +349,29 @@
350
349
  "LoadBalancerName": {
351
350
  "shape_name": "AccessPointName",
352
351
  "type": "string",
353
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
352
+ "documentation": "\n <p>\n The name associated with the load balancer. \n </p>\n ",
354
353
  "required": true
355
354
  },
356
355
  "PolicyName": {
357
356
  "shape_name": "PolicyName",
358
357
  "type": "string",
359
- "documentation": "\n <p>\n The name of the policy being created. \n The name must be unique within the set of policies for this LoadBalancer. \n </p>\n ",
358
+ "documentation": "\n <p>\n The name of the policy being created. \n The name must be unique within the set of policies for this load balancer. \n </p>\n ",
360
359
  "required": true
361
360
  },
362
361
  "CookieExpirationPeriod": {
363
362
  "shape_name": "CookieExpirationPeriod",
364
363
  "type": "long",
365
- "documentation": "\n <p>\n The time period in seconds after which the cookie should be considered stale. \n Not specifying this parameter indicates that the sticky session will last for the duration \n of the browser session. \n </p>\n "
364
+ "documentation": "\n <p>\n The time period in seconds after which the cookie should be considered stale. \n Not specifying this parameter indicates that the sticky session will last for the duration \n of the browser session. \n </p>\n "
366
365
  }
367
366
  },
368
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>CreateLBCookieStickinessPolicy</a> action.\n\t\t</p>\n "
367
+ "documentation": "\n <p>\n The input for the <a>CreateLBCookieStickinessPolicy</a> action.\n </p>\n "
369
368
  },
370
369
  "output": {
371
370
  "shape_name": "CreateLBCookieStickinessPolicyOutput",
372
371
  "type": "structure",
373
372
  "members": {
374
373
  },
375
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>CreateLBCookieStickinessPolicy</a> action.\n\t\t</p>\n "
374
+ "documentation": "\n <p>\n The output for the <a>CreateLBCookieStickinessPolicy</a> action.\n </p>\n "
376
375
  },
377
376
  "errors": [
378
377
  {
@@ -380,21 +379,21 @@
380
379
  "type": "structure",
381
380
  "members": {
382
381
  },
383
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
382
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
384
383
  },
385
384
  {
386
385
  "shape_name": "DuplicatePolicyNameException",
387
386
  "type": "structure",
388
387
  "members": {
389
388
  },
390
- "documentation": "\n <p>\n Policy with the same name exists for this LoadBalancer.\n Please choose another name.\n </p>\n "
389
+ "documentation": "\n <p>\n Policy with the same name exists for this load balancer.\n Please choose another name.\n </p>\n "
391
390
  },
392
391
  {
393
392
  "shape_name": "TooManyPoliciesException",
394
393
  "type": "structure",
395
394
  "members": {
396
395
  },
397
- "documentation": "\n <p>\n Quota for number of policies for this LoadBalancer\n has already been reached.\n </p>\n "
396
+ "documentation": "\n <p>\n Quota for number of policies for this load balancer\n has already been reached.\n </p>\n "
398
397
  },
399
398
  {
400
399
  "shape_name": "InvalidConfigurationRequestException",
@@ -404,7 +403,7 @@
404
403
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
405
404
  }
406
405
  ],
407
- "documentation": "\n <p>\n Generates a stickiness policy with sticky session lifetimes controlled by the \n lifetime of the browser (user-agent) or a specified expiration period. This \n policy can be associated only with HTTP/HTTPS listeners.\n </p>\n <p>\n When a LoadBalancer implements this policy, the LoadBalancer uses a special\n cookie to track the backend server instance for each request. When the LoadBalancer\n receives a request, it first checks to see if this cookie is present in the request. \n If so, the LoadBalancer sends the request to the application server specified in the\n cookie. If not, the LoadBalancer sends the request to a server that is chosen based on\n the existing load balancing algorithm.\n </p>\n <p>\n A cookie is inserted into the response for binding subsequent requests from the same user to\n that server. The validity of the cookie is based on the cookie expiration time, which is \n specified in the policy configuration. \n </p>\n \n <p>For information on using <a>CreateLBCookieStickinessPolicy</a>, see <i>Using the Query API</i> in the <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsLBCookies\">Enabling Duration-Based Sesssion Stickiness</a> section of\n the <i>Elastic Load Balancing Developer Guide</i>.</p>\n "
406
+ "documentation": "\n <p>\n Generates a stickiness policy with sticky session lifetimes controlled by the \n lifetime of the browser (user-agent) or a specified expiration period. This \n policy can be associated only with HTTP/HTTPS listeners.\n </p>\n <p>\n When a load balancer implements this policy, the load balancer uses a special\n cookie to track the backend server instance for each request. When the load balancer\n receives a request, it first checks to see if this cookie is present in the request. \n If so, the load balancer sends the request to the application server specified in the\n cookie. If not, the load balancer sends the request to a server that is chosen based on\n the existing load balancing algorithm.\n </p>\n <p>\n A cookie is inserted into the response for binding subsequent requests from the same user to\n that server. The validity of the cookie is based on the cookie expiration time, which is \n specified in the policy configuration. \n </p>\n \n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_StickySessions.html#US_EnableStickySessionsLBCookies\">Enabling Duration-Based Session Stickiness</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p> \n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?CookieExpirationPeriod=60\n&LoadBalancerName=MyLoadBalancer&PolicyName=MyDurationStickyPolicy\n&Version=2012-06-01\n&Action=CreateLBCookieStickinessPolicy\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLBCookieStickinessPolicyResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLBCookieStickinessPolicyResult/>\n<ResponseMetadata>\n <RequestId>99a693e9-12b8-11e3-9ad6-bf3e4EXAMPLE</RequestId>\n</ResponseMetadata>\n</CreateLBCookieStickinessPolicyResponse>\n </queryresponse>\n </examples> \n \n "
408
407
  },
409
408
  "CreateLoadBalancer": {
410
409
  "name": "CreateLoadBalancer",
@@ -415,7 +414,7 @@
415
414
  "LoadBalancerName": {
416
415
  "shape_name": "AccessPointName",
417
416
  "type": "string",
418
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within your set of LoadBalancers.\n </p>\n ",
417
+ "documentation": "\n <p>\n The name associated with the load balancer.\n The name must be unique within your set of load balancers.\n </p>\n ",
419
418
  "required": true
420
419
  },
421
420
  "Listeners": {
@@ -428,37 +427,37 @@
428
427
  "Protocol": {
429
428
  "shape_name": "Protocol",
430
429
  "type": "string",
431
- "documentation": "\n <p>\n Specifies the LoadBalancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
430
+ "documentation": "\n <p>\n Specifies the load balancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
432
431
  "required": true
433
432
  },
434
433
  "LoadBalancerPort": {
435
434
  "shape_name": "AccessPointPort",
436
435
  "type": "integer",
437
- "documentation": "\n <p>\n Specifies the external LoadBalancer port number.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
436
+ "documentation": "\n <p>\n Specifies the external load balancer port number.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
438
437
  "required": true
439
438
  },
440
439
  "InstanceProtocol": {
441
440
  "shape_name": "Protocol",
442
441
  "type": "string",
443
- "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the LoadBalancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
442
+ "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the load balancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
444
443
  },
445
444
  "InstancePort": {
446
445
  "shape_name": "InstancePort",
447
446
  "type": "integer",
448
447
  "min_length": 1,
449
448
  "max_length": 65535,
450
- "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
449
+ "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
451
450
  "required": true
452
451
  },
453
452
  "SSLCertificateId": {
454
453
  "shape_name": "SSLCertificateId",
455
454
  "type": "string",
456
- "documentation": "\n \t<p>\n \tThe ARN string of the server certificate. \n \tTo get the ARN of the server certificate, call the AWS Identity and Access Management \n \t <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n \t</a> API. </p>\n "
455
+ "documentation": "\n <p>\n The ARN string of the server certificate. \n To get the ARN of the server certificate, call the AWS Identity and Access Management \n <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n </a> API. </p>\n "
457
456
  }
458
457
  },
459
458
  "documentation": "\n <p>\n The Listener data type.\n </p>\n "
460
459
  },
461
- "documentation": "\n <p>\n A list of the following tuples:\n LoadBalancerPort, InstancePort, and Protocol.\n </p>\n ",
460
+ "documentation": "\n <p>\n A list of the following tuples:\n LoadBalancerPort, InstancePort, and Protocol.\n </p>\n ",
462
461
  "required": true
463
462
  },
464
463
  "AvailabilityZones": {
@@ -469,7 +468,7 @@
469
468
  "type": "string",
470
469
  "documentation": null
471
470
  },
472
- "documentation": "\n <p>\n A list of Availability Zones.\n </p>\n <p>\n At least one Availability Zone must be specified.\n Specified Availability Zones must be in the same EC2 Region\n as the LoadBalancer.\n Traffic will be equally distributed across all zones.\n </p>\n <p>\n This list can be modified \n after the creation of the LoadBalancer by calling <a>EnableAvailabilityZonesForLoadBalancer</a>.\n </p>\n "
471
+ "documentation": "\n <p>\n A list of Availability Zones.\n </p>\n <p>\n At least one Availability Zone must be specified.\n Specified Availability Zones must be in the same EC2 Region\n as the load balancer.\n Traffic will be equally distributed across all zones.\n </p>\n <p>\n You can later add more Availability Zones after the creation of the \n load balancer by calling <a>EnableAvailabilityZonesForLoadBalancer</a> action.\n </p>\n "
473
472
  },
474
473
  "Subnets": {
475
474
  "shape_name": "Subnets",
@@ -479,7 +478,7 @@
479
478
  "type": "string",
480
479
  "documentation": null
481
480
  },
482
- "documentation": "\n <p>\n A list of subnet IDs in your VPC to attach to your LoadBalancer.\n </p> \n "
481
+ "documentation": "\n <p>\n A list of subnet IDs in your VPC to attach to your load balancer.\n Specify one subnet per Availability Zone.\n </p> \n "
483
482
  },
484
483
  "SecurityGroups": {
485
484
  "shape_name": "SecurityGroups",
@@ -489,15 +488,15 @@
489
488
  "type": "string",
490
489
  "documentation": null
491
490
  },
492
- "documentation": "\n <p>\n The security groups assigned to your LoadBalancer within your VPC.\n </p> \n "
491
+ "documentation": "\n <p>\n The security groups to assign to your load balancer within your VPC.\n </p> \n "
493
492
  },
494
493
  "Scheme": {
495
494
  "shape_name": "LoadBalancerScheme",
496
495
  "type": "string",
497
- "documentation": "\n <p>The type of a LoadBalancer. </p> \n \n <p>By default, Elastic Load Balancing creates an Internet-facing LoadBalancer\n with a publicly resolvable DNS name, which resolves to public IP addresses. </p>\n \n <p>Specify the value <code>internal</code> for this option to create an internal LoadBalancer\n with a DNS name that resolves to private IP addresses.</p>\n \n <p>This option is only available for LoadBalancers attached to an Amazon VPC.</p>\n \n "
496
+ "documentation": "\n <p>The type of a load balancer. </p> \n \n <p>By default, Elastic Load Balancing creates an Internet-facing load balancer\n with a publicly resolvable DNS name, which resolves to public IP addresses.\n For more informationabout Internet-facing and Internal load balancers, \n see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/vpc-loadbalancer-types.html\">Internet-facing and Internal Load Balancers</a>.</p>\n \n <p>Specify the value <code>internal</code> for this option to create an internal load balancer\n with a DNS name that resolves to private IP addresses.</p>\n <note>\n <p>This option is only available for load balancers created within EC2-VPC.</p>\n </note> \n \n "
498
497
  }
499
498
  },
500
- "documentation": "\n \t<p>\n \tThe input for the <a>CreateLoadBalancer</a> action.\n \t</p>\n "
499
+ "documentation": "\n <p>\n The input for the <a>CreateLoadBalancer</a> action.\n </p>\n "
501
500
  },
502
501
  "output": {
503
502
  "shape_name": "CreateAccessPointOutput",
@@ -506,10 +505,10 @@
506
505
  "DNSName": {
507
506
  "shape_name": "DNSName",
508
507
  "type": "string",
509
- "documentation": "\n <p>\n The DNS name for the LoadBalancer.\n </p>\n "
508
+ "documentation": "\n <p>\n The DNS name for the load balancer.\n </p>\n "
510
509
  }
511
510
  },
512
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>CreateLoadBalancer</a> action.\n\t\t</p>\n "
511
+ "documentation": "\n <p>\n The output for the <a>CreateLoadBalancer</a> action.\n </p>\n "
513
512
  },
514
513
  "errors": [
515
514
  {
@@ -517,21 +516,21 @@
517
516
  "type": "structure",
518
517
  "members": {
519
518
  },
520
- "documentation": "\n <p>\n LoadBalancer name already exists for this account.\n Please choose another name.\n </p>\n "
519
+ "documentation": "\n <p>\n Load balancer name already exists for this account.\n Please choose another name.\n </p>\n "
521
520
  },
522
521
  {
523
522
  "shape_name": "TooManyAccessPointsException",
524
523
  "type": "structure",
525
524
  "members": {
526
525
  },
527
- "documentation": "\n <p>\n The quota for the number of LoadBalancers has already been reached.\n </p>\n "
526
+ "documentation": "\n <p>\n The quota for the number of load balancers has already been reached.\n </p>\n "
528
527
  },
529
528
  {
530
529
  "shape_name": "CertificateNotFoundException",
531
530
  "type": "structure",
532
531
  "members": {
533
532
  },
534
- "documentation": "\n \t<p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n \t</p>\n "
533
+ "documentation": "\n <p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n </p>\n "
535
534
  },
536
535
  {
537
536
  "shape_name": "InvalidConfigurationRequestException",
@@ -559,7 +558,7 @@
559
558
  "type": "structure",
560
559
  "members": {
561
560
  },
562
- "documentation": "\n <p>\n One or more specified security groups do not exist. \n </p>\n "
561
+ "documentation": "\n <p>\n One or more specified security groups do not exist. \n </p>\n "
563
562
  },
564
563
  {
565
564
  "shape_name": "InvalidSchemeException",
@@ -569,7 +568,7 @@
569
568
  "documentation": "\n <p>\n Invalid value for scheme. Scheme can only be specified for load balancers in VPC. \n </p>\n "
570
569
  }
571
570
  ],
572
- "documentation": "\n <p>\n Creates a new LoadBalancer.\n </p>\n <p>\n After the call has completed successfully, a new LoadBalancer\n is created; however, it will not be usable until at least\n one instance has been registered.\n When the LoadBalancer creation is completed,\n the client can check whether or not it is usable by\n using the <a>DescribeInstanceHealth</a> action.\n The LoadBalancer is usable as soon as any registered instance\n is <i>InService</i>.\n </p>\n <note>\n Currently, the client's quota of LoadBalancers is\n limited to ten per Region.\n </note>\n <note>\n <p>\n LoadBalancer DNS names vary depending on the Region\n they're created in. For LoadBalancers created in the United States,\n the DNS name ends with:\n </p>\n <ul>\n <li>\n <i>us-east-1.elb.amazonaws.com</i> (for the Northern Virginia Region)\n </li>\n <li>\n <i>us-west-1.elb.amazonaws.com</i> (for the Northern California Region)\n </li>\n </ul>\n <p>\n For LoadBalancers created in the EU (Ireland) Region,\n the DNS name ends with:\n </p>\n <ul>\n <li>\n <i>eu-west-1.elb.amazonaws.com</i>\n </li>\n </ul>\n </note>\n <p>For information on using <a>CreateLoadBalancer</a> to create a new LoadBalancer in Amazon EC2, go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/creating_lb_QueryAPI.html\">Using Query API</a> \n section in the <i>Creating a Load Balancer With SSL Cipher Settings and Back-end Authentication</i> topic of the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>For information on using <a>CreateLoadBalancer</a> to create a new LoadBalancer in Amazon VPC, see <i>Using the Query API</i> in the <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/USVPC_creating_basic_lb.html\">Creating a Basic Load Balancer in Amazon VPC</a> \n section in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n "
571
+ "documentation": "\n <p>\n Creates a new load balancer.\n </p>\n <p>\n After the call has completed successfully, a new load balancer\n is created with a unique Domain Name Service (DNS) name. The DNS \n name includes the name of the AWS region in which the load balance \n was created. For example, if your load balancer was created in the\n United States, the DNS name might end with either of the following:</p> \n <ul>\n <li>\n <i>us-east-1.elb.amazonaws.com</i> (for the Northern Virginia Region)\n </li>\n <li>\n <i>us-west-1.elb.amazonaws.com</i> (for the Northern California Region)\n </li>\n </ul>\n <p>For information about the AWS regions supported by Elastic Load Balancing, \n see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region\">Regions and Endpoints</a>.</p> \n \n <p>You can create up to 10 load balancers per region per account.</p>\n \n <p>Elastic Load Balancing supports load balancing your Amazon EC2 instances launched\n within any one of the following platforms:</p>\n <ul>\n <li>\n <i>EC2-Classic</i>\n <p>For information on creating and managing your load balancers in EC2-Classic, \n see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForEC2.html\">Deploy Elastic Load Balancing in Amazon EC2-Classic</a>.</p>\n </li>\n <li>\n <i>EC2-VPC</i>\n <p>For information on creating and managing your load balancers in EC2-VPC, \n see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/UserScenariosForVPC.html\">Deploy Elastic Load Balancing in Amazon VPC</a>.</p>\n </li>\n </ul> \n \n <examples> \n <example>\n <name>Create a TCP load balancer in EC2-Classic</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyLoadBalancer\n&AvailabilityZones.member.1=us-east-1c\n&Listeners.member.1.LoadBalancerPort=80\n&Listeners.member.1.InstancePort=80\n&Listeners.member.1.Protocol=http\n&Listeners.member.1.InstanceProtocol=http\n&Version=2012-06-01\n&Action=CreateLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerResult>\n <DNSName>MyLoadBalancer-1234567890.us-east-1.elb.amazonaws.com</DNSName>\n </CreateLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerResponse>\n </queryresponse>\n </example> \n <example>\n <name>Create HTTPS load balancer in EC2-Classic</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyHTTPSLoadBalancer\n&AvailabilityZones.member.1=us-east-1c\n&Listeners.member.1.LoadBalancerPort=443\n&Listeners.member.1.InstancePort=443\n&Listeners.member.1.Protocol=https\n&Listeners.member.1.InstanceProtocol=https\n&Listeners.member.1.SSLCertificateId=arn:aws:iam::123456789012:server-certificate/servercert\n&Version=2012-06-01\n&Action=CreateLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerResult>\n <DNSName>MyHTTPSLoadBalancer-1234567890.us-east-1.elb.amazonaws.com</DNSName>\n </CreateLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerResponse>\n </queryresponse>\n </example> \n <example>\n <name>Create a TCP load balancer in EC2-VPC</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?SecurityGroups.member.1=sg-6801da07\n&LoadBalancerName=MyVPCLoadBalancer\n&Listeners.member.1.LoadBalancerPort=80\n&Listeners.member.1.InstancePort=80\n&Listeners.member.1.Protocol=http\n&Listeners.member.1.InstanceProtocol=http\n&Subnets.member.1=subnet-6dec9f03\n&Version=2012-06-01\n&Action=CreateLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerResult>\n <DNSName>MyVPCLoadBalancer-1234567890.us-east-1.elb.amazonaws.com</DNSName>\n </CreateLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerResponse>\n </queryresponse>\n </example> \n <example>\n <name>Create an internal TCP load balancer in EC2-VPC</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Scheme=internal\n&SecurityGroups.member.1=sg-706cb61f\n&LoadBalancerName=MyInternalLoadBalancer\n&Listeners.member.1.LoadBalancerPort=80\n&Listeners.member.1.InstancePort=80\n&Listeners.member.1.Protocol=http\n&Listeners.member.1.InstanceProtocol=http\n&Subnets.member.1=subnet-9edc97f0\n&Version=2012-06-01\n&Action=CreateLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerResult>\n <DNSName>internal-MyInternalLoadBalancer-1234567890.us-east-1.elb.amazonaws.com</DNSName>\n </CreateLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerResponse>\n </queryresponse>\n </example> \n <example>\n <name>Create a TCP load balancer in default VPC</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyDefaultVPCLoadBalancer\n&AvailabilityZones.member.1=sa-east-1b\n&Listeners.member.1.LoadBalancerPort=80\n&Listeners.member.1.InstancePort=80\n&Listeners.member.1.Protocol=http\n&Listeners.member.1.InstanceProtocol=http\n&Version=2012-06-01\n&Action=CreateLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerResult>\n <DNSName>MyDefaultVPCLoadBalancer-1234567890.sa.east-1.elb.amazonaws.com</DNSName>\n </CreateLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerResponse>\n </queryresponse>\n </example> \n </examples> \n "
573
572
  },
574
573
  "CreateLoadBalancerListeners": {
575
574
  "name": "CreateLoadBalancerListeners",
@@ -580,7 +579,7 @@
580
579
  "LoadBalancerName": {
581
580
  "shape_name": "AccessPointName",
582
581
  "type": "string",
583
- "documentation": "\n \t<p>\n \tThe name of the LoadBalancer. \n \t</p>\n ",
582
+ "documentation": "\n <p>\n The name of the load balancer. \n </p>\n ",
584
583
  "required": true
585
584
  },
586
585
  "Listeners": {
@@ -593,48 +592,48 @@
593
592
  "Protocol": {
594
593
  "shape_name": "Protocol",
595
594
  "type": "string",
596
- "documentation": "\n <p>\n Specifies the LoadBalancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
595
+ "documentation": "\n <p>\n Specifies the load balancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
597
596
  "required": true
598
597
  },
599
598
  "LoadBalancerPort": {
600
599
  "shape_name": "AccessPointPort",
601
600
  "type": "integer",
602
- "documentation": "\n <p>\n Specifies the external LoadBalancer port number.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
601
+ "documentation": "\n <p>\n Specifies the external load balancer port number.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
603
602
  "required": true
604
603
  },
605
604
  "InstanceProtocol": {
606
605
  "shape_name": "Protocol",
607
606
  "type": "string",
608
- "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the LoadBalancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
607
+ "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the load balancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
609
608
  },
610
609
  "InstancePort": {
611
610
  "shape_name": "InstancePort",
612
611
  "type": "integer",
613
612
  "min_length": 1,
614
613
  "max_length": 65535,
615
- "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
614
+ "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
616
615
  "required": true
617
616
  },
618
617
  "SSLCertificateId": {
619
618
  "shape_name": "SSLCertificateId",
620
619
  "type": "string",
621
- "documentation": "\n \t<p>\n \tThe ARN string of the server certificate. \n \tTo get the ARN of the server certificate, call the AWS Identity and Access Management \n \t <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n \t</a> API. </p>\n "
620
+ "documentation": "\n <p>\n The ARN string of the server certificate. \n To get the ARN of the server certificate, call the AWS Identity and Access Management \n <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n </a> API. </p>\n "
622
621
  }
623
622
  },
624
623
  "documentation": "\n <p>\n The Listener data type.\n </p>\n "
625
624
  },
626
- "documentation": "\n \t<p>\n \tA list of <code>LoadBalancerPort</code>, \n \t<code>InstancePort</code>, \n \t<code>Protocol</code>, and \n \t<code>SSLCertificateId</code> items. \t\n \t</p>\n ",
625
+ "documentation": "\n <p>\n A list of <code>LoadBalancerPort</code>, \n <code>InstancePort</code>, \n <code>Protocol</code>, and \n <code>SSLCertificateId</code> items. \t\n </p>\n ",
627
626
  "required": true
628
627
  }
629
628
  },
630
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>CreateLoadBalancerListeners</a> action.\n\t\t</p>\n "
629
+ "documentation": "\n <p>\n The input for the <a>CreateLoadBalancerListeners</a> action.\n </p>\n \n "
631
630
  },
632
631
  "output": {
633
632
  "shape_name": "CreateLoadBalancerListenerOutput",
634
633
  "type": "structure",
635
634
  "members": {
636
635
  },
637
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>CreateLoadBalancerListeners</a> action.\n\t\t</p>\n "
636
+ "documentation": "\n <p>\n The output for the <a>CreateLoadBalancerListeners</a> action.\n </p>\n "
638
637
  },
639
638
  "errors": [
640
639
  {
@@ -642,21 +641,21 @@
642
641
  "type": "structure",
643
642
  "members": {
644
643
  },
645
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
644
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
646
645
  },
647
646
  {
648
647
  "shape_name": "DuplicateListenerException",
649
648
  "type": "structure",
650
649
  "members": {
651
650
  },
652
- "documentation": "\n \t<p>\n \tA <code>Listener</code> already exists for the given \n \t<code>LoadBalancerName</code> and <code>LoadBalancerPort</code>, \n \tbut with a different <code>InstancePort</code>, <code>Protocol</code>, \n \tor <code>SSLCertificateId</code>. \t\n \t</p>\n "
651
+ "documentation": "\n <p>\n A <code>Listener</code> already exists for the given \n <code>LoadBalancerName</code> and <code>LoadBalancerPort</code>, \n but with a different <code>InstancePort</code>, <code>Protocol</code>, \n or <code>SSLCertificateId</code>. \t\n </p>\n "
653
652
  },
654
653
  {
655
654
  "shape_name": "CertificateNotFoundException",
656
655
  "type": "structure",
657
656
  "members": {
658
657
  },
659
- "documentation": "\n \t<p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n \t</p>\n "
658
+ "documentation": "\n <p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n </p>\n "
660
659
  },
661
660
  {
662
661
  "shape_name": "InvalidConfigurationRequestException",
@@ -666,7 +665,7 @@
666
665
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
667
666
  }
668
667
  ],
669
- "documentation": "\n \t<p>\n \tCreates one or more listeners on a LoadBalancer for the specified port. \n \tIf a listener with the given port does not already exist, it will be created; \n \totherwise, the properties of the new listener must match the properties \n \tof the existing listener. \n \t</p>\n "
668
+ "documentation": "\n <p>\n Creates one or more listeners on a load balancer for the specified port. \n If a listener with the given port does not already exist, it will be created; \n otherwise, the properties of the new listener must match the properties \n of the existing listener. \n </p>\n <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> \n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <examples>\n <name>Create HTTPS load balancer listener in EC2-Classic</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Listeners.member.1.Protocol=https\n&Listeners.member.1.LoadBalancerPort=443\n&Listeners.member.1.InstancePort=443\n&Listeners.member.1.InstanceProtocol=https\n&Listeners.member.1.SSLCertificateId=arn:aws:iam::123456789012:server-certificate/servercert\n&LoadBalancerName=MyHTTPSLoadBalancer\n&Version=2012-06-01\n&Action=CreateLoadBalancerListeners\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerListenersResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <CreateLoadBalancerListenersResult/>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</CreateLoadBalancerListenersResponse>\n </queryresponse>\n </examples> \n "
670
669
  },
671
670
  "CreateLoadBalancerPolicy": {
672
671
  "name": "CreateLoadBalancerPolicy",
@@ -677,13 +676,13 @@
677
676
  "LoadBalancerName": {
678
677
  "shape_name": "AccessPointName",
679
678
  "type": "string",
680
- "documentation": "\n \t<p>\n \tThe name associated with the LoadBalancer for which the policy is being created.\n \tThis name must be unique within the client AWS account.\n \t</p>\n ",
679
+ "documentation": "\n \t<p>\n \tThe name associated with the LoadBalancer for which the policy is being created. \t\n \t</p>\n ",
681
680
  "required": true
682
681
  },
683
682
  "PolicyName": {
684
683
  "shape_name": "PolicyName",
685
684
  "type": "string",
686
- "documentation": "\n \t<p>\n \tThe name of the LoadBalancer policy being created.\n \tThe name must be unique within the set of policies for this LoadBalancer.\n \t</p>\n ",
685
+ "documentation": "\n \t<p>\n \tThe name of the load balancer policy being created.\n \tThe name must be unique within the set of policies for this load balancer.\n \t</p>\n ",
687
686
  "required": true
688
687
  },
689
688
  "PolicyTypeName": {
@@ -702,15 +701,15 @@
702
701
  "AttributeName": {
703
702
  "shape_name": "AttributeName",
704
703
  "type": "string",
705
- "documentation": "\n \t<p>\n \tThe name of the attribute associated with the policy.\n \t</p>\n "
704
+ "documentation": "\n <p>\n The name of the attribute associated with the policy.\n </p>\n "
706
705
  },
707
706
  "AttributeValue": {
708
707
  "shape_name": "AttributeValue",
709
708
  "type": "string",
710
- "documentation": "\n \t<p>\n \tThe value of the attribute associated with the policy.\n \t</p>\n "
709
+ "documentation": "\n <p>\n The value of the attribute associated with the policy.\n </p>\n "
711
710
  }
712
711
  },
713
- "documentation": "\n \t<p>\n \tThe <a>PolicyAttribute</a> data type. This data type contains a key/value pair that defines properties of\n \ta specific policy.\n \t</p>\n "
712
+ "documentation": "\n <p>\n The <a>PolicyAttribute</a> data type. This data type contains a key/value pair that defines properties of\n a specific policy.\n </p>\n "
714
713
  },
715
714
  "documentation": "\n \t<p>\n \tA list of attributes associated with the policy being created.\n \t</p>\n "
716
715
  }
@@ -722,7 +721,7 @@
722
721
  "type": "structure",
723
722
  "members": {
724
723
  },
725
- "documentation": "\n <p>The output for the <a>CreateLoadBalancerPolicy</a> action.\n </p>\n "
724
+ "documentation": "\n <p>The output for the <a>CreateLoadBalancerPolicy</a> action.\n </p>\n "
726
725
  },
727
726
  "errors": [
728
727
  {
@@ -730,28 +729,28 @@
730
729
  "type": "structure",
731
730
  "members": {
732
731
  },
733
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
732
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
734
733
  },
735
734
  {
736
735
  "shape_name": "PolicyTypeNotFoundException",
737
736
  "type": "structure",
738
737
  "members": {
739
738
  },
740
- "documentation": "\n \t<p>\n \tOne or more of the specified policy types do not exist.\n \t</p>\n "
739
+ "documentation": "\n <p>\n One or more of the specified policy types do not exist.\n </p>\n "
741
740
  },
742
741
  {
743
742
  "shape_name": "DuplicatePolicyNameException",
744
743
  "type": "structure",
745
744
  "members": {
746
745
  },
747
- "documentation": "\n <p>\n Policy with the same name exists for this LoadBalancer.\n Please choose another name.\n </p>\n "
746
+ "documentation": "\n <p>\n Policy with the same name exists for this load balancer.\n Please choose another name.\n </p>\n "
748
747
  },
749
748
  {
750
749
  "shape_name": "TooManyPoliciesException",
751
750
  "type": "structure",
752
751
  "members": {
753
752
  },
754
- "documentation": "\n <p>\n Quota for number of policies for this LoadBalancer\n has already been reached.\n </p>\n "
753
+ "documentation": "\n <p>\n Quota for number of policies for this load balancer\n has already been reached.\n </p>\n "
755
754
  },
756
755
  {
757
756
  "shape_name": "InvalidConfigurationRequestException",
@@ -761,7 +760,7 @@
761
760
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
762
761
  }
763
762
  ],
764
- "documentation": "\n \t<p>\n \tCreates a new policy that contains the necessary attributes depending on the policy type.\n \tPolicies are settings that are saved for your Elastic LoadBalancer and that can be applied to the\n \tfront-end listener, or the back-end application server, depending on your policy type.\n \t</p>\n "
763
+ "documentation": "\n \t<p>\n \tCreates a new policy that contains the necessary attributes depending on the policy type.\n \tPolicies are settings that are saved for your load balancer and that can be applied to the\n \tfront-end listener, or the back-end application server, depending on your policy type.\n \t</p>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?PolicyAttributes.member.1.AttributeName=ProxyProtocol\n&PolicyAttributes.member.1.AttributeValue=true\n&PolicyTypeName=ProxyProtocolPolicyType\n&LoadBalancerName=my-test-loadbalancer\n&PolicyName=EnableProxyProtocol\n&Version=2012-06-01\n&Action=CreateLoadBalancerPolicy\n&AUTHPARAMS </queryrequest> \n <queryresponse><CreateLoadBalancerPolicyResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<CreateLoadBalancerPolicyResult/>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</CreateLoadBalancerPolicyResponse>\n </queryresponse>\n </examples> \n \n "
765
764
  },
766
765
  "DeleteLoadBalancer": {
767
766
  "name": "DeleteLoadBalancer",
@@ -772,23 +771,23 @@
772
771
  "LoadBalancerName": {
773
772
  "shape_name": "AccessPointName",
774
773
  "type": "string",
775
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
774
+ "documentation": "\n <p>\n The name associated with the load balancer. \n </p>\n ",
776
775
  "required": true
777
776
  }
778
777
  },
779
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>DeleteLoadBalancer</a> action.\n\t\t</p>\n "
778
+ "documentation": "\n <p>\n The input for the <a>DeleteLoadBalancer</a> action.\n </p>\n "
780
779
  },
781
780
  "output": {
782
781
  "shape_name": "DeleteAccessPointOutput",
783
782
  "type": "structure",
784
783
  "members": {
785
784
  },
786
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>DeleteLoadBalancer</a> action.\n\t\t</p>\n "
785
+ "documentation": "\n <p>\n The output for the <a>DeleteLoadBalancer</a> action.\n </p>\n "
787
786
  },
788
787
  "errors": [
789
788
 
790
789
  ],
791
- "documentation": "\n <p>\n Deletes the specified LoadBalancer.\n </p>\n <p>\n If attempting to recreate the LoadBalancer,\n the client must reconfigure all the settings.\n The DNS name associated with a deleted LoadBalancer\n will no longer be usable.\n Once deleted, the name and associated DNS record of the\n LoadBalancer no longer exist and traffic sent to any of its\n IP addresses will no longer be delivered to client instances.\n The client will not receive the same DNS name even if a\n new LoadBalancer with same LoadBalancerName is created.\n </p>\n <p>\n To successfully call this API, the client must provide the same\n account credentials as were used to create the LoadBalancer.\n </p>\n <note>\n By design, if the LoadBalancer does not exist or has already been deleted,\n DeleteLoadBalancer still succeeds.\n </note>\n "
790
+ "documentation": "\n <p>\n Deletes the specified load balancer.\n </p>\n <p>\n If attempting to recreate the load balancer,\n you must reconfigure all the settings.\n The DNS name associated with a deleted load balancer\n will no longer be usable.\n Once deleted, the name and associated DNS record of the\n load balancer no longer exist and traffic sent to any of its\n IP addresses will no longer be delivered to back-end instances. \n </p>\n <p>\n To successfully call this API, you must provide the same\n account credentials as were used to create the load balancer.\n </p>\n <note>\n By design, if the load balancer does not exist or has already been deleted, a call to\n <code>DeleteLoadBalancer</code> action still succeeds.\n </note>\n "
792
791
  },
793
792
  "DeleteLoadBalancerListeners": {
794
793
  "name": "DeleteLoadBalancerListeners",
@@ -799,7 +798,7 @@
799
798
  "LoadBalancerName": {
800
799
  "shape_name": "AccessPointName",
801
800
  "type": "string",
802
- "documentation": "\n \t<p>\n \tThe mnemonic name associated with the LoadBalancer. \n \t</p>\n ",
801
+ "documentation": "\n <p>\n The mnemonic name associated with the load balancer. \n </p>\n ",
803
802
  "required": true
804
803
  },
805
804
  "LoadBalancerPorts": {
@@ -810,18 +809,18 @@
810
809
  "type": "integer",
811
810
  "documentation": null
812
811
  },
813
- "documentation": "\n \t<p>\n The client port number(s) of the LoadBalancerListener(s) to be removed. \n \t</p>\n ",
812
+ "documentation": "\n <p>\n The client port number(s) of the load balancer listener(s) to be removed. \n </p>\n ",
814
813
  "required": true
815
814
  }
816
815
  },
817
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>DeleteLoadBalancerListeners</a> action.\n\t\t</p>\n "
816
+ "documentation": "\n <p>\n The input for the <a>DeleteLoadBalancerListeners</a> action.\n </p>\n "
818
817
  },
819
818
  "output": {
820
819
  "shape_name": "DeleteLoadBalancerListenerOutput",
821
820
  "type": "structure",
822
821
  "members": {
823
822
  },
824
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>DeleteLoadBalancerListeners</a> action.\n\t\t</p>\n "
823
+ "documentation": "\n <p>\n The output for the <a>DeleteLoadBalancerListeners</a> action.\n </p>\n "
825
824
  },
826
825
  "errors": [
827
826
  {
@@ -829,10 +828,10 @@
829
828
  "type": "structure",
830
829
  "members": {
831
830
  },
832
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
831
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
833
832
  }
834
833
  ],
835
- "documentation": "\n \t<p>\n \tDeletes listeners from the LoadBalancer for the specified port.\n \t</p>\n \n "
834
+ "documentation": "\n <p>\n Deletes listeners from the load balancer for the specified port.\n </p>\n \n "
836
835
  },
837
836
  "DeleteLoadBalancerPolicy": {
838
837
  "name": "DeleteLoadBalancerPolicy",
@@ -843,24 +842,24 @@
843
842
  "LoadBalancerName": {
844
843
  "shape_name": "AccessPointName",
845
844
  "type": "string",
846
- "documentation": "\n \t<p>\n \tThe mnemonic name associated with the LoadBalancer. \n \tThe name must be unique within your AWS account.\n \t</p>\n ",
845
+ "documentation": "\n <p>\n The mnemonic name associated with the load balancer. \n </p>\n ",
847
846
  "required": true
848
847
  },
849
848
  "PolicyName": {
850
849
  "shape_name": "PolicyName",
851
850
  "type": "string",
852
- "documentation": "\n \t<p>\n \tThe mnemonic name for the policy being deleted. \n \t</p>\n ",
851
+ "documentation": "\n <p>\n The mnemonic name for the policy being deleted. \n </p>\n ",
853
852
  "required": true
854
853
  }
855
854
  },
856
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>DeleteLoadBalancerPolicy</a> action.\n\t\t</p>\n "
855
+ "documentation": "\n <p>\n The input for the <a>DeleteLoadBalancerPolicy</a> action.\n </p>\n "
857
856
  },
858
857
  "output": {
859
858
  "shape_name": "DeleteLoadBalancerPolicyOutput",
860
859
  "type": "structure",
861
860
  "members": {
862
861
  },
863
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>DeleteLoadBalancerPolicy</a> action.\n\t\t</p>\n "
862
+ "documentation": "\n <p>\n The output for the <a>DeleteLoadBalancerPolicy</a> action.\n </p>\n "
864
863
  },
865
864
  "errors": [
866
865
  {
@@ -868,7 +867,7 @@
868
867
  "type": "structure",
869
868
  "members": {
870
869
  },
871
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
870
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
872
871
  },
873
872
  {
874
873
  "shape_name": "InvalidConfigurationRequestException",
@@ -878,7 +877,7 @@
878
877
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
879
878
  }
880
879
  ],
881
- "documentation": "\n \t<p>\n \tDeletes a policy from the LoadBalancer. \n \tThe specified policy must not be enabled for any listeners.\n \t</p>\n "
880
+ "documentation": "\n <p>\n Deletes a policy from the load balancer. \n The specified policy must not be enabled for any listeners.\n </p>\n "
882
881
  },
883
882
  "DeregisterInstancesFromLoadBalancer": {
884
883
  "name": "DeregisterInstancesFromLoadBalancer",
@@ -889,7 +888,7 @@
889
888
  "LoadBalancerName": {
890
889
  "shape_name": "AccessPointName",
891
890
  "type": "string",
892
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
891
+ "documentation": "\n <p>\n The name associated with the load balancer. \n </p>\n ",
893
892
  "required": true
894
893
  },
895
894
  "Instances": {
@@ -907,11 +906,11 @@
907
906
  },
908
907
  "documentation": "\n <p>\n The Instance data type.\n </p>\n "
909
908
  },
910
- "documentation": "\n <p>\n A list of EC2 instance IDs consisting of all\n instances to be deregistered.\n </p>\n ",
909
+ "documentation": "\n <p>\n A list of EC2 instance IDs consisting of all\n instances to be deregistered.\n </p>\n ",
911
910
  "required": true
912
911
  }
913
912
  },
914
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>DeregisterInstancesFromLoadBalancer</a> action.\n\t\t</p>\n "
913
+ "documentation": "\n <p>\n The input for the <a>DeregisterInstancesFromLoadBalancer</a> action.\n </p>\n "
915
914
  },
916
915
  "output": {
917
916
  "shape_name": "DeregisterEndPointsOutput",
@@ -932,10 +931,10 @@
932
931
  },
933
932
  "documentation": "\n <p>\n The Instance data type.\n </p>\n "
934
933
  },
935
- "documentation": "\n <p>\n An updated list of remaining instances\n registered with the LoadBalancer.\n </p>\n "
934
+ "documentation": "\n <p>\n An updated list of remaining instances\n registered with the load balancer.\n </p>\n "
936
935
  }
937
936
  },
938
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>DeregisterInstancesFromLoadBalancer</a> action.\n\t\t</p>\n "
937
+ "documentation": "\n <p>\n The output for the <a>DeregisterInstancesFromLoadBalancer</a> action.\n </p>\n "
939
938
  },
940
939
  "errors": [
941
940
  {
@@ -943,7 +942,7 @@
943
942
  "type": "structure",
944
943
  "members": {
945
944
  },
946
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
945
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
947
946
  },
948
947
  {
949
948
  "shape_name": "InvalidEndPointException",
@@ -953,7 +952,7 @@
953
952
  "documentation": "\n <p>\n The specified EndPoint is not valid.\n </p>\n "
954
953
  }
955
954
  ],
956
- "documentation": "\n <p>\n Deregisters instances from the LoadBalancer.\n Once the instance is deregistered,\n it will stop receiving traffic from the LoadBalancer.\n </p>\n <p>\n In order to successfully call this API,\n the same account credentials as those\n used to create the LoadBalancer must be provided.\n </p>\n "
955
+ "documentation": "\n <p>\n Deregisters instances from the load balancer.\n Once the instance is deregistered,\n it will stop receiving traffic from the load balancer. \n </p>\n <p>\n In order to successfully call this API,\n the same account credentials as those\n used to create the load balancer must be provided.\n </p>\n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_DeReg_Reg_Instances.html\">De-register and Register Amazon EC2 Instances</a> \n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <p>You can use <a>DescribeLoadBalancers</a> to verify if the instance is deregistered from the load balancer.</p> \n <examples>\n <example>\n <name>Deregister instance <i>i-e3677ad7</i> from <i>MyHTTPSLoadBalancer</i> load balancer.</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Instances.member.1.InstanceId=i-e3677ad7\n&LoadBalancerName=MyHTTPSLoadBalancer\n&Version=2012-06-01\n&Action=DeregisterInstancesFromLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><DeregisterInstancesFromLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DeregisterInstancesFromLoadBalancerResult>\n <Instances>\n <member>\n <InstanceId>i-6ec63d59</InstanceId>\n </member>\n </Instances>\n </DeregisterInstancesFromLoadBalancerResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</DeregisterInstancesFromLoadBalancerResponse>\n </queryresponse>\n </example>\n </examples> \n "
957
956
  },
958
957
  "DescribeInstanceHealth": {
959
958
  "name": "DescribeInstanceHealth",
@@ -964,7 +963,7 @@
964
963
  "LoadBalancerName": {
965
964
  "shape_name": "AccessPointName",
966
965
  "type": "string",
967
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
966
+ "documentation": "\n <p>\n The name of the load balancer. \n </p>\n ",
968
967
  "required": true
969
968
  },
970
969
  "Instances": {
@@ -985,7 +984,7 @@
985
984
  "documentation": "\n <p>\n A list of instance IDs whose states are being queried.\n </p>\n "
986
985
  }
987
986
  },
988
- "documentation": "\n <p>\n Returns the current state of the instances of the\n specified LoadBalancer. If no instances are specified,\n the state of all the instances for the LoadBalancer is returned.\n </p>\n "
987
+ "documentation": "\n <p>\n The input for the <a>DescribeEndPointState</a> action.\n </p>\n "
989
988
  },
990
989
  "output": {
991
990
  "shape_name": "DescribeEndPointStateOutput",
@@ -1006,12 +1005,12 @@
1006
1005
  "State": {
1007
1006
  "shape_name": "State",
1008
1007
  "type": "string",
1009
- "documentation": "\n <p>\n Specifies the current state of the instance.\n Valid value: InService|OutOfService\n </p>\n "
1008
+ "documentation": "\n <p>Specifies the current state of the instance.</p>\n \n <p>Valid value: <code>InService</code>|<code>OutOfService</code></p>\n "
1010
1009
  },
1011
1010
  "ReasonCode": {
1012
1011
  "shape_name": "ReasonCode",
1013
1012
  "type": "string",
1014
- "documentation": "\n <p>\n Provides information about the cause of <i>OutOfService</i> instances.\n Specifically, it indicates whether the cause is Elastic Load Balancing\n or the instance behind the LoadBalancer.\n </p>\n "
1013
+ "documentation": "\n <p>\n Provides information about the cause of <i>OutOfService</i> instances.\n Specifically, it indicates whether the cause is Elastic Load Balancing\n or the instance behind the load balancer.\n </p>\n <p>Valid value: <code>ELB</code>|<code>Instance</code>|<code>N/A</code></p>\n "
1015
1014
  },
1016
1015
  "Description": {
1017
1016
  "shape_name": "Description",
@@ -1032,7 +1031,7 @@
1032
1031
  "type": "structure",
1033
1032
  "members": {
1034
1033
  },
1035
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1034
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1036
1035
  },
1037
1036
  {
1038
1037
  "shape_name": "InvalidEndPointException",
@@ -1042,7 +1041,67 @@
1042
1041
  "documentation": "\n <p>\n The specified EndPoint is not valid.\n </p>\n "
1043
1042
  }
1044
1043
  ],
1045
- "documentation": "\n <p>\n Returns the current state of the instances of the specified LoadBalancer.\n If no instances are specified, the state of all the instances for the\n LoadBalancer is returned.\n </p>\n <note>\n The client must have created the specified input\n LoadBalancer in order to retrieve this information;\n the client must provide the same account credentials\n as those that were used to create the LoadBalancer.\n </note>\n "
1044
+ "documentation": "\n <p>\n Returns the current state of the specified instances registered with the specified load balancer.\n If no instances are specified, the state of all the instances registered with the load balancer is returned.\n </p>\n <note>\n You must provide the same account credentials\n as those that were used to create the load balancer.\n </note>\n <examples>\n <example>\n <name>Description of a healthy (InService) instance</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyLoadBalancer\n&Version=2012-06-01\n&Action=DescribeInstanceHealth\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeInstanceHealthResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeInstanceHealthResult>\n <InstanceStates>\n <member>\n <Description>N/A</Description>\n <InstanceId>i-90d8c2a5</InstanceId>\n <State>InService</State>\n <ReasonCode>N/A</ReasonCode>\n </member>\n </InstanceStates>\n </DescribeInstanceHealthResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</DescribeInstanceHealthResponse> \n </queryresponse>\n </example> \n <example>\n <name>Description of an instance with registration in progress</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=my-test-loadbalancer\n&Version=2012-06-01\n&Action=DescribeInstanceHealth\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeInstanceHealthResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeInstanceHealthResult>\n <InstanceStates>\n <member>\n <Description>Instance registration is still in progress.</Description>\n <InstanceId>i-315b7e51</InstanceId>\n <State>OutOfService</State>\n <ReasonCode>ELB</ReasonCode>\n </member>\n </InstanceStates>\n </DescribeInstanceHealthResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</DescribeInstanceHealthResponse> \n </queryresponse>\n </example> \n <example>\n <name>Description of an unhealthy (OutOfService) instance</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyLoadBalancer-2\n&Version=2012-06-01\n&Action=DescribeInstanceHealth\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeInstanceHealthResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeInstanceHealthResult>\n <InstanceStates>\n <member>\n <Description>Instance has failed at least the UnhealthyThreshold number of health checks consecutively.</Description>\n <InstanceId>i-fda142c9</InstanceId>\n <State>OutOfService</State>\n <ReasonCode>Instance</ReasonCode>\n </member>\n </InstanceStates>\n </DescribeInstanceHealthResult>\n <ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</DescribeInstanceHealthResponse>\n </queryresponse>\n </example> \n </examples> \n "
1045
+ },
1046
+ "DescribeLoadBalancerAttributes": {
1047
+ "name": "DescribeLoadBalancerAttributes",
1048
+ "input": {
1049
+ "shape_name": "DescribeLoadBalancerAttributesInput",
1050
+ "type": "structure",
1051
+ "members": {
1052
+ "LoadBalancerName": {
1053
+ "shape_name": "AccessPointName",
1054
+ "type": "string",
1055
+ "documentation": "\n <p>The name of the load balancer.</p> \n ",
1056
+ "required": true
1057
+ }
1058
+ },
1059
+ "documentation": "\n <p>The input for the <a>DescribeLoadBalancerAttributes</a> action.</p> \n "
1060
+ },
1061
+ "output": {
1062
+ "shape_name": "DescribeLoadBalancerAttributesOutput",
1063
+ "type": "structure",
1064
+ "members": {
1065
+ "LoadBalancerAttributes": {
1066
+ "shape_name": "LoadBalancerAttributes",
1067
+ "type": "structure",
1068
+ "members": {
1069
+ "CrossZoneLoadBalancing": {
1070
+ "shape_name": "CrossZoneLoadBalancing",
1071
+ "type": "structure",
1072
+ "members": {
1073
+ "Enabled": {
1074
+ "shape_name": "CrossZoneLoadBalancingEnabled",
1075
+ "type": "boolean",
1076
+ "documentation": "\n <p>Specifies whether cross-zone load balancing is enabled for the load balancer.</p>\n ",
1077
+ "required": true
1078
+ }
1079
+ },
1080
+ "documentation": "\n <p>The name of the load balancer attribute.</p> \n "
1081
+ }
1082
+ },
1083
+ "documentation": "\n <p>The load balancer attributes structure.</p> \n "
1084
+ }
1085
+ },
1086
+ "documentation": "\n <p>The following element is returned in a structure named <code>DescribeLoadBalancerAttributesResult</code>.</p> \n "
1087
+ },
1088
+ "errors": [
1089
+ {
1090
+ "shape_name": "AccessPointNotFoundException",
1091
+ "type": "structure",
1092
+ "members": {
1093
+ },
1094
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1095
+ },
1096
+ {
1097
+ "shape_name": "LoadBalancerAttributeNotFoundException",
1098
+ "type": "structure",
1099
+ "members": {
1100
+ },
1101
+ "documentation": "\n <p>The specified load balancer attribute could not be found.</p> \n "
1102
+ }
1103
+ ],
1104
+ "documentation": "\n <p>Returns detailed information about all of the attributes associated with the specified load balancer.</p> \n "
1046
1105
  },
1047
1106
  "DescribeLoadBalancerPolicies": {
1048
1107
  "name": "DescribeLoadBalancerPolicies",
@@ -1053,7 +1112,7 @@
1053
1112
  "LoadBalancerName": {
1054
1113
  "shape_name": "AccessPointName",
1055
1114
  "type": "string",
1056
- "documentation": "\n \t<p>\n \tThe mnemonic name associated with the LoadBalancer.\n \tIf no name is specified, the operation returns the attributes of either all the sample policies pre-defined by Elastic Load Balancing or the specified sample polices.\n \t</p>\n "
1115
+ "documentation": "\n \t<p>\n \tThe mnemonic name associated with the load balancer.\n \tIf no name is specified, the operation returns the attributes of either all the sample policies pre-defined by Elastic Load Balancing or the specified sample polices.\n \t</p>\n "
1057
1116
  },
1058
1117
  "PolicyNames": {
1059
1118
  "shape_name": "PolicyNames",
@@ -1063,7 +1122,7 @@
1063
1122
  "type": "string",
1064
1123
  "documentation": null
1065
1124
  },
1066
- "documentation": "\n \t<p>\n \t The names of LoadBalancer policies you've created or Elastic Load Balancing sample policy names.\n \t</p>\n "
1125
+ "documentation": "\n \t<p>\n \t The names of load balancer policies you've created or Elastic Load Balancing sample policy names.\n \t</p>\n "
1067
1126
  }
1068
1127
  },
1069
1128
  "documentation": "\n "
@@ -1082,12 +1141,12 @@
1082
1141
  "PolicyName": {
1083
1142
  "shape_name": "PolicyName",
1084
1143
  "type": "string",
1085
- "documentation": "\n \t<p>\n \tThe name mof the policy associated with the LoadBalancer.\n \t</p>\n "
1144
+ "documentation": "\n <p>\n The name of the policy associated with the load balancer.\n </p>\n "
1086
1145
  },
1087
1146
  "PolicyTypeName": {
1088
1147
  "shape_name": "PolicyTypeName",
1089
1148
  "type": "string",
1090
- "documentation": "\n \t<p>\n \tThe name of the policy type associated with the LoadBalancer.\n \t</p>\n "
1149
+ "documentation": "\n <p>\n The name of the policy type associated with the load balancer.\n </p>\n "
1091
1150
  },
1092
1151
  "PolicyAttributeDescriptions": {
1093
1152
  "shape_name": "PolicyAttributeDescriptions",
@@ -1099,20 +1158,20 @@
1099
1158
  "AttributeName": {
1100
1159
  "shape_name": "AttributeName",
1101
1160
  "type": "string",
1102
- "documentation": "\n \t<p>\n \tThe name of the attribute associated with the policy.\n \t</p>\n "
1161
+ "documentation": "\n <p>\n The name of the attribute associated with the policy.\n </p>\n "
1103
1162
  },
1104
1163
  "AttributeValue": {
1105
1164
  "shape_name": "AttributeValue",
1106
1165
  "type": "string",
1107
- "documentation": "\n \t<p>\n \tThe value of the attribute associated with the policy.\n \t</p>\n "
1166
+ "documentation": "\n <p>\n The value of the attribute associated with the policy.\n </p>\n "
1108
1167
  }
1109
1168
  },
1110
- "documentation": "\n \t<p>\n \tThe <code>PolicyAttributeDescription</code> data type.\n \tThis data type is used to describe the attributes and values\n \tassociated with a policy.\n \t</p>\n "
1169
+ "documentation": "\n <p>\n The <code>PolicyAttributeDescription</code> data type.\n This data type is used to describe the attributes and values\n associated with a policy.\n </p>\n "
1111
1170
  },
1112
- "documentation": "\n \t<p>\n \tA list of policy attribute description structures.\n \t</p>\n "
1171
+ "documentation": "\n <p>\n A list of policy attribute description structures.\n </p>\n "
1113
1172
  }
1114
1173
  },
1115
- "documentation": "\n \t<p>\n \tThe <code>PolicyDescription</code> data type.\n \t</p>\n "
1174
+ "documentation": "\n <p>\n The <code>PolicyDescription</code> data type.\n </p>\n "
1116
1175
  },
1117
1176
  "documentation": "\n \t<p>\n \tA list of policy description structures.\n \t</p>\n "
1118
1177
  }
@@ -1125,7 +1184,7 @@
1125
1184
  "type": "structure",
1126
1185
  "members": {
1127
1186
  },
1128
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1187
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1129
1188
  },
1130
1189
  {
1131
1190
  "shape_name": "PolicyNotFoundException",
@@ -1135,7 +1194,7 @@
1135
1194
  "documentation": "\n <p>\n One or more specified policies were not found.\n </p>\n "
1136
1195
  }
1137
1196
  ],
1138
- "documentation": "\n <p>Returns detailed descriptions of the policies.\n If you specify a LoadBalancer name, the operation returns either the descriptions of the specified policies, or descriptions of all the policies created for the LoadBalancer.\n If you don't specify a LoadBalancer name, the operation returns descriptions of the specified sample policies, or descriptions of all the sample policies.\n The names of the sample policies have the <code>ELBSample-</code> prefix.\n </p>\n "
1197
+ "documentation": "\n <p>Returns detailed descriptions of the policies.\n If you specify a load balancer name, the action returns the descriptions of all the policies created for the load balancer.\n If you specify a policy name associated with your load balancer, the action returns the description of that policy. \n If you don't specify a load balancer name, the action returns descriptions of the specified sample policies, or descriptions of all the sample policies.\n The names of the sample policies have the <code>ELBSample-</code> prefix.\n </p>\n <examples>\n <example>\n <name>Description of all the policies associated with a load balancer</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyLoadBalancer\n&Version=2012-06-01\n&Action=DescribeLoadBalancerPolicies\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeLoadBalancerPoliciesResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeLoadBalancerPoliciesResult>\n <PolicyDescriptions>\n <member>\n <PolicyName>MyDurationStickyPolicy</PolicyName>\n <PolicyTypeName>LBCookieStickinessPolicyType</PolicyTypeName>\n <PolicyAttributeDescriptions>\n <member>\n <AttributeName>CookieExpirationPeriod</AttributeName>\n <AttributeValue>60</AttributeValue>\n </member>\n </PolicyAttributeDescriptions>\n </member>\n <member>\n <PolicyName>MyAppStickyPolicy</PolicyName>\n <PolicyTypeName>AppCookieStickinessPolicyType</PolicyTypeName>\n <PolicyAttributeDescriptions>\n <member>\n <AttributeName>CookieName</AttributeName>\n <AttributeValue>MyAppCookie</AttributeValue>\n </member>\n </PolicyAttributeDescriptions>\n </member>\n </PolicyDescriptions>\n </DescribeLoadBalancerPoliciesResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</DescribeLoadBalancerPoliciesResponse>\n </queryresponse>\n </example> \n <example>\n <name>Description of a specified policy associated with the load balancer</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?PolicyNames.member.1=EnableProxyProtocol\n&LoadBalancerName=my-test-loadbalancer\n&Version=2012-06-01\n&Action=DescribeLoadBalancerPolicies\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeLoadBalancerPoliciesResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeLoadBalancerPoliciesResult>\n <PolicyDescriptions>\n <member>\n <PolicyName>EnableProxyProtocol</PolicyName>\n <PolicyTypeName>ProxyProtocolPolicyType</PolicyTypeName>\n <PolicyAttributeDescriptions>\n <member>\n <AttributeName>ProxyProtocol</AttributeName>\n <AttributeValue>true</AttributeValue>\n </member>\n </PolicyAttributeDescriptions>\n </member>\n </PolicyDescriptions> \n </DescribeLoadBalancerPoliciesResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</DescribeLoadBalancerPoliciesResponse>\n </queryresponse>\n </example> \n </examples> \n "
1139
1198
  },
1140
1199
  "DescribeLoadBalancerPolicyTypes": {
1141
1200
  "name": "DescribeLoadBalancerPolicyTypes",
@@ -1170,12 +1229,12 @@
1170
1229
  "PolicyTypeName": {
1171
1230
  "shape_name": "PolicyTypeName",
1172
1231
  "type": "string",
1173
- "documentation": "\n \t<p>\n \tThe name of the policy type.\n \t</p>\n "
1232
+ "documentation": "\n <p>\n The name of the policy type.\n </p>\n "
1174
1233
  },
1175
1234
  "Description": {
1176
1235
  "shape_name": "Description",
1177
1236
  "type": "string",
1178
- "documentation": "\n \t<p>\n \tA human-readable description of the policy type.\n \t</p>\n "
1237
+ "documentation": "\n <p>\n A human-readable description of the policy type.\n </p>\n "
1179
1238
  },
1180
1239
  "PolicyAttributeTypeDescriptions": {
1181
1240
  "shape_name": "PolicyAttributeTypeDescriptions",
@@ -1187,35 +1246,35 @@
1187
1246
  "AttributeName": {
1188
1247
  "shape_name": "AttributeName",
1189
1248
  "type": "string",
1190
- "documentation": "\n \t<p>\n \tThe name of the attribute associated with the policy type.\n \t</p>\n "
1249
+ "documentation": "\n <p>\n The name of the attribute associated with the policy type.\n </p>\n "
1191
1250
  },
1192
1251
  "AttributeType": {
1193
1252
  "shape_name": "AttributeType",
1194
1253
  "type": "string",
1195
- "documentation": "\n \t<p>\n \tThe type of attribute. For example, Boolean, Integer, etc.\n \t</p>\n "
1254
+ "documentation": "\n <p>\n The type of attribute. For example, Boolean, Integer, etc.\n </p>\n "
1196
1255
  },
1197
1256
  "Description": {
1198
1257
  "shape_name": "Description",
1199
1258
  "type": "string",
1200
- "documentation": "\n \t<p>\n \tA human-readable description of the attribute.\n \t</p>\n "
1259
+ "documentation": "\n <p>\n A human-readable description of the attribute.\n </p>\n "
1201
1260
  },
1202
1261
  "DefaultValue": {
1203
1262
  "shape_name": "DefaultValue",
1204
1263
  "type": "string",
1205
- "documentation": "\n \t<p>\n \tThe default value of the attribute, if applicable.\n \t</p>\n "
1264
+ "documentation": "\n <p>\n The default value of the attribute, if applicable.\n </p>\n "
1206
1265
  },
1207
1266
  "Cardinality": {
1208
1267
  "shape_name": "Cardinality",
1209
1268
  "type": "string",
1210
- "documentation": "\n \t<p>\n \tThe cardinality of the attribute. Valid Values:\n \t\t<ul>\n \t\t\t<li>ONE(1) : Single value required</li>\n \t\t\t<li>ZERO_OR_ONE(0..1) : Up to one value can be supplied</li>\n \t\t\t<li>ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed</li>\n \t\t\t<li>ONE_OR_MORE(1..*0) : Required. Multiple values are allowed</li>\n \t\t</ul>\n \t</p>\n "
1269
+ "documentation": "\n <p>\n The cardinality of the attribute. Valid Values:\n <ul>\n <li>ONE(1) : Single value required</li>\n <li>ZERO_OR_ONE(0..1) : Up to one value can be supplied</li>\n <li>ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed</li>\n <li>ONE_OR_MORE(1..*0) : Required. Multiple values are allowed</li>\n </ul>\n </p>\n "
1211
1270
  }
1212
1271
  },
1213
- "documentation": "\n \t<p>\n \tThe <code>PolicyAttributeTypeDescription</code> data type. This data type is used to describe values\n \tthat are acceptable for the policy attribute.\n \t</p>\n "
1272
+ "documentation": "\n <p>\n The <code>PolicyAttributeTypeDescription</code> data type. This data type is used to describe values\n that are acceptable for the policy attribute.\n </p>\n "
1214
1273
  },
1215
- "documentation": "\n \t<p>\n \tThe description of the policy attributes associated with the LoadBalancer policies defined by the Elastic Load Balancing service.\n \t</p>\n "
1274
+ "documentation": "\n <p>\n The description of the policy attributes associated with the load balancer policies defined by the Elastic Load Balancing service.\n </p>\n "
1216
1275
  }
1217
1276
  },
1218
- "documentation": "\n \t<p>\n \tThe <a>PolicyTypeDescription</a> data type.\n \t</p>\n "
1277
+ "documentation": "\n <p>\n The <a>PolicyTypeDescription</a> data type.\n </p>\n "
1219
1278
  },
1220
1279
  "documentation": "\n \t<p>\n \tList of policy type description structures of the specified policy type.\n \tIf no policy type names are specified,\n \treturns the description of all the policy types defined by Elastic Load Balancing service.\n \t</p>\n "
1221
1280
  }
@@ -1228,10 +1287,10 @@
1228
1287
  "type": "structure",
1229
1288
  "members": {
1230
1289
  },
1231
- "documentation": "\n \t<p>\n \tOne or more of the specified policy types do not exist.\n \t</p>\n "
1290
+ "documentation": "\n <p>\n One or more of the specified policy types do not exist.\n </p>\n "
1232
1291
  }
1233
1292
  ],
1234
- "documentation": "\n \t<p>\n \tReturns meta-information on the specified LoadBalancer policies defined by the\n \tElastic Load Balancing service. The policy types that are\n \treturned from this action can be used in a <a>CreateLoadBalancerPolicy</a> action to\n \tinstantiate specific policy configurations that will be applied to an Elastic LoadBalancer.\n \t</p>\n "
1293
+ "documentation": "\n \t<p>\n \tReturns meta-information on the specified load balancer policies defined by the\n \tElastic Load Balancing service. The policy types that are\n \treturned from this action can be used in a <a>CreateLoadBalancerPolicy</a> action to\n \tinstantiate specific policy configurations that will be applied to a load balancer.\n \t</p>\n <examples>\n <example>\n <name>Partial description of all the policy types defined by Elastic Load Balancing for your account</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Version=2012-06-01\n&Action=DescribeLoadBalancerPolicyTypes\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeLoadBalancerPolicyTypesResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n<DescribeLoadBalancerPolicyTypesResult>\n <PolicyTypeName>SSLNegotiationPolicyType</PolicyTypeName>\n < . . . .>\n <PolicyTypeName>BackendServerAuthenticationPolicyType</PolicyTypeName>\n < . . . .>\n <PolicyTypeName>PublicKeyPolicyType</PolicyTypeName>\n < . . . .>\n <PolicyTypeName>AppCookieStickinessPolicyType</PolicyTypeName>\n < . . . .>\n <PolicyTypeName>LBCookieStickinessPolicyType</PolicyTypeName>\n < . . . .>\n <PolicyTypeName>ProxyProtocolPolicyType</PolicyTypeName>\n < . . . .>\n</DescribeLoadBalancerPolicyTypesResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</ DescribeLoadBalancerPolicyTypesResponse >\t\n </queryresponse>\n </example> \n <example>\n <name>Description of ProxyProtocolPolicyType</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?PolicyTypeNames.member.1=ProxyProtocolPolicyType\n&Version=2012-06-01\n&Action=DescribeLoadBalancerPolicyTypes\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeLoadBalancerPolicyTypesResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DescribeLoadBalancerPolicyTypesResult>\n <PolicyTypeDescriptions>\n <member>\n <PolicyAttributeTypeDescriptions>\n <member>\n <AttributeName>ProxyProtocol</AttributeName>\n <AttributeType>Boolean</AttributeType>\n <Cardinality>ONE</Cardinality>\n </member>\n </PolicyAttributeTypeDescriptions>\n <PolicyTypeName>ProxyProtocolPolicyType</PolicyTypeName>\n <Description>Policy that controls whether to include the IP address and port of the originating request for TCP messages.\n This policy operates on TCP/SSL listeners only</Description>\n </member>\n </PolicyTypeDescriptions>\n </DescribeLoadBalancerPolicyTypesResult>\n <ResponseMetadata>\n <RequestId>1549581b-12b7-11e3-895e-1334aEXAMPLE</RequestId>\n </ResponseMetadata>\n</DescribeLoadBalancerPolicyTypesResponse>\n </queryresponse>\n </example> \n </examples> \n \n "
1235
1294
  },
1236
1295
  "DescribeLoadBalancers": {
1237
1296
  "name": "DescribeLoadBalancers",
@@ -1247,7 +1306,7 @@
1247
1306
  "type": "string",
1248
1307
  "documentation": null
1249
1308
  },
1250
- "documentation": "\n <p>\n A list of names associated with the LoadBalancers at creation time.\n </p>\n "
1309
+ "documentation": "\n <p>\n A list of load balancer names associated with the account.\n </p>\n "
1251
1310
  },
1252
1311
  "Marker": {
1253
1312
  "shape_name": "Marker",
@@ -1271,22 +1330,22 @@
1271
1330
  "LoadBalancerName": {
1272
1331
  "shape_name": "AccessPointName",
1273
1332
  "type": "string",
1274
- "documentation": "\n <p>\n Specifies the name associated with the LoadBalancer.\n </p>\n "
1333
+ "documentation": "\n <p>\n Specifies the name associated with the load balancer.\n </p>\n "
1275
1334
  },
1276
1335
  "DNSName": {
1277
1336
  "shape_name": "DNSName",
1278
1337
  "type": "string",
1279
- "documentation": "\n <p>\n Specifies the external DNS name associated with the LoadBalancer.\n </p>\n "
1338
+ "documentation": "\n <p>\n Specifies the external DNS name associated with the load balancer.\n </p>\n "
1280
1339
  },
1281
1340
  "CanonicalHostedZoneName": {
1282
1341
  "shape_name": "DNSName",
1283
1342
  "type": "string",
1284
- "documentation": "\n <p>\n Provides the name of the Amazon Route 53 hosted zone that is associated\n with the LoadBalancer. For information on how to associate your load\n balancer with a hosted zone, go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html\">Using Domain Names With Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.\n </p>\n "
1343
+ "documentation": "\n <p>\n Provides the name of the Amazon Route 53 hosted zone that is associated\n with the load balancer. For information on how to associate your load\n balancer with a hosted zone, go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html\">Using Domain Names With Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.\n </p>\n "
1285
1344
  },
1286
1345
  "CanonicalHostedZoneNameID": {
1287
1346
  "shape_name": "DNSName",
1288
1347
  "type": "string",
1289
- "documentation": "\n <p>\n Provides the ID of the Amazon Route 53 hosted zone name that is associated\n with the LoadBalancer. For information on how to associate or disassociate your load\n balancer with a hosted zone, go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html\">Using Domain Names With Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>. \n </p>\n "
1348
+ "documentation": "\n <p>\n Provides the ID of the Amazon Route 53 hosted zone name that is associated\n with the load balancer. For information on how to associate or disassociate your load\n balancer with a hosted zone, go to <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html\">Using Domain Names With Elastic Load Balancing</a>\n in the <i>Elastic Load Balancing Developer Guide</i>. \n </p>\n "
1290
1349
  },
1291
1350
  "ListenerDescriptions": {
1292
1351
  "shape_name": "ListenerDescriptions",
@@ -1302,32 +1361,32 @@
1302
1361
  "Protocol": {
1303
1362
  "shape_name": "Protocol",
1304
1363
  "type": "string",
1305
- "documentation": "\n <p>\n Specifies the LoadBalancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
1364
+ "documentation": "\n <p>\n Specifies the load balancer transport protocol to use for routing\n - HTTP, HTTPS, TCP or SSL.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
1306
1365
  "required": true
1307
1366
  },
1308
1367
  "LoadBalancerPort": {
1309
1368
  "shape_name": "AccessPointPort",
1310
1369
  "type": "integer",
1311
- "documentation": "\n <p>\n Specifies the external LoadBalancer port number.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
1370
+ "documentation": "\n <p>\n Specifies the external load balancer port number.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
1312
1371
  "required": true
1313
1372
  },
1314
1373
  "InstanceProtocol": {
1315
1374
  "shape_name": "Protocol",
1316
1375
  "type": "string",
1317
- "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the LoadBalancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
1376
+ "documentation": "\n \t<p>\n \tSpecifies the protocol to use for routing traffic to back-end instances - HTTP, HTTPS, TCP, or SSL.\n \tThis property cannot be modified for the life of the load balancer.\n \t</p>\n \t<note>\n \tIf the front-end protocol is HTTP or HTTPS, <code>InstanceProtocol</code> has to be at the same protocol layer,\n \t i.e., HTTP or HTTPS. Likewise, if the front-end protocol is TCP or SSL, InstanceProtocol has to be TCP or SSL.\n \t</note>\n \t<note>\n \tIf there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is secure,\n \ti.e., HTTPS or SSL, the listener's <code>InstanceProtocol</code> has to be secure, i.e., HTTPS or SSL. \n If there is another listener with the same <code>InstancePort</code> whose <code>InstanceProtocol</code> is HTTP or TCP,\n the listener's <code>InstanceProtocol</code> must be either HTTP or TCP. \n \t</note>\n "
1318
1377
  },
1319
1378
  "InstancePort": {
1320
1379
  "shape_name": "InstancePort",
1321
1380
  "type": "integer",
1322
1381
  "min_length": 1,
1323
1382
  "max_length": 65535,
1324
- "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the LoadBalancer.\n </p>\n ",
1383
+ "documentation": "\n <p>\n Specifies the TCP port on which the instance server is listening.\n This property cannot be modified for the life of the load balancer.\n </p>\n ",
1325
1384
  "required": true
1326
1385
  },
1327
1386
  "SSLCertificateId": {
1328
1387
  "shape_name": "SSLCertificateId",
1329
1388
  "type": "string",
1330
- "documentation": "\n \t<p>\n \tThe ARN string of the server certificate. \n \tTo get the ARN of the server certificate, call the AWS Identity and Access Management \n \t <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n \t</a> API. </p>\n "
1389
+ "documentation": "\n <p>\n The ARN string of the server certificate. \n To get the ARN of the server certificate, call the AWS Identity and Access Management \n <a href=\"http://docs.aws.amazon.com/IAM/latest/APIReference/index.html?API_UploadServerCertificate.html\">UploadServerCertificate \t\n </a> API. </p>\n "
1331
1390
  }
1332
1391
  },
1333
1392
  "documentation": "\n <p>\n The Listener data type.\n </p>\n "
@@ -1340,10 +1399,10 @@
1340
1399
  "type": "string",
1341
1400
  "documentation": null
1342
1401
  },
1343
- "documentation": "\n \t<p>\n \tA list of policies enabled for this listener. \n \tAn empty list indicates that no policies are enabled.\n \t</p>\n "
1402
+ "documentation": "\n <p>\n A list of policies enabled for this listener. \n An empty list indicates that no policies are enabled.\n </p>\n "
1344
1403
  }
1345
1404
  },
1346
- "documentation": "\n \t<p>\n \tThe ListenerDescription data type. \n \t</p>\n "
1405
+ "documentation": "\n <p>\n The ListenerDescription data type. \n </p>\n "
1347
1406
  },
1348
1407
  "documentation": "\n <p>\n LoadBalancerPort, InstancePort, Protocol, InstanceProtocol, and PolicyNames are returned\n in a list of tuples in the ListenerDescriptions element.\n </p>\n "
1349
1408
  },
@@ -1361,17 +1420,17 @@
1361
1420
  "PolicyName": {
1362
1421
  "shape_name": "PolicyName",
1363
1422
  "type": "string",
1364
- "documentation": "\n <p>The mnemonic name for the policy being created. The name must be unique within a set of policies for this LoadBalancer.\n </p>\n "
1423
+ "documentation": "\n <p>The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer.\n </p>\n "
1365
1424
  },
1366
1425
  "CookieName": {
1367
1426
  "shape_name": "CookieName",
1368
1427
  "type": "string",
1369
- "documentation": "\n <p>The name of the application cookie used for stickiness.\n </p>\n \n "
1428
+ "documentation": "\n <p>The name of the application cookie used for stickiness.\n </p>\n \n "
1370
1429
  }
1371
1430
  },
1372
- "documentation": "\n <p>The AppCookieStickinessPolicy data type.\n </p>\n "
1431
+ "documentation": "\n <p>The AppCookieStickinessPolicy data type.\n </p>\n "
1373
1432
  },
1374
- "documentation": "\n \t<p>\n \tA list of the <a>AppCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.\n \t</p>\n "
1433
+ "documentation": "\n <p>\n A list of the <a>AppCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.\n </p>\n "
1375
1434
  },
1376
1435
  "LBCookieStickinessPolicies": {
1377
1436
  "shape_name": "LBCookieStickinessPolicies",
@@ -1383,17 +1442,17 @@
1383
1442
  "PolicyName": {
1384
1443
  "shape_name": "PolicyName",
1385
1444
  "type": "string",
1386
- "documentation": "\n <p>The name for the policy being created. The name must be unique within the set of policies for this LoadBalancer.\n </p>\n "
1445
+ "documentation": "\n <p>The name for the policy being created. The name must be unique within the set of policies for this load balancer.\n </p>\n "
1387
1446
  },
1388
1447
  "CookieExpirationPeriod": {
1389
1448
  "shape_name": "CookieExpirationPeriod",
1390
1449
  "type": "long",
1391
- "documentation": "\n <p>The time period in seconds after which the cookie should be considered stale. Not specifying this parameter indicates that the stickiness session will last for the duration of the browser session.\n </p>\n "
1450
+ "documentation": "\n <p>The time period in seconds after which the cookie should be considered stale. Not specifying this parameter indicates that the stickiness session will last for the duration of the browser session.\n </p>\n "
1392
1451
  }
1393
1452
  },
1394
- "documentation": "\n <p>The LBCookieStickinessPolicy data type.\n </p>\n "
1453
+ "documentation": "\n <p>The LBCookieStickinessPolicy data type.\n </p>\n "
1395
1454
  },
1396
- "documentation": "\n \t<p>\n \tA list of <a>LBCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.\n \t</p>\n "
1455
+ "documentation": "\n <p>\n A list of <a>LBCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.\n </p>\n "
1397
1456
  },
1398
1457
  "OtherPolicies": {
1399
1458
  "shape_name": "PolicyNames",
@@ -1403,10 +1462,10 @@
1403
1462
  "type": "string",
1404
1463
  "documentation": null
1405
1464
  },
1406
- "documentation": "\n \t<p>\n \tA list of policy names other than the stickiness policies.\n \t</p>\n "
1465
+ "documentation": "\n <p>\n A list of policy names other than the stickiness policies.\n </p>\n "
1407
1466
  }
1408
1467
  },
1409
- "documentation": "\n \t\t<p>\n \t\tProvides a list of policies defined for the LoadBalancer.\n \t\t</p>\n \t"
1468
+ "documentation": "\n \t\t<p>\n \t\tProvides a list of policies defined for the load balancer.\n \t\t</p>\n \t"
1410
1469
  },
1411
1470
  "BackendServerDescriptions": {
1412
1471
  "shape_name": "BackendServerDescriptions",
@@ -1420,7 +1479,7 @@
1420
1479
  "type": "integer",
1421
1480
  "min_length": 1,
1422
1481
  "max_length": 65535,
1423
- "documentation": "\n \t<p>\n \tProvides the port on which the back-end server is listening.\n \t</p>\n "
1482
+ "documentation": "\n <p>\n Provides the port on which the back-end server is listening.\n </p>\n "
1424
1483
  },
1425
1484
  "PolicyNames": {
1426
1485
  "shape_name": "PolicyNames",
@@ -1430,12 +1489,12 @@
1430
1489
  "type": "string",
1431
1490
  "documentation": null
1432
1491
  },
1433
- "documentation": "\n \t<p>\n \tProvides a list of policy names enabled for the back-end server.\n \t</p>\n "
1492
+ "documentation": "\n <p>\n Provides a list of policy names enabled for the back-end server.\n </p>\n "
1434
1493
  }
1435
1494
  },
1436
- "documentation": "\n \t<p>\n \tThis data type is used as a response element in the <a>DescribeLoadBalancers</a> action to describe the configuration of the back-end server.\n \t</p>\n "
1495
+ "documentation": "\n <p>\n This data type is used as a response element in the <a>DescribeLoadBalancers</a> action to describe the configuration of the back-end server.\n </p>\n "
1437
1496
  },
1438
- "documentation": "\n \t<p>\n \tContains a list of back-end server descriptions.\n \t</p>\n "
1497
+ "documentation": "\n <p>\n Contains a list of back-end server descriptions.\n </p>\n "
1439
1498
  },
1440
1499
  "AvailabilityZones": {
1441
1500
  "shape_name": "AvailabilityZones",
@@ -1455,12 +1514,12 @@
1455
1514
  "type": "string",
1456
1515
  "documentation": null
1457
1516
  },
1458
- "documentation": "\n <p>\n Provides a list of VPC subnet IDs for the LoadBalancer.\n </p> \n "
1517
+ "documentation": "\n <p>\n Provides a list of VPC subnet IDs for the load balancer.\n </p> \n "
1459
1518
  },
1460
1519
  "VPCId": {
1461
1520
  "shape_name": "VPCId",
1462
1521
  "type": "string",
1463
- "documentation": "\n <p>\n Provides the ID of the VPC attached to the LoadBalancer.\n </p> \n "
1522
+ "documentation": "\n <p>\n Provides the ID of the VPC attached to the load balancer.\n </p> \n "
1464
1523
  },
1465
1524
  "Instances": {
1466
1525
  "shape_name": "Instances",
@@ -1477,7 +1536,7 @@
1477
1536
  },
1478
1537
  "documentation": "\n <p>\n The Instance data type.\n </p>\n "
1479
1538
  },
1480
- "documentation": "\n <p>\n Provides a list of EC2 instance IDs for the LoadBalancer.\n </p>\n "
1539
+ "documentation": "\n <p>\n Provides a list of EC2 instance IDs for the load balancer.\n </p>\n "
1481
1540
  },
1482
1541
  "HealthCheck": {
1483
1542
  "shape_name": "HealthCheck",
@@ -1522,7 +1581,7 @@
1522
1581
  "required": true
1523
1582
  }
1524
1583
  },
1525
- "documentation": "\n <p>\n Specifies information regarding the\n various health probes conducted on the LoadBalancer.\n </p>\n "
1584
+ "documentation": "\n <p>\n Specifies information regarding the\n various health probes conducted on the load balancer.\n </p>\n "
1526
1585
  },
1527
1586
  "SourceSecurityGroup": {
1528
1587
  "shape_name": "SourceSecurityGroup",
@@ -1539,7 +1598,7 @@
1539
1598
  "documentation": "\n <p>\n Name of the source security group. Use this value for the \n <code>--source-group</code> parameter of the <code>ec2-authorize</code>\n command in the Amazon EC2 command line tool.\n </p>\n "
1540
1599
  }
1541
1600
  },
1542
- "documentation": "\n <p>\n The security group that you can use as part of your inbound rules for \n your LoadBalancer's back-end Amazon EC2 application instances. \n To only allow traffic from LoadBalancers, add a security group rule to your back end instance that specifies this\n source security group as the inbound source. \n </p>\n "
1601
+ "documentation": "\n <p>\n The security group that you can use as part of your inbound rules for \n your load balancer's back-end Amazon EC2 application instances. \n To only allow traffic from load balancers, add a security group rule to your back end instance that specifies this\n source security group as the inbound source. \n </p>\n "
1543
1602
  },
1544
1603
  "SecurityGroups": {
1545
1604
  "shape_name": "SecurityGroups",
@@ -1549,22 +1608,22 @@
1549
1608
  "type": "string",
1550
1609
  "documentation": null
1551
1610
  },
1552
- "documentation": "\n <p>\n The security groups the LoadBalancer is a member of (VPC only).\n </p> \n "
1611
+ "documentation": "\n <p>\n The security groups the load balancer is a member of (VPC only).\n </p> \n "
1553
1612
  },
1554
1613
  "CreatedTime": {
1555
1614
  "shape_name": "CreatedTime",
1556
1615
  "type": "timestamp",
1557
- "documentation": "\n <p>\n Provides the date and time the LoadBalancer was created.\n </p>\n "
1616
+ "documentation": "\n <p>\n Provides the date and time the load balancer was created.\n </p>\n "
1558
1617
  },
1559
1618
  "Scheme": {
1560
1619
  "shape_name": "LoadBalancerScheme",
1561
1620
  "type": "string",
1562
- "documentation": "\n <p>Specifies the type of LoadBalancer.</p>\n\n <p>If the <code>Scheme</code> is <code>internet-facing</code>, the LoadBalancer\n has a publicly resolvable DNS name that resolves to public IP addresses.</p>\n \n <p>If the <code>Scheme</code> is <code>internal</code>, the LoadBalancer has a publicly resolvable\n DNS name that resolves to private IP addresses.</p>\n \n <p> This option is only available for LoadBalancers attached to an Amazon VPC. </p> \n "
1621
+ "documentation": "\n <p>Specifies the type of load balancer.</p>\n\n <p>If the <code>Scheme</code> is <code>internet-facing</code>, the load balancer\n has a publicly resolvable DNS name that resolves to public IP addresses.</p>\n \n <p>If the <code>Scheme</code> is <code>internal</code>, the load balancer has a publicly resolvable\n DNS name that resolves to private IP addresses.</p>\n \n <p> This option is only available for load balancers attached to an Amazon VPC. </p> \n "
1563
1622
  }
1564
1623
  },
1565
1624
  "documentation": "\n <p>\n Contains the result of a successful invocation of <a>DescribeLoadBalancers</a>.\n </p>\n "
1566
1625
  },
1567
- "documentation": "\n <p>\n A list of LoadBalancer description structures.\n </p>\n "
1626
+ "documentation": "\n <p>\n A list of load balancer description structures.\n </p>\n "
1568
1627
  },
1569
1628
  "NextMarker": {
1570
1629
  "shape_name": "Marker",
@@ -1580,10 +1639,10 @@
1580
1639
  "type": "structure",
1581
1640
  "members": {
1582
1641
  },
1583
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1642
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1584
1643
  }
1585
1644
  ],
1586
- "documentation": "\n <p>\n Returns detailed configuration information\n for the specified LoadBalancers. If no LoadBalancers are specified,\n the operation returns configuration information\n for all LoadBalancers created by the caller.\n </p>\n <note>\n The client must have created the specified input\n LoadBalancers in order to retrieve this information;\n the client must provide the same account credentials\n as those that were used to create the LoadBalancer.\n </note>\n "
1645
+ "documentation": "\n <p>\n Returns detailed configuration information for all the load balancers created for the account.\n If you specify load balancer names, the action returns configuration information of the specified\n load balancers. </p>\n <note>\n In order to retrieve this information, you must provide the same account credentials \n that was used to create the load balancer.</note>\n <examples>\n <example>\n <name>Description of a specified load balancer</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerNames.member.1=MyLoadBalancer\n&Version=2012-06-01\n&Action=DescribeLoadBalancers\n&AUTHPARAMS </queryrequest> \n <queryresponse><DescribeLoadBalancersResult>\n <LoadBalancerDescriptions>\n <member>\n <SecurityGroups/>\n <LoadBalancerName>MyLoadBalancer</LoadBalancerName>\n <CreatedTime>2013-05-24T21:15:31.280Z</CreatedTime>\n <HealthCheck>\n <Interval>90</Interval>\n <Target>HTTP:80/</Target>\n <HealthyThreshold>2</HealthyThreshold>\n <Timeout>60</Timeout>\n <UnhealthyThreshold>10</UnhealthyThreshold>\n </HealthCheck>\n <ListenerDescriptions>\n <member>\n <PolicyNames/>\n <Listener>\n <Protocol>HTTP</Protocol>\n <LoadBalancerPort>80</LoadBalancerPort>\n <InstanceProtocol>HTTP</InstanceProtocol>\n <InstancePort>80</InstancePort>\n </Listener>\n </member>\n </ListenerDescriptions>\n <Instances>\n <member>\n <InstanceId>i-e4cbe38d</InstanceId>\n </member>\n </Instances>\n <Policies>\n <AppCookieStickinessPolicies/>\n <OtherPolicies/>\n <LBCookieStickinessPolicies/>\n </Policies>\n <AvailabilityZones>\n <member>us-east-1a</member>\n </AvailabilityZones>\n <CanonicalHostedZoneNameID>ZZZZZZZZZZZ123X</CanonicalHostedZoneNameID>\n <CanonicalHostedZoneName>MyLoadBalancer-123456789.us-east-1.elb.amazonaws.com</CanonicalHostedZoneName>\n <Scheme>internet-facing</Scheme>\n <SourceSecurityGroup>\n <OwnerAlias>amazon-elb</OwnerAlias>\n <GroupName>amazon-elb-sg</GroupName>\n </SourceSecurityGroup>\n <DNSName>MyLoadBalancer-123456789.us-east-1.elb.amazonaws.com</DNSName>\n <BackendServerDescriptions/>\n <Subnets/>\n </member>\n </LoadBalancerDescriptions>\n </DescribeLoadBalancersResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</ DescribeLoadBalancerPolicyTypesResponse >\t\n </queryresponse>\n </example>\n </examples> \n "
1587
1646
  },
1588
1647
  "DetachLoadBalancerFromSubnets": {
1589
1648
  "name": "DetachLoadBalancerFromSubnets",
@@ -1594,7 +1653,7 @@
1594
1653
  "LoadBalancerName": {
1595
1654
  "shape_name": "AccessPointName",
1596
1655
  "type": "string",
1597
- "documentation": "\n <p>\n The name associated with the LoadBalancer to be detached.\n The name must be unique within the client AWS account.\n </p>\n ",
1656
+ "documentation": "\n <p>\n The name associated with the load balancer to be detached. \n </p>\n ",
1598
1657
  "required": true
1599
1658
  },
1600
1659
  "Subnets": {
@@ -1605,11 +1664,11 @@
1605
1664
  "type": "string",
1606
1665
  "documentation": null
1607
1666
  },
1608
- "documentation": "\n <p>\n A list of subnet IDs to remove from the set of configured subnets for the LoadBalancer.\n </p> \n ",
1667
+ "documentation": "\n <p>\n A list of subnet IDs to remove from the set of configured subnets for the load balancer.\n </p> \n ",
1609
1668
  "required": true
1610
1669
  }
1611
1670
  },
1612
- "documentation": "\n <p>\n The input for the <a>DetachLoadBalancerFromSubnets</a> action. \n </p> \n "
1671
+ "documentation": "\n <p>\n The input for the <a>DetachLoadBalancerFromSubnets</a> action. \n </p> \n "
1613
1672
  },
1614
1673
  "output": {
1615
1674
  "shape_name": "DetachLoadBalancerFromSubnetsOutput",
@@ -1623,7 +1682,7 @@
1623
1682
  "type": "string",
1624
1683
  "documentation": null
1625
1684
  },
1626
- "documentation": "\n <p>\n A list of subnet IDs removed from the configured set of subnets for the LoadBalancer. \n </p> \n "
1685
+ "documentation": "\n <p>\n A list of subnet IDs the load balancer is now attached to. \n </p> \n "
1627
1686
  }
1628
1687
  },
1629
1688
  "documentation": "\n <p>\n The output for the <a>DetachLoadBalancerFromSubnets</a> action.\n </p>\n "
@@ -1634,7 +1693,7 @@
1634
1693
  "type": "structure",
1635
1694
  "members": {
1636
1695
  },
1637
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1696
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1638
1697
  },
1639
1698
  {
1640
1699
  "shape_name": "InvalidConfigurationRequestException",
@@ -1644,7 +1703,7 @@
1644
1703
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
1645
1704
  }
1646
1705
  ],
1647
- "documentation": "\n <p>\n Removes subnets from the set of configured subnets in the VPC for the LoadBalancer. \n </p> \n <p>\n After a subnet is removed all of the EndPoints registered with the LoadBalancer that are \n in the removed subnet will go into the <i>OutOfService</i> state. When a subnet is removed, the LoadBalancer\n will balance the traffic among the remaining routable subnets for the LoadBalancer. \n </p>\n "
1706
+ "documentation": "\n <p>\n Removes subnets from the set of configured subnets in the Amazon Virtual Private Cloud (Amazon VPC) for the load balancer. \n </p> \n <p>\n After a subnet is removed all of the EC2 instances registered with the load balancer that are \n in the removed subnet will go into the <i>OutOfService</i> state. When a subnet is removed, the load balancer\n will balance the traffic among the remaining routable subnets for the load balancer. \n </p>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Subnets.member.1=subnet-119f0078\n&LoadBalancerName=my-test-vpc-loadbalancer\n&Version=2012-06-01\n&Action=DetachLoadBalancerFromSubnets\n&AUTHPARAMS </queryrequest> \n <queryresponse><DetachLoadBalancerFromSubnetsResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DetachLoadBalancerFromSubnetsResult>\n <Subnets>\n <member>subnet-159f007c</member>\n <member>subnet-3561b05e</member>\n </Subnets>\n </DetachLoadBalancerFromSubnetsResult>\n <ResponseMetadata>\n <RequestId>07b1ecbc-1100-11e3-acaf-dd7edEXAMPLE</RequestId>\n </ResponseMetadata>\n</DetachLoadBalancerFromSubnetsResponse>\n </queryresponse>\n </examples> \n "
1648
1707
  },
1649
1708
  "DisableAvailabilityZonesForLoadBalancer": {
1650
1709
  "name": "DisableAvailabilityZonesForLoadBalancer",
@@ -1655,7 +1714,7 @@
1655
1714
  "LoadBalancerName": {
1656
1715
  "shape_name": "AccessPointName",
1657
1716
  "type": "string",
1658
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
1717
+ "documentation": "\n <p>\n The name associated with the load balancer. \n </p>\n ",
1659
1718
  "required": true
1660
1719
  },
1661
1720
  "AvailabilityZones": {
@@ -1666,7 +1725,7 @@
1666
1725
  "type": "string",
1667
1726
  "documentation": null
1668
1727
  },
1669
- "documentation": "\n <p>\n A list of Availability Zones to be removed from the LoadBalancer.\n </p>\n <note>\n There must be at least one Availability Zone\n registered with a LoadBalancer at all times.\n The client cannot remove all the Availability Zones from a LoadBalancer.\n Specified Availability Zones must be in the same Region.\n </note>\n ",
1728
+ "documentation": "\n <p>\n A list of Availability Zones to be removed from the load balancer.\n </p>\n <note>\n There must be at least one Availability Zone\n registered with a load balancer at all times. \n Specified Availability Zones must be in the same region.\n </note>\n ",
1670
1729
  "required": true
1671
1730
  }
1672
1731
  },
@@ -1684,7 +1743,7 @@
1684
1743
  "type": "string",
1685
1744
  "documentation": null
1686
1745
  },
1687
- "documentation": "\n <p>\n A list of updated Availability Zones for the LoadBalancer.\n </p>\n "
1746
+ "documentation": "\n <p>\n A list of updated Availability Zones for the load balancer.\n </p>\n "
1688
1747
  }
1689
1748
  },
1690
1749
  "documentation": "\n\t\t<p>\n\t\tThe output for the <a>DisableAvailabilityZonesForLoadBalancer</a> action.\n\t\t</p>\n "
@@ -1695,7 +1754,7 @@
1695
1754
  "type": "structure",
1696
1755
  "members": {
1697
1756
  },
1698
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1757
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1699
1758
  },
1700
1759
  {
1701
1760
  "shape_name": "InvalidConfigurationRequestException",
@@ -1705,7 +1764,7 @@
1705
1764
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
1706
1765
  }
1707
1766
  ],
1708
- "documentation": "\n <p>\n Removes the specified EC2 Availability Zones from\n the set of configured Availability Zones for the LoadBalancer.\n </p>\n <p>\n There must be at least one Availability Zone registered\n with a LoadBalancer at all times. A client cannot remove all\n the Availability Zones from a LoadBalancer.\n Once an Availability Zone is removed, all the instances\n registered with the LoadBalancer that are in the removed\n Availability Zone go into the OutOfService state. Upon Availability\n Zone removal, the LoadBalancer attempts to equally balance\n the traffic among its remaining usable Availability Zones.\n Trying to remove an Availability Zone that was not associated with\n the LoadBalancer does nothing.\n </p>\n <note>\n In order for this call to be successful, the client\n must have created the LoadBalancer.\n The client must provide the same account credentials\n as those that were used to create the LoadBalancer.\n </note>\n "
1767
+ "documentation": "\n <p>\n Removes the specified EC2 Availability Zones from\n the set of configured Availability Zones for the load balancer.\n </p>\n <p>\n There must be at least one Availability Zone registered\n with a load balancer at all times. \n Once an Availability Zone is removed, all the instances\n registered with the load balancer that are in the removed\n Availability Zone go into the <i>OutOfService</i> state. Upon Availability\n Zone removal, the load balancer attempts to equally balance\n the traffic among its remaining usable Availability Zones.\n Trying to remove an Availability Zone that was not associated with\n the load balancer does nothing.\n </p> \n <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>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p> \n <examples>\n <example> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?AvailabilityZones.member.1=us-east-1a\n&LoadBalancerName=MyHTTPSLoadBalancer\n&Version=2012-06-01\n&Action=DisableAvailabilityZonesForLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><DisableAvailabilityZonesForLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <DisableAvailabilityZonesForLoadBalancerResult>\n <AvailabilityZones>\n <member>us-east-1b</member>\n </AvailabilityZones>\n </DisableAvailabilityZonesForLoadBalancerResult>\n <ResponseMetadata>\n <RequestId>ba6267d5-2566-11e3-9c6d-eb728EXAMPLE</RequestId>\n </ResponseMetadata>\n</DisableAvailabilityZonesForLoadBalancerResponse>\n </queryresponse>\n </example>\n </examples> \n "
1709
1768
  },
1710
1769
  "EnableAvailabilityZonesForLoadBalancer": {
1711
1770
  "name": "EnableAvailabilityZonesForLoadBalancer",
@@ -1716,7 +1775,7 @@
1716
1775
  "LoadBalancerName": {
1717
1776
  "shape_name": "AccessPointName",
1718
1777
  "type": "string",
1719
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
1778
+ "documentation": "\n <p>\n The name associated with the load balancer. \n </p>\n ",
1720
1779
  "required": true
1721
1780
  },
1722
1781
  "AvailabilityZones": {
@@ -1727,7 +1786,7 @@
1727
1786
  "type": "string",
1728
1787
  "documentation": null
1729
1788
  },
1730
- "documentation": "\n <p>\n A list of new Availability Zones for the LoadBalancer.\n Each Availability Zone must be in the same Region as the LoadBalancer.\n </p>\n ",
1789
+ "documentation": "\n <p>\n A list of new Availability Zones for the load balancer.\n Each Availability Zone must be in the same region as the load balancer.\n </p>\n ",
1731
1790
  "required": true
1732
1791
  }
1733
1792
  },
@@ -1745,7 +1804,7 @@
1745
1804
  "type": "string",
1746
1805
  "documentation": null
1747
1806
  },
1748
- "documentation": "\n <p>\n An updated list of Availability Zones for the LoadBalancer.\n </p>\n "
1807
+ "documentation": "\n <p>\n An updated list of Availability Zones for the load balancer.\n </p>\n "
1749
1808
  }
1750
1809
  },
1751
1810
  "documentation": "\n\t\t<p>\n\t\tThe output for the <a>EnableAvailabilityZonesForLoadBalancer</a> action.\n\t\t</p>\n "
@@ -1756,10 +1815,78 @@
1756
1815
  "type": "structure",
1757
1816
  "members": {
1758
1817
  },
1759
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1818
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1760
1819
  }
1761
1820
  ],
1762
- "documentation": "\n <p>\n Adds one or more EC2 Availability Zones to the LoadBalancer.\n </p>\n <p>\n The LoadBalancer evenly distributes requests across all\n its registered Availability Zones that contain instances.\n As a result, the client must ensure that its LoadBalancer is\n appropriately scaled for each registered Availability Zone.\n </p>\n <note>\n The new EC2 Availability Zones to be added must be in the same\n EC2 Region as the Availability Zones for which the\n LoadBalancer was created.\n </note>\n "
1821
+ "documentation": "\n <p>\n Adds one or more EC2 Availability Zones to the load balancer.\n </p>\n <p>\n The load balancer evenly distributes requests across all\n its registered Availability Zones that contain instances. \n </p>\n <note>\n The new EC2 Availability Zones to be added must be in the same\n EC2 Region as the Availability Zones for which the\n load balancer was created.\n </note>\n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_AddLBAvailabilityZone.html\">Expand a Load Balanced Application to an Additional Availability Zone</a>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n <examples>\n <example>\n <name>Enable Availability Zone <i>us-east-1c</i> for <i>my-test-loadbalancer</i>.</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?AvailabilityZones.member.1=us-east-1c\n&LoadBalancerName=my-test-loadbalancer\n&Version=2012-06-01\n&Action=EnableAvailabilityZonesForLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><EnableAvailabilityZonesForLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <EnableAvailabilityZonesForLoadBalancerResult>\n <AvailabilityZones>\n <member>us-east-1a</member>\n <member>us-east-1c</member>\n </AvailabilityZones>\n </EnableAvailabilityZonesForLoadBalancerResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</EnableAvailabilityZonesForLoadBalancerResponse>\n </queryresponse>\n </example>\n </examples> \n "
1822
+ },
1823
+ "ModifyLoadBalancerAttributes": {
1824
+ "name": "ModifyLoadBalancerAttributes",
1825
+ "input": {
1826
+ "shape_name": "ModifyLoadBalancerAttributesInput",
1827
+ "type": "structure",
1828
+ "members": {
1829
+ "LoadBalancerName": {
1830
+ "shape_name": "AccessPointName",
1831
+ "type": "string",
1832
+ "documentation": "\n <p>The name of the load balancer.</p> \n ",
1833
+ "required": true
1834
+ },
1835
+ "LoadBalancerAttributes": {
1836
+ "shape_name": "LoadBalancerAttributes",
1837
+ "type": "structure",
1838
+ "members": {
1839
+ "CrossZoneLoadBalancing": {
1840
+ "shape_name": "CrossZoneLoadBalancing",
1841
+ "type": "structure",
1842
+ "members": {
1843
+ "Enabled": {
1844
+ "shape_name": "CrossZoneLoadBalancingEnabled",
1845
+ "type": "boolean",
1846
+ "documentation": "\n <p>Specifies whether cross-zone load balancing is enabled for the load balancer.</p>\n ",
1847
+ "required": true
1848
+ }
1849
+ },
1850
+ "documentation": "\n <p>The name of the load balancer attribute.</p> \n "
1851
+ }
1852
+ },
1853
+ "documentation": "\n <p>Attributes of the load balancer.</p> \n ",
1854
+ "required": true
1855
+ }
1856
+ },
1857
+ "documentation": "\n <p>The input for the <a>ModifyLoadBalancerAttributes</a> action.</p> \n "
1858
+ },
1859
+ "output": {
1860
+ "shape_name": "ModifyLoadBalancerAttributesOutput",
1861
+ "type": "structure",
1862
+ "members": {
1863
+ },
1864
+ "documentation": "\n <p>The output for the <a>ModifyLoadBalancerAttributes</a> action.</p>\n "
1865
+ },
1866
+ "errors": [
1867
+ {
1868
+ "shape_name": "AccessPointNotFoundException",
1869
+ "type": "structure",
1870
+ "members": {
1871
+ },
1872
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1873
+ },
1874
+ {
1875
+ "shape_name": "LoadBalancerAttributeNotFoundException",
1876
+ "type": "structure",
1877
+ "members": {
1878
+ },
1879
+ "documentation": "\n <p>The specified load balancer attribute could not be found.</p> \n "
1880
+ },
1881
+ {
1882
+ "shape_name": "InvalidConfigurationRequestException",
1883
+ "type": "structure",
1884
+ "members": {
1885
+ },
1886
+ "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
1887
+ }
1888
+ ],
1889
+ "documentation": "\n <p>Modifies the attributes of a specified load balancer.</p> \n "
1763
1890
  },
1764
1891
  "RegisterInstancesWithLoadBalancer": {
1765
1892
  "name": "RegisterInstancesWithLoadBalancer",
@@ -1770,7 +1897,7 @@
1770
1897
  "LoadBalancerName": {
1771
1898
  "shape_name": "AccessPointName",
1772
1899
  "type": "string",
1773
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
1900
+ "documentation": "\n <p>\n The name associated with the load balancer.\n The name must be unique within your set of load balancers. \n </p>\n ",
1774
1901
  "required": true
1775
1902
  },
1776
1903
  "Instances": {
@@ -1788,7 +1915,7 @@
1788
1915
  },
1789
1916
  "documentation": "\n <p>\n The Instance data type.\n </p>\n "
1790
1917
  },
1791
- "documentation": "\n <p>\n A list of instance IDs that should be registered with the LoadBalancer.</p>\n <note>When the instance is stopped and then restarted, the IP addresses associated \n with your instance changes. Elastic Load Balancing cannot recognize the new IP address,\n which prevents it from routing traffic to your instances. We recommend that you \n de-register your Amazon EC2 instances from your load balancer after you stop your \n instance, and then register the load balancer with your instance after you've restarted. \n To de-register your instances from load balancer, use <a>DeregisterInstancesFromLoadBalancer</a> action.</note>\n \n ",
1918
+ "documentation": "\n <p>\n A list of instance IDs that should be registered with the load balancer.</p> \n \n ",
1792
1919
  "required": true
1793
1920
  }
1794
1921
  },
@@ -1813,7 +1940,7 @@
1813
1940
  },
1814
1941
  "documentation": "\n <p>\n The Instance data type.\n </p>\n "
1815
1942
  },
1816
- "documentation": "\n <p>\n An updated list of instances for the LoadBalancer.\n </p>\n "
1943
+ "documentation": "\n <p>\n An updated list of instances for the load balancer.\n </p>\n "
1817
1944
  }
1818
1945
  },
1819
1946
  "documentation": "\n\t\t<p>\n\t\tThe output for the <a>RegisterInstancesWithLoadBalancer</a> action.\n\t\t</p>\n "
@@ -1824,7 +1951,7 @@
1824
1951
  "type": "structure",
1825
1952
  "members": {
1826
1953
  },
1827
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
1954
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1828
1955
  },
1829
1956
  {
1830
1957
  "shape_name": "InvalidEndPointException",
@@ -1834,7 +1961,7 @@
1834
1961
  "documentation": "\n <p>\n The specified EndPoint is not valid.\n </p>\n "
1835
1962
  }
1836
1963
  ],
1837
- "documentation": "\n <p>\n Adds new instances to the LoadBalancer.\n </p>\n <p>\n Once the instance is registered, it starts receiving traffic\n and requests from the LoadBalancer. Any instance that is not\n in any of the Availability Zones registered for the LoadBalancer\n will be moved to the <i>OutOfService</i> state. It will move to the\n <i>InService</i> state when the Availability Zone is added to the LoadBalancer.\n </p>\n <note>\n In order for this call to be successful, the client\n must have created the LoadBalancer.\n The client must provide the same account credentials\n as those that were used to create the LoadBalancer.\n </note>\n <note>\n Completion of this API does not guarantee that operation has completed.\n Rather, it means that the request has been registered and the\n changes will happen shortly.\n </note>\n \n "
1964
+ "documentation": "\n <p>\n Adds new instances to the load balancer.\n </p>\n <p>\n Once the instance is registered, it starts receiving traffic\n and requests from the load balancer. Any instance that is not\n in any of the Availability Zones registered for the load balancer\n will be moved to the <i>OutOfService</i> state. It will move to the\n <i>InService</i> state when the Availability Zone is added to the load balancer.\n </p>\n <p>When an instance registered with a load balancer is stopped and then restarted, \n the IP addresses associated with the instance changes. Elastic Load Balancing \n cannot recognize the new IP address, which prevents it from routing traffic to\n the instances. We recommend that you de-register your Amazon EC2 instances from\n your load balancer after you stop your instance, and then register the load \n balancer with your instance after you've restarted. To de-register your instances \n from load balancer, use <a>DeregisterInstancesFromLoadBalancer</a> action.</p>\n <p>For more information, see <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_DeReg_Reg_Instances.html\">De-register and Register Amazon EC2 Instances</a> \n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n <note>\n In order for this call to be successful, you must provide the same \n account credentials as those that were used to create the load balancer.\n </note>\n <note>\n Completion of this API does not guarantee that operation has completed.\n Rather, it means that the request has been registered and the\n changes will happen shortly.\n </note>\n <p>You can use <a>DescribeLoadBalancers</a> or <a>DescribeInstanceHealth</a> action to check the state of the newly registered instances.</p> \n <examples>\n <example> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?Instances.member.1.InstanceId=i-315b7e51\n&LoadBalancerName=my-test-loadbalancer\n&Version=2012-06-01\n&Action=RegisterInstancesWithLoadBalancer\n&AUTHPARAMS </queryrequest> \n <queryresponse><RegisterInstancesWithLoadBalancerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <RegisterInstancesWithLoadBalancerResult>\n <Instances>\n <member>\n <InstanceId>i-315b7e51</InstanceId>\n </member>\n </Instances>\n </RegisterInstancesWithLoadBalancerResult>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</RegisterInstancesWithLoadBalancerResponse>\n </queryresponse>\n </example>\n </examples> \n \n "
1838
1965
  },
1839
1966
  "SetLoadBalancerListenerSSLCertificate": {
1840
1967
  "name": "SetLoadBalancerListenerSSLCertificate",
@@ -1845,30 +1972,30 @@
1845
1972
  "LoadBalancerName": {
1846
1973
  "shape_name": "AccessPointName",
1847
1974
  "type": "string",
1848
- "documentation": "\n \t<p>\n \tThe name of the the LoadBalancer. \n \t</p>\n ",
1975
+ "documentation": "\n <p>\n The name of the load balancer. \n </p>\n ",
1849
1976
  "required": true
1850
1977
  },
1851
1978
  "LoadBalancerPort": {
1852
1979
  "shape_name": "AccessPointPort",
1853
1980
  "type": "integer",
1854
- "documentation": "\n \t<p>\n \tThe port that uses the specified SSL certificate. \n \t</p>\n ",
1981
+ "documentation": "\n <p>\n The port that uses the specified SSL certificate. \n </p>\n ",
1855
1982
  "required": true
1856
1983
  },
1857
1984
  "SSLCertificateId": {
1858
1985
  "shape_name": "SSLCertificateId",
1859
1986
  "type": "string",
1860
- "documentation": "\n \t<p>\n \tThe ID of the SSL certificate chain to use. \n \tFor more information on SSL certificates, see \n \t<a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/ManagingServerCerts.html\">\n \tManaging Server Certificates\n \t</a>\n \tin the AWS Identity and Access Management documentation. \n \t</p>\n ",
1987
+ "documentation": "\n <p>\n The Amazon Resource Number (ARN) of the SSL certificate chain to use. \n For more information on SSL certificates, see \n <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/ManagingServerCerts.html\">\n Managing Server Certificates</a> in the <i>AWS Identity and Access Management User Guide</i>.</p>\n ",
1861
1988
  "required": true
1862
1989
  }
1863
1990
  },
1864
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>SetLoadBalancerListenerSSLCertificate</a> action.\n\t\t</p>\n "
1991
+ "documentation": "\n <p>\n The input for the <a>SetLoadBalancerListenerSSLCertificate</a> action.\n </p>\n "
1865
1992
  },
1866
1993
  "output": {
1867
1994
  "shape_name": "SetLoadBalancerListenerSSLCertificateOutput",
1868
1995
  "type": "structure",
1869
1996
  "members": {
1870
1997
  },
1871
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>SetLoadBalancerListenerSSLCertificate</a> action.\n\t\t</p>\n "
1998
+ "documentation": "\n <p>\n The output for the <a>SetLoadBalancerListenerSSLCertificate</a> action.\n </p>\n "
1872
1999
  },
1873
2000
  "errors": [
1874
2001
  {
@@ -1876,21 +2003,21 @@
1876
2003
  "type": "structure",
1877
2004
  "members": {
1878
2005
  },
1879
- "documentation": "\n \t<p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n \t</p>\n "
2006
+ "documentation": "\n <p>\n The specified SSL ID does not refer to a valid SSL certificate \n in the AWS Identity and Access Management Service.\n </p>\n "
1880
2007
  },
1881
2008
  {
1882
2009
  "shape_name": "AccessPointNotFoundException",
1883
2010
  "type": "structure",
1884
2011
  "members": {
1885
2012
  },
1886
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
2013
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1887
2014
  },
1888
2015
  {
1889
2016
  "shape_name": "ListenerNotFoundException",
1890
2017
  "type": "structure",
1891
2018
  "members": {
1892
2019
  },
1893
- "documentation": "\n <p>\n LoadBalancer does not have a listener configured at the given port.\n </p>\n "
2020
+ "documentation": "\n <p>\n Load balancer does not have a listener configured at the given port.\n </p>\n "
1894
2021
  },
1895
2022
  {
1896
2023
  "shape_name": "InvalidConfigurationRequestException",
@@ -1900,7 +2027,7 @@
1900
2027
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
1901
2028
  }
1902
2029
  ],
1903
- "documentation": "\n \t<p>\n \tSets the certificate that terminates the specified listener's SSL connections. \n \tThe specified certificate replaces any prior certificate that was used on the same LoadBalancer and port. \n \t</p>\n <p>For information on using <a>SetLoadBalancerListenerSSLCertificate</a>, see <i>Using the Query API </i> in the <a href=\"http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_UpdatingLoadBalancerSSL.html\">Updating an SSL Certificate for a Load Balancer</a>\nsection in of the <i>Elastic Load Balancing Developer Guide</i>.</p>\n "
2030
+ "documentation": "\n <p>\n Sets the certificate that terminates the specified listener's SSL connections. \n The specified certificate replaces any prior certificate that was used on the same load balancer and port. \n </p>\n <p>For more information on 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>\n in the <i>Elastic Load Balancing Developer Guide</i>.</p>\n \n <examples>\n <example> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?LoadBalancerName=MyInternalLoadBalancer\n&SSLCertificateId=arn:aws:iam::123456789012:server-certificate/testcert\n&LoadBalancerPort=443\n&Version=2012-06-01\n&Action=SetLoadBalancerListenerSSLCertificate\n&AUTHPARAMS </queryrequest> \n <queryresponse><SetLoadBalancerListenerSSLCertificateResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <SetLoadBalancerListenerSSLCertificateResult/>\n<ResponseMetadata>\n <RequestId>83c88b9d-12b7-11e3-8b82-87b12EXAMPLE</RequestId>\n</ResponseMetadata>\n</SetLoadBalancerListenerSSLCertificateResponse>\n </queryresponse>\n </example>\n </examples> \n "
1904
2031
  },
1905
2032
  "SetLoadBalancerPoliciesForBackendServer": {
1906
2033
  "name": "SetLoadBalancerPoliciesForBackendServer",
@@ -1911,13 +2038,13 @@
1911
2038
  "LoadBalancerName": {
1912
2039
  "shape_name": "AccessPointName",
1913
2040
  "type": "string",
1914
- "documentation": "\n \t<p>\n \tThe mnemonic name associated with the LoadBalancer.\n \tThis name must be unique within the client AWS account.\n \t</p>\n ",
2041
+ "documentation": "\n <p>\n The mnemonic name associated with the load balancer.\n This name must be unique within the set of your load balancers.\n </p>\n ",
1915
2042
  "required": true
1916
2043
  },
1917
2044
  "InstancePort": {
1918
2045
  "shape_name": "EndPointPort",
1919
2046
  "type": "integer",
1920
- "documentation": "\n \t<p>\n \tThe port number associated with the back-end server.\n \t</p>\n ",
2047
+ "documentation": "\n <p>\n The port number associated with the back-end server.\n </p>\n ",
1921
2048
  "required": true
1922
2049
  },
1923
2050
  "PolicyNames": {
@@ -1928,18 +2055,18 @@
1928
2055
  "type": "string",
1929
2056
  "documentation": null
1930
2057
  },
1931
- "documentation": "\n \t<p>\n \tList of policy names to be set. If the list is empty, then all current polices are\n \tremoved from the back-end server.\n \t</p>\n ",
2058
+ "documentation": "\n <p>\n List of policy names to be set. If the list is empty, then all current polices are\n removed from the back-end server.\n </p>\n ",
1932
2059
  "required": true
1933
2060
  }
1934
2061
  },
1935
- "documentation": "\n "
2062
+ "documentation": "\n "
1936
2063
  },
1937
2064
  "output": {
1938
2065
  "shape_name": "SetLoadBalancerPoliciesForBackendServerOutput",
1939
2066
  "type": "structure",
1940
2067
  "members": {
1941
2068
  },
1942
- "documentation": "\n \t<p>\n \t\tThe output for the <a>SetLoadBalancerPoliciesForBackendServer</a> action.\n \t</p>\n "
2069
+ "documentation": "\n <p>\n The output for the <a>SetLoadBalancerPoliciesForBackendServer</a> action.\n </p>\n "
1943
2070
  },
1944
2071
  "errors": [
1945
2072
  {
@@ -1947,7 +2074,7 @@
1947
2074
  "type": "structure",
1948
2075
  "members": {
1949
2076
  },
1950
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
2077
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
1951
2078
  },
1952
2079
  {
1953
2080
  "shape_name": "PolicyNotFoundException",
@@ -1964,7 +2091,7 @@
1964
2091
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
1965
2092
  }
1966
2093
  ],
1967
- "documentation": "\n <p>\n Replaces the current set of policies associated with a port on which the back-end server is listening with a new set of policies. After the policies have been created using <a>CreateLoadBalancerPolicy</a>, \n they can be applied here as a list. 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.\n </p>\n "
2094
+ "documentation": "\n <p>\n Replaces the current set of policies associated with a port on which the back-end server is listening with a new set of policies. After the policies have been created using <a>CreateLoadBalancerPolicy</a>, \n they can be applied here as a list. 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.\n </p>\n <note>\n <p>The <i>SetLoadBalancerPoliciesForBackendServer</i> replaces the current set of policies associated with the specified instance port. \n Every time you use this action to enable the policies, use the <code>PolicyNames</code> parameter to list all the policies you want to enable.</p>\n </note>\n <examples> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?InstancePort=80\n&PolicyNames.member.1=EnableProxyProtocol\n&PolicyNames.member.2=MyPolicyName2\n&PolicyNames.member.3=MyPolicyName3\n&LoadBalancerName=my-test-loadbalancer\n&Version=2012-06-01\n&Action=SetLoadBalancerPoliciesForBackendServer\n&AUTHPARAMS </queryrequest> \n <queryresponse><SetLoadBalancerPoliciesForBackendServerResponse xmlns=\"http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/\">\n <SetLoadBalancerPoliciesForBackendServerResult/>\n <ResponseMetadata>\n <RequestId>0eb9b381-dde0-11e2-8d78-6ddbaEXAMPLE</RequestId>\n </ResponseMetadata>\n</SetLoadBalancerPoliciesForBackendServerResponse> \n </queryresponse>\n </examples> \n <p>You can use <a>DescribeLoadBalancers</a> or <a>DescribeLoadBalancerPolicies</a> action to verify that the policy has been associated with the back-end server.</p> \n "
1968
2095
  },
1969
2096
  "SetLoadBalancerPoliciesOfListener": {
1970
2097
  "name": "SetLoadBalancerPoliciesOfListener",
@@ -1975,13 +2102,13 @@
1975
2102
  "LoadBalancerName": {
1976
2103
  "shape_name": "AccessPointName",
1977
2104
  "type": "string",
1978
- "documentation": "\n <p>\n The name associated with the LoadBalancer.\n The name must be unique within the client AWS account.\n </p>\n ",
2105
+ "documentation": "\n <p>\n The name of the load balancer. \n </p>\n ",
1979
2106
  "required": true
1980
2107
  },
1981
2108
  "LoadBalancerPort": {
1982
2109
  "shape_name": "AccessPointPort",
1983
2110
  "type": "integer",
1984
- "documentation": "\n <p>\n The external port of the LoadBalancer with which this policy applies to. \n </p>\n ",
2111
+ "documentation": "\n <p>\n The external port of the load balancer to associate the policy. \n </p>\n ",
1985
2112
  "required": true
1986
2113
  },
1987
2114
  "PolicyNames": {
@@ -1992,18 +2119,18 @@
1992
2119
  "type": "string",
1993
2120
  "documentation": null
1994
2121
  },
1995
- "documentation": "\n <p>\n List of policies to be associated with the listener. Currently this list can have at most\n one policy. If the list is empty, the current policy is removed from the listener.\n </p>\n ",
2122
+ "documentation": "\n <p>\n List of policies to be associated with the listener. If the list is empty, the current policy is removed from the listener.\n </p>\n ",
1996
2123
  "required": true
1997
2124
  }
1998
2125
  },
1999
- "documentation": "\n\t\t<p>\n\t\tThe input for the <a>SetLoadBalancerPoliciesOfListener</a> action.\n\t\t</p>\n "
2126
+ "documentation": "\n <p>\n The input for the <a>SetLoadBalancerPoliciesOfListener</a> action.\n </p>\n "
2000
2127
  },
2001
2128
  "output": {
2002
2129
  "shape_name": "SetLoadBalancerPoliciesOfListenerOutput",
2003
2130
  "type": "structure",
2004
2131
  "members": {
2005
2132
  },
2006
- "documentation": "\n\t\t<p>\n\t\tThe output for the <a>SetLoadBalancerPoliciesOfListener</a> action.\n\t\t</p>\n "
2133
+ "documentation": "\n <p>\n The output for the <a>SetLoadBalancerPoliciesOfListener</a> action.\n </p>\n "
2007
2134
  },
2008
2135
  "errors": [
2009
2136
  {
@@ -2011,7 +2138,7 @@
2011
2138
  "type": "structure",
2012
2139
  "members": {
2013
2140
  },
2014
- "documentation": "\n <p>\n The specified LoadBalancer could not be found.\n </p>\n "
2141
+ "documentation": "\n <p>\n The specified load balancer could not be found.\n </p>\n "
2015
2142
  },
2016
2143
  {
2017
2144
  "shape_name": "PolicyNotFoundException",
@@ -2025,7 +2152,7 @@
2025
2152
  "type": "structure",
2026
2153
  "members": {
2027
2154
  },
2028
- "documentation": "\n <p>\n LoadBalancer does not have a listener configured at the given port.\n </p>\n "
2155
+ "documentation": "\n <p>\n Load balancer does not have a listener configured at the given port.\n </p>\n "
2029
2156
  },
2030
2157
  {
2031
2158
  "shape_name": "InvalidConfigurationRequestException",
@@ -2035,7 +2162,7 @@
2035
2162
  "documentation": "\n <p>\n Requested configuration change is invalid.\n </p>\n "
2036
2163
  }
2037
2164
  ],
2038
- "documentation": "\n <p>\n Associates, updates, or disables a policy with a listener on the LoadBalancer. \n You can associate multiple policies with a listener. \n </p>\n "
2165
+ "documentation": "\n <p>\n Associates, updates, or disables a policy with a listener on the load balancer. \n You can associate multiple policies with a listener. \n </p>\n <examples>\n <name>Associate <i>MySSLNegotiationPolicy</i> with the load balancer port <i>443</i> on the <i>MyInternalLoadbalancer</i> load balancer.</name> \n <queryrequest>https://elasticloadbalancing.amazonaws.com/?PolicyNames.member.1=MySSLNegotiationPolicy\n&LoadBalancerName=MyInternalLoadBalancer\n&LoadBalancerPort=443\n&Version=2012-06-01\n&Action=SetLoadBalancerPoliciesOfListener\n&AUTHPARAMS </queryrequest> \n <queryresponse><SetLoadBalancerPoliciesOfListenerResponse xmlns=\"http://elasticloadbalancing.am\nazonaws.com/doc/2012-06-01/\">\n <SetLoadBalancerPoliciesOfListenerResult/>\n <ResponseMetadata>\n <RequestId>07b1ecbc-1100-11e3-acaf-dd7edEXAMPLE</RequestId>\n </ResponseMetadata>\n</SetLoadBalancerPoliciesOfListenerResponse>\n </queryresponse>\n </examples> \n \n "
2039
2166
  }
2040
2167
  }
2041
- }
2168
+ }