aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,1390 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddTagsToResource": "<p>The <i>AddTagsToResource</i> action adds up to 10 cost allocation tags to the named resource. A <i>cost allocation tag</i> is a key-value pair where the key and value are case-sensitive. Cost allocation tags can be used to categorize and track your AWS costs.</p> <p> When you apply tags to your ElastiCache resources, AWS generates a cost allocation report as a comma-separated value (CSV) file with your usage and costs aggregated by your tags. You can apply tags that represent business categories (such as cost centers, application names, or owners) to organize your costs across multiple services. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Tagging.html\">Using Cost Allocation Tags in Amazon ElastiCache</a>.</p>",
5
- "AuthorizeCacheSecurityGroupIngress": "<p>The <i>AuthorizeCacheSecurityGroupIngress</i> action allows network ingress to a cache security group. Applications using ElastiCache must be running on Amazon EC2, and Amazon EC2 security groups are used as the authorization mechanism.</p> <note>You cannot authorize ingress from an Amazon EC2 security group in one region to an ElastiCache cluster in another region. </note>",
6
- "CopySnapshot": "<p>The <i>CopySnapshot</i> action makes a copy of an existing snapshot.</p>",
7
- "CreateCacheCluster": "<p>The <i>CreateCacheCluster</i> action creates a cache cluster. All nodes in the cache cluster run the same protocol-compliant cache engine software, either Memcached or Redis.</p>",
8
- "CreateCacheParameterGroup": "<p>The <i>CreateCacheParameterGroup</i> action creates a new cache parameter group. A cache parameter group is a collection of parameters that you apply to all of the nodes in a cache cluster.</p>",
9
- "CreateCacheSecurityGroup": "<p>The <i>CreateCacheSecurityGroup</i> action creates a new cache security group. Use a cache security group to control access to one or more cache clusters.</p> <p>Cache security groups are only used when you are creating a cache cluster outside of an Amazon Virtual Private Cloud (VPC). If you are creating a cache cluster inside of a VPC, use a cache subnet group instead. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_CreateCacheSubnetGroup.html\">CreateCacheSubnetGroup</a>.</p>",
10
- "CreateCacheSubnetGroup": "<p>The <i>CreateCacheSubnetGroup</i> action creates a new cache subnet group.</p> <p>Use this parameter only when you are creating a cluster in an Amazon Virtual Private Cloud (VPC).</p>",
11
- "CreateReplicationGroup": "<p>The <i>CreateReplicationGroup</i> action creates a replication group. A replication group is a collection of cache clusters, where one of the cache clusters is a read/write primary and the others are read-only replicas. Writes to the primary are automatically propagated to the replicas.</p> <p>When you create a replication group, you must specify an existing cache cluster that is in the primary role. When the replication group has been successfully created, you can add one or more read replica replicas to it, up to a total of five read replicas.</p> <p><b>Note:</b> This action is valid only for Redis.</p>",
12
- "CreateSnapshot": "<p>The <i>CreateSnapshot</i> action creates a copy of an entire cache cluster at a specific moment in time.</p>",
13
- "DeleteCacheCluster": "<p>The <i>DeleteCacheCluster</i> action deletes a previously provisioned cache cluster. <i>DeleteCacheCluster</i> deletes all associated cache nodes, node endpoints and the cache cluster itself. When you receive a successful response from this action, Amazon ElastiCache immediately begins deleting the cache cluster; you cannot cancel or revert this action.</p> <p>This API cannot be used to delete a cache cluster that is the last read replica of a replication group that has Multi-AZ mode enabled.</p>",
14
- "DeleteCacheParameterGroup": "<p>The <i>DeleteCacheParameterGroup</i> action deletes the specified cache parameter group. You cannot delete a cache parameter group if it is associated with any cache clusters.</p>",
15
- "DeleteCacheSecurityGroup": "<p>The <i>DeleteCacheSecurityGroup</i> action deletes a cache security group.</p> <note>You cannot delete a cache security group if it is associated with any cache clusters.</note>",
16
- "DeleteCacheSubnetGroup": "<p>The <i>DeleteCacheSubnetGroup</i> action deletes a cache subnet group.</p> <note>You cannot delete a cache subnet group if it is associated with any cache clusters.</note>",
17
- "DeleteReplicationGroup": "<p>The <i>DeleteReplicationGroup</i> action deletes an existing replication group. By default, this action deletes the entire replication group, including the primary cluster and all of the read replicas. You can optionally delete only the read replicas, while retaining the primary cluster.</p> <p>When you receive a successful response from this action, Amazon ElastiCache immediately begins deleting the selected resources; you cannot cancel or revert this action.</p>",
18
- "DeleteSnapshot": "<p>The <i>DeleteSnapshot</i> action deletes an existing snapshot. When you receive a successful response from this action, ElastiCache immediately begins deleting the snapshot; you cannot cancel or revert this action.</p>",
19
- "DescribeCacheClusters": "<p>The <i>DescribeCacheClusters</i> action returns information about all provisioned cache clusters if no cache cluster identifier is specified, or about a specific cache cluster if a cache cluster identifier is supplied.</p> <p>By default, abbreviated information about the cache clusters(s) will be returned. You can use the optional <i>ShowDetails</i> flag to retrieve detailed information about the cache nodes associated with the cache clusters. These details include the DNS address and port for the cache node endpoint.</p> <p>If the cluster is in the CREATING state, only cluster level information will be displayed until all of the nodes are successfully provisioned.</p> <p>If the cluster is in the DELETING state, only cluster level information will be displayed.</p> <p>If cache nodes are currently being added to the cache cluster, node endpoint information and creation time for the additional nodes will not be displayed until they are completely provisioned. When the cache cluster state is <i>available</i>, the cluster is ready for use.</p> <p>If cache nodes are currently being removed from the cache cluster, no endpoint information for the removed nodes is displayed.</p>",
20
- "DescribeCacheEngineVersions": "<p>The <i>DescribeCacheEngineVersions</i> action returns a list of the available cache engines and their versions.</p>",
21
- "DescribeCacheParameterGroups": "<p>The <i>DescribeCacheParameterGroups</i> action returns a list of cache parameter group descriptions. If a cache parameter group name is specified, the list will contain only the descriptions for that group.</p>",
22
- "DescribeCacheParameters": "<p>The <i>DescribeCacheParameters</i> action returns the detailed parameter list for a particular cache parameter group.</p>",
23
- "DescribeCacheSecurityGroups": "<p>The <i>DescribeCacheSecurityGroups</i> action returns a list of cache security group descriptions. If a cache security group name is specified, the list will contain only the description of that group.</p>",
24
- "DescribeCacheSubnetGroups": "<p>The <i>DescribeCacheSubnetGroups</i> action returns a list of cache subnet group descriptions. If a subnet group name is specified, the list will contain only the description of that group.</p>",
25
- "DescribeEngineDefaultParameters": "<p>The <i>DescribeEngineDefaultParameters</i> action returns the default engine and system parameter information for the specified cache engine.</p>",
26
- "DescribeEvents": "<p>The <i>DescribeEvents</i> action returns events related to cache clusters, cache security groups, and cache parameter groups. You can obtain events specific to a particular cache cluster, cache security group, or cache parameter group by providing the name as a parameter.</p> <p>By default, only the events occurring within the last hour are returned; however, you can retrieve up to 14 days' worth of events if necessary.</p>",
27
- "DescribeReplicationGroups": "<p>The <i>DescribeReplicationGroups</i> action returns information about a particular replication group. If no identifier is specified, <i>DescribeReplicationGroups</i> returns information about all replication groups.</p>",
28
- "DescribeReservedCacheNodes": "<p>The <i>DescribeReservedCacheNodes</i> action returns information about reserved cache nodes for this account, or about a specified reserved cache node.</p>",
29
- "DescribeReservedCacheNodesOfferings": "<p>The <i>DescribeReservedCacheNodesOfferings</i> action lists available reserved cache node offerings.</p>",
30
- "DescribeSnapshots": "<p>The <i>DescribeSnapshots</i> action returns information about cache cluster snapshots. By default, <i>DescribeSnapshots</i> lists all of your snapshots; it can optionally describe a single snapshot, or just the snapshots associated with a particular cache cluster.</p>",
31
- "ListTagsForResource": "<p>The <i>ListTagsForResource</i> action lists all cost allocation tags currently on the named resource. A <i>cost allocation tag</i> is a key-value pair where the key is case-sensitive and the value is optional. Cost allocation tags can be used to categorize and track your AWS costs.</p> <p>You can have a maximum of 10 cost allocation tags on an ElastiCache resource. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/BestPractices.html\">Using Cost Allocation Tags in Amazon ElastiCache</a>.</p>",
32
- "ModifyCacheCluster": "<p>The <i>ModifyCacheCluster</i> action modifies the settings for a cache cluster. You can use this action to change one or more cluster configuration parameters by specifying the parameters and the new values.</p>",
33
- "ModifyCacheParameterGroup": "<p>The <i>ModifyCacheParameterGroup</i> action modifies the parameters of a cache parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.</p>",
34
- "ModifyCacheSubnetGroup": "<p>The <i>ModifyCacheSubnetGroup</i> action modifies an existing cache subnet group.</p>",
35
- "ModifyReplicationGroup": "<p>The <i>ModifyReplicationGroup</i> action modifies the settings for a replication group.</p>",
36
- "PurchaseReservedCacheNodesOffering": "<p>The <i>PurchaseReservedCacheNodesOffering</i> action allows you to purchase a reserved cache node offering.</p>",
37
- "RebootCacheCluster": "<p>The <i>RebootCacheCluster</i> action reboots some, or all, of the cache nodes within a provisioned cache cluster. This API will apply any modified cache parameter groups to the cache cluster. The reboot action takes place as soon as possible, and results in a momentary outage to the cache cluster. During the reboot, the cache cluster status is set to REBOOTING.</p> <p>The reboot causes the contents of the cache (for each cache node being rebooted) to be lost.</p> <p>When the reboot is complete, a cache cluster event is created.</p>",
38
- "RemoveTagsFromResource": "<p>The <i>RemoveTagsFromResource</i> action removes the tags identified by the <code>TagKeys</code> list from the named resource.</p>",
39
- "ResetCacheParameterGroup": "<p>The <i>ResetCacheParameterGroup</i> action modifies the parameters of a cache parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire cache parameter group, specify the <i>ResetAllParameters</i> and <i>CacheParameterGroupName</i> parameters.</p>",
40
- "RevokeCacheSecurityGroupIngress": "<p>The <i>RevokeCacheSecurityGroupIngress</i> action revokes ingress from a cache security group. Use this action to disallow access from an Amazon EC2 security group that had been previously authorized.</p>"
41
- },
42
- "service": "<fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers gain all of the benefits of a high-performance, in-memory cache with far less of the administrative burden of launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>",
43
- "shapes": {
44
- "AZMode": {
45
- "base": null,
46
- "refs": {
47
- "CreateCacheClusterMessage$AZMode": "<p>Specifies whether the nodes in this Memcached node group are created in a single Availability Zone or created across multiple Availability Zones in the cluster's region.</p> <p>This parameter is only supported for Memcached cache clusters.</p> <p>If the <code>AZMode</code> and <code>PreferredAvailabilityZones</code> are not specified, ElastiCache assumes <code>single-az</code> mode.</p>",
48
- "ModifyCacheClusterMessage$AZMode": "<p>Specifies whether the new nodes in this Memcached cache cluster are all created in a single Availability Zone or created across multiple Availability Zones.</p> <p>Valid values: <code>single-az</code> | <code>cross-az</code>.</p> <p>This option is only supported for Memcached cache clusters.</p> <note><p>You cannot specify <code>single-az</code> if the Memcached cache cluster already has cache nodes in different Availability Zones. If <code>cross-az</code> is specified, existing Memcached nodes remain in their current Availability Zone.</p> <p>Only newly created nodes will be located in different Availability Zones. For instructions on how to move existing Memcached nodes to different Availability Zones, see the <b>Availability Zone Considerations</b> section of <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheNode.Memcached.html\">Cache Node Considerations for Memcached</a>.</p> </note>"
49
- }
50
- },
51
- "AddTagsToResourceMessage": {
52
- "base": "<p>Represents the input of an <i>AddTagsToResource</i> action.</p>",
53
- "refs": {
54
- }
55
- },
56
- "AuthorizationAlreadyExistsFault": {
57
- "base": "<p>The specified Amazon EC2 security group is already authorized for the specified cache security group.</p>",
58
- "refs": {
59
- }
60
- },
61
- "AuthorizationNotFoundFault": {
62
- "base": "<p>The specified Amazon EC2 security group is not authorized for the specified cache security group.</p>",
63
- "refs": {
64
- }
65
- },
66
- "AuthorizeCacheSecurityGroupIngressMessage": {
67
- "base": "<p>Represents the input of an <i>AuthorizeCacheSecurityGroupIngress</i> action.</p>",
68
- "refs": {
69
- }
70
- },
71
- "AutomaticFailoverStatus": {
72
- "base": null,
73
- "refs": {
74
- "ReplicationGroup$AutomaticFailover": "<p>Indicates the status of Multi-AZ for this replication group.</p> <note><p>ElastiCache Multi-AZ replication groups are not supported on:</p> <ul> <li>Redis versions earlier than 2.8.6.</li> <li>T1 and T2 cache node types.</li> </ul> </note>"
75
- }
76
- },
77
- "AvailabilityZone": {
78
- "base": "<p>Describes an Availability Zone in which the cache cluster is launched.</p>",
79
- "refs": {
80
- "Subnet$SubnetAvailabilityZone": "<p>The Availability Zone associated with the subnet.</p>"
81
- }
82
- },
83
- "AvailabilityZonesList": {
84
- "base": null,
85
- "refs": {
86
- "CreateReplicationGroupMessage$PreferredCacheClusterAZs": "<p>A list of EC2 availability zones in which the replication group's cache clusters will be created. The order of the availability zones in the list is not important.</p> <note>If you are creating your replication group in an Amazon VPC (recommended), you can only locate cache clusters in availability zones associated with the subnets in the selected subnet group. <p>The number of availability zones listed must equal the value of <i>NumCacheClusters</i>.</p></note> <p>Default: system chosen availability zones.</p> <p>Example: One Redis cache cluster in each of three availability zones. PreferredAvailabilityZones.member.1=us-west-2a PreferredAvailabilityZones.member.2=us-west-2c PreferredAvailabilityZones.member.3=us-west-2c</p>"
87
- }
88
- },
89
- "AwsQueryErrorMessage": {
90
- "base": null,
91
- "refs": {
92
- "InvalidParameterCombinationException$message": "<p>Two or more parameters that must not be used together were used together.</p>",
93
- "InvalidParameterValueException$message": "<p>A parameter value is invalid.</p>"
94
- }
95
- },
96
- "Boolean": {
97
- "base": null,
98
- "refs": {
99
- "CacheCluster$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>",
100
- "CacheNodeTypeSpecificParameter$IsModifiable": "<p>Indicates whether (<code>true</code>) or not (<code>false</code>) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.</p>",
101
- "DescribeCacheEngineVersionsMessage$DefaultOnly": "<p>If <i>true</i>, specifies that only the default version of the specified engine or engine and major version combination is to be returned.</p>",
102
- "ModifyCacheClusterMessage$ApplyImmediately": "<p>If <code>true</code>, this parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible, regardless of the <i>PreferredMaintenanceWindow</i> setting for the cache cluster.</p> <p>If <code>false</code>, then changes to the cache cluster are applied on the next maintenance reboot, or the next failure reboot, whichever occurs first.</p> <important>If you perform a <code>ModifyCacheCluster</code> before a pending modification is applied, the pending modification is replaced by the newer modification.</important> <p>Valid values: <code>true</code> | <code>false</code></p> <p>Default: <code>false</code></p>",
103
- "ModifyReplicationGroupMessage$ApplyImmediately": "<p>If <code>true</code>, this parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible, regardless of the <i>PreferredMaintenanceWindow</i> setting for the replication group.</p> <p>If <code>false</code>, then changes to the nodes in the replication group are applied on the next maintenance reboot, or the next failure reboot, whichever occurs first.</p> <p>Valid values: <code>true</code> | <code>false</code></p> <p>Default: <code>false</code></p>",
104
- "Parameter$IsModifiable": "<p>Indicates whether (<code>true</code>) or not (<code>false</code>) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.</p>",
105
- "ResetCacheParameterGroupMessage$ResetAllParameters": "<p>If <i>true</i>, all parameters in the cache parameter group will be reset to default values. If <i>false</i>, no such action occurs.</p> <p>Valid values: <code>true</code> | <code>false</code></p>",
106
- "Snapshot$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>"
107
- }
108
- },
109
- "BooleanOptional": {
110
- "base": null,
111
- "refs": {
112
- "CreateCacheClusterMessage$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>",
113
- "CreateReplicationGroupMessage$AutomaticFailoverEnabled": "<p>Specifies whether a read-only replica will be automatically promoted to read/write primary if the existing primary fails.</p> <p>If <code>true</code>, Multi-AZ is enabled for this replication group. If <code>false</code>, Multi-AZ is disabled for this replication group.</p> <p>Default: false</p> <note><p>ElastiCache Multi-AZ replication groups is not supported on:</p> <ul> <li>Redis versions earlier than 2.8.6.</li> <li>T1 and T2 cache node types.</li> </ul> </note>",
114
- "CreateReplicationGroupMessage$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>",
115
- "DeleteReplicationGroupMessage$RetainPrimaryCluster": "<p>If set to <i>true</i>, all of the read replicas will be deleted, but the primary node will be retained.</p>",
116
- "DescribeCacheClustersMessage$ShowCacheNodeInfo": "<p>An optional flag that can be included in the DescribeCacheCluster request to retrieve information about the individual cache nodes.</p>",
117
- "ModifyCacheClusterMessage$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>",
118
- "ModifyReplicationGroupMessage$AutomaticFailoverEnabled": "<p>Whether a read replica will be automatically promoted to read/write primary if the existing primary encounters a failure.</p> <p>Valid values: <code>true</code> | <code>false</code></p> <note><p>ElastiCache Multi-AZ replication groups are not supported on:</p> <ul> <li>Redis versions earlier than 2.8.6.</li> <li>T1 and T2 cache node types.</li> </ul> </note>",
119
- "ModifyReplicationGroupMessage$AutoMinorVersionUpgrade": "<p>This parameter is currently disabled.</p>"
120
- }
121
- },
122
- "CacheCluster": {
123
- "base": "<p>Contains all of the attributes of a specific cache cluster.</p>",
124
- "refs": {
125
- "CacheClusterList$member": null,
126
- "CreateCacheClusterResult$CacheCluster": null,
127
- "DeleteCacheClusterResult$CacheCluster": null,
128
- "ModifyCacheClusterResult$CacheCluster": null,
129
- "RebootCacheClusterResult$CacheCluster": null
130
- }
131
- },
132
- "CacheClusterAlreadyExistsFault": {
133
- "base": "<p>You already have a cache cluster with the given identifier.</p>",
134
- "refs": {
135
- }
136
- },
137
- "CacheClusterList": {
138
- "base": null,
139
- "refs": {
140
- "CacheClusterMessage$CacheClusters": "<p>A list of cache clusters. Each item in the list contains detailed information about one cache cluster.</p>"
141
- }
142
- },
143
- "CacheClusterMessage": {
144
- "base": "<p>Represents the output of a <i>DescribeCacheClusters</i> action.</p>",
145
- "refs": {
146
- }
147
- },
148
- "CacheClusterNotFoundFault": {
149
- "base": "<p>The requested cache cluster ID does not refer to an existing cache cluster.</p>",
150
- "refs": {
151
- }
152
- },
153
- "CacheEngineVersion": {
154
- "base": "<p>Provides all of the details about a particular cache engine version.</p>",
155
- "refs": {
156
- "CacheEngineVersionList$member": null
157
- }
158
- },
159
- "CacheEngineVersionList": {
160
- "base": null,
161
- "refs": {
162
- "CacheEngineVersionMessage$CacheEngineVersions": "<p>A list of cache engine version details. Each element in the list contains detailed information about one cache engine version.</p>"
163
- }
164
- },
165
- "CacheEngineVersionMessage": {
166
- "base": "<p>Represents the output of a <a>DescribeCacheEngineVersions</a> action.</p>",
167
- "refs": {
168
- }
169
- },
170
- "CacheNode": {
171
- "base": "<p>Represents an individual cache node within a cache cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached or Redis.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
172
- "refs": {
173
- "CacheNodeList$member": null
174
- }
175
- },
176
- "CacheNodeIdsList": {
177
- "base": null,
178
- "refs": {
179
- "CacheParameterGroupStatus$CacheNodeIdsToReboot": "<p>A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).</p>",
180
- "ModifyCacheClusterMessage$CacheNodeIdsToRemove": "<p>A list of cache node IDs to be removed. A node ID is a numeric identifier (0001, 0002, etc.). This parameter is only valid when <i>NumCacheNodes</i> is less than the existing number of cache nodes. The number of cache node IDs supplied in this parameter must match the difference between the existing number of cache nodes in the cluster or pending cache nodes, whichever is greater, and the value of <i>NumCacheNodes</i> in the request.</p> <p>For example: If you have 3 active cache nodes, 7 pending cache nodes, and the number of cache nodes in this <code>ModifyCacheCluser</code> call is 5, you must list 2 (7 - 5) cache node IDs to remove.</p>",
181
- "PendingModifiedValues$CacheNodeIdsToRemove": "<p>A list of cache node IDs that are being removed (or will be removed) from the cache cluster. A node ID is a numeric identifier (0001, 0002, etc.).</p>",
182
- "RebootCacheClusterMessage$CacheNodeIdsToReboot": "<p>A list of cache node IDs to reboot. A node ID is a numeric identifier (0001, 0002, etc.). To reboot an entire cache cluster, specify all of the cache node IDs.</p>"
183
- }
184
- },
185
- "CacheNodeList": {
186
- "base": null,
187
- "refs": {
188
- "CacheCluster$CacheNodes": "<p>A list of cache nodes that are members of the cache cluster.</p>"
189
- }
190
- },
191
- "CacheNodeTypeSpecificParameter": {
192
- "base": "<p>A parameter that has a different value for each cache node type it is applied to. For example, in a Redis cache cluster, a <i>cache.m1.large</i> cache node type would have a larger <i>maxmemory</i> value than a <i>cache.m1.small</i> type.</p>",
193
- "refs": {
194
- "CacheNodeTypeSpecificParametersList$member": null
195
- }
196
- },
197
- "CacheNodeTypeSpecificParametersList": {
198
- "base": null,
199
- "refs": {
200
- "CacheParameterGroupDetails$CacheNodeTypeSpecificParameters": "<p>A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.</p>",
201
- "EngineDefaults$CacheNodeTypeSpecificParameters": "<p>A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.</p>"
202
- }
203
- },
204
- "CacheNodeTypeSpecificValue": {
205
- "base": "<p>A value that applies only to a certain cache node type.</p>",
206
- "refs": {
207
- "CacheNodeTypeSpecificValueList$member": null
208
- }
209
- },
210
- "CacheNodeTypeSpecificValueList": {
211
- "base": null,
212
- "refs": {
213
- "CacheNodeTypeSpecificParameter$CacheNodeTypeSpecificValues": "<p>A list of cache node types and their corresponding values for this parameter.</p>"
214
- }
215
- },
216
- "CacheParameterGroup": {
217
- "base": "<p>Represents the output of a <i>CreateCacheParameterGroup</i> action.</p>",
218
- "refs": {
219
- "CacheParameterGroupList$member": null,
220
- "CreateCacheParameterGroupResult$CacheParameterGroup": null
221
- }
222
- },
223
- "CacheParameterGroupAlreadyExistsFault": {
224
- "base": "<p>A cache parameter group with the requested name already exists.</p>",
225
- "refs": {
226
- }
227
- },
228
- "CacheParameterGroupDetails": {
229
- "base": "<p>Represents the output of a <i>DescribeCacheParameters</i> action.</p>",
230
- "refs": {
231
- }
232
- },
233
- "CacheParameterGroupList": {
234
- "base": null,
235
- "refs": {
236
- "CacheParameterGroupsMessage$CacheParameterGroups": "<p>A list of cache parameter groups. Each element in the list contains detailed information about one cache parameter group.</p>"
237
- }
238
- },
239
- "CacheParameterGroupNameMessage": {
240
- "base": "<p>Represents the output of one of the following actions:</p> <ul> <li> <i>ModifyCacheParameterGroup</i> </li> <li> <i>ResetCacheParameterGroup</i> </li> </ul>",
241
- "refs": {
242
- }
243
- },
244
- "CacheParameterGroupNotFoundFault": {
245
- "base": "<p> The requested cache parameter group name does not refer to an existing cache parameter group.</p>",
246
- "refs": {
247
- }
248
- },
249
- "CacheParameterGroupQuotaExceededFault": {
250
- "base": "<p>The request cannot be processed because it would exceed the maximum number of cache security groups.</p>",
251
- "refs": {
252
- }
253
- },
254
- "CacheParameterGroupStatus": {
255
- "base": "<p>The status of the cache parameter group.</p>",
256
- "refs": {
257
- "CacheCluster$CacheParameterGroup": null
258
- }
259
- },
260
- "CacheParameterGroupsMessage": {
261
- "base": "<p>Represents the output of a <i>DescribeCacheParameterGroups</i> action.</p>",
262
- "refs": {
263
- }
264
- },
265
- "CacheSecurityGroup": {
266
- "base": "<p>Represents the output of one of the following actions:</p> <ul> <li> <i>AuthorizeCacheSecurityGroupIngress</i> </li> <li> <i>CreateCacheSecurityGroup</i> </li> <li> <i>RevokeCacheSecurityGroupIngress</i> </li> </ul>",
267
- "refs": {
268
- "CacheSecurityGroups$member": null,
269
- "AuthorizeCacheSecurityGroupIngressResult$CacheSecurityGroup": null,
270
- "CreateCacheSecurityGroupResult$CacheSecurityGroup": null,
271
- "RevokeCacheSecurityGroupIngressResult$CacheSecurityGroup": null
272
- }
273
- },
274
- "CacheSecurityGroupAlreadyExistsFault": {
275
- "base": "<p>A cache security group with the specified name already exists.</p>",
276
- "refs": {
277
- }
278
- },
279
- "CacheSecurityGroupMembership": {
280
- "base": "<p>Represents a cache cluster's status within a particular cache security group.</p>",
281
- "refs": {
282
- "CacheSecurityGroupMembershipList$member": null
283
- }
284
- },
285
- "CacheSecurityGroupMembershipList": {
286
- "base": null,
287
- "refs": {
288
- "CacheCluster$CacheSecurityGroups": "<p>A list of cache security group elements, composed of name and status sub-elements.</p>"
289
- }
290
- },
291
- "CacheSecurityGroupMessage": {
292
- "base": "<p>Represents the output of a <i>DescribeCacheSecurityGroups</i> action.</p>",
293
- "refs": {
294
- }
295
- },
296
- "CacheSecurityGroupNameList": {
297
- "base": null,
298
- "refs": {
299
- "CreateCacheClusterMessage$CacheSecurityGroupNames": "<p>A list of security group names to associate with this cache cluster.</p> <p>Use this parameter only when you are creating a cache cluster outside of an Amazon Virtual Private Cloud (VPC).</p>",
300
- "CreateReplicationGroupMessage$CacheSecurityGroupNames": "<p>A list of cache security group names to associate with this replication group.</p>",
301
- "ModifyCacheClusterMessage$CacheSecurityGroupNames": "<p>A list of cache security group names to authorize on this cache cluster. This change is asynchronously applied as soon as possible.</p> <p>This parameter can be used only with clusters that are created outside of an Amazon Virtual Private Cloud (VPC).</p> <p>Constraints: Must contain no more than 255 alphanumeric characters. Must not be \"Default\".</p>",
302
- "ModifyReplicationGroupMessage$CacheSecurityGroupNames": "<p>A list of cache security group names to authorize for the clusters in this replication group. This change is asynchronously applied as soon as possible.</p> <p>This parameter can be used only with replication group containing cache clusters running outside of an Amazon Virtual Private Cloud (VPC).</p> <p>Constraints: Must contain no more than 255 alphanumeric characters. Must not be \"Default\".</p>"
303
- }
304
- },
305
- "CacheSecurityGroupNotFoundFault": {
306
- "base": "<p> The requested cache security group name does not refer to an existing cache security group.</p>",
307
- "refs": {
308
- }
309
- },
310
- "CacheSecurityGroupQuotaExceededFault": {
311
- "base": "<p>The request cannot be processed because it would exceed the allowed number of cache security groups.</p>",
312
- "refs": {
313
- }
314
- },
315
- "CacheSecurityGroups": {
316
- "base": null,
317
- "refs": {
318
- "CacheSecurityGroupMessage$CacheSecurityGroups": "<p>A list of cache security groups. Each element in the list contains detailed information about one group.</p>"
319
- }
320
- },
321
- "CacheSubnetGroup": {
322
- "base": "<p>Represents the output of one of the following actions:</p> <ul> <li> <i>CreateCacheSubnetGroup</i> </li> <li> <i>ModifyCacheSubnetGroup</i> </li> </ul>",
323
- "refs": {
324
- "CacheSubnetGroups$member": null,
325
- "CreateCacheSubnetGroupResult$CacheSubnetGroup": null,
326
- "ModifyCacheSubnetGroupResult$CacheSubnetGroup": null
327
- }
328
- },
329
- "CacheSubnetGroupAlreadyExistsFault": {
330
- "base": "<p> The requested cache subnet group name is already in use by an existing cache subnet group.</p>",
331
- "refs": {
332
- }
333
- },
334
- "CacheSubnetGroupInUse": {
335
- "base": "<p>The requested cache subnet group is currently in use.</p>",
336
- "refs": {
337
- }
338
- },
339
- "CacheSubnetGroupMessage": {
340
- "base": "<p>Represents the output of a <i>DescribeCacheSubnetGroups</i> action.</p>",
341
- "refs": {
342
- }
343
- },
344
- "CacheSubnetGroupNotFoundFault": {
345
- "base": "<p>The requested cache subnet group name does not refer to an existing cache subnet group.</p>",
346
- "refs": {
347
- }
348
- },
349
- "CacheSubnetGroupQuotaExceededFault": {
350
- "base": "<p>The request cannot be processed because it would exceed the allowed number of cache subnet groups.</p>",
351
- "refs": {
352
- }
353
- },
354
- "CacheSubnetGroups": {
355
- "base": null,
356
- "refs": {
357
- "CacheSubnetGroupMessage$CacheSubnetGroups": "<p>A list of cache subnet groups. Each element in the list contains detailed information about one group.</p>"
358
- }
359
- },
360
- "CacheSubnetQuotaExceededFault": {
361
- "base": "<p>The request cannot be processed because it would exceed the allowed number of subnets in a cache subnet group.</p>",
362
- "refs": {
363
- }
364
- },
365
- "ClusterIdList": {
366
- "base": null,
367
- "refs": {
368
- "ReplicationGroup$MemberClusters": "<p>The names of all the cache clusters that are part of this replication group.</p>"
369
- }
370
- },
371
- "ClusterQuotaForCustomerExceededFault": {
372
- "base": "<p>The request cannot be processed because it would exceed the allowed number of cache clusters per customer.</p>",
373
- "refs": {
374
- }
375
- },
376
- "CopySnapshotMessage": {
377
- "base": "<p>Represents the input of a <i>CopySnapshotMessage</i> action.</p>",
378
- "refs": {
379
- }
380
- },
381
- "CreateCacheClusterMessage": {
382
- "base": "<p>Represents the input of a <i>CreateCacheCluster</i> action.</p>",
383
- "refs": {
384
- }
385
- },
386
- "CreateCacheParameterGroupMessage": {
387
- "base": "<p>Represents the input of a <i>CreateCacheParameterGroup</i> action.</p>",
388
- "refs": {
389
- }
390
- },
391
- "CreateCacheSecurityGroupMessage": {
392
- "base": "<p>Represents the input of a <i>CreateCacheSecurityGroup</i> action.</p>",
393
- "refs": {
394
- }
395
- },
396
- "CreateCacheSubnetGroupMessage": {
397
- "base": "<p>Represents the input of a <i>CreateCacheSubnetGroup</i> action.</p>",
398
- "refs": {
399
- }
400
- },
401
- "CreateReplicationGroupMessage": {
402
- "base": "<p>Represents the input of a <i>CreateReplicationGroup</i> action.</p>",
403
- "refs": {
404
- }
405
- },
406
- "CreateSnapshotMessage": {
407
- "base": "<p>Represents the input of a <i>CreateSnapshot</i> action.</p>",
408
- "refs": {
409
- }
410
- },
411
- "DeleteCacheClusterMessage": {
412
- "base": "<p>Represents the input of a <i>DeleteCacheCluster</i> action.</p>",
413
- "refs": {
414
- }
415
- },
416
- "DeleteCacheParameterGroupMessage": {
417
- "base": "<p>Represents the input of a <i>DeleteCacheParameterGroup</i> action.</p>",
418
- "refs": {
419
- }
420
- },
421
- "DeleteCacheSecurityGroupMessage": {
422
- "base": "<p>Represents the input of a <i>DeleteCacheSecurityGroup</i> action.</p>",
423
- "refs": {
424
- }
425
- },
426
- "DeleteCacheSubnetGroupMessage": {
427
- "base": "<p>Represents the input of a <i>DeleteCacheSubnetGroup</i> action.</p>",
428
- "refs": {
429
- }
430
- },
431
- "DeleteReplicationGroupMessage": {
432
- "base": "<p>Represents the input of a <i>DeleteReplicationGroup</i> action.</p>",
433
- "refs": {
434
- }
435
- },
436
- "DeleteSnapshotMessage": {
437
- "base": "<p>Represents the input of a <i>DeleteSnapshot</i> action.</p>",
438
- "refs": {
439
- }
440
- },
441
- "DescribeCacheClustersMessage": {
442
- "base": "<p>Represents the input of a <i>DescribeCacheClusters</i> action.</p>",
443
- "refs": {
444
- }
445
- },
446
- "DescribeCacheEngineVersionsMessage": {
447
- "base": "<p>Represents the input of a <i>DescribeCacheEngineVersions</i> action.</p>",
448
- "refs": {
449
- }
450
- },
451
- "DescribeCacheParameterGroupsMessage": {
452
- "base": "<p>Represents the input of a <i>DescribeCacheParameterGroups</i> action.</p>",
453
- "refs": {
454
- }
455
- },
456
- "DescribeCacheParametersMessage": {
457
- "base": "<p>Represents the input of a <i>DescribeCacheParameters</i> action.</p>",
458
- "refs": {
459
- }
460
- },
461
- "DescribeCacheSecurityGroupsMessage": {
462
- "base": "<p>Represents the input of a <i>DescribeCacheSecurityGroups</i> action.</p>",
463
- "refs": {
464
- }
465
- },
466
- "DescribeCacheSubnetGroupsMessage": {
467
- "base": "<p>Represents the input of a <i>DescribeCacheSubnetGroups</i> action.</p>",
468
- "refs": {
469
- }
470
- },
471
- "DescribeEngineDefaultParametersMessage": {
472
- "base": "<p>Represents the input of a <i>DescribeEngineDefaultParameters</i> action.</p>",
473
- "refs": {
474
- }
475
- },
476
- "DescribeEventsMessage": {
477
- "base": "<p>Represents the input of a <i>DescribeEvents</i> action.</p>",
478
- "refs": {
479
- }
480
- },
481
- "DescribeReplicationGroupsMessage": {
482
- "base": "<p>Represents the input of a <i>DescribeReplicationGroups</i> action.</p>",
483
- "refs": {
484
- }
485
- },
486
- "DescribeReservedCacheNodesMessage": {
487
- "base": "<p>Represents the input of a <i>DescribeReservedCacheNodes</i> action.</p>",
488
- "refs": {
489
- }
490
- },
491
- "DescribeReservedCacheNodesOfferingsMessage": {
492
- "base": "<p>Represents the input of a <i>DescribeReservedCacheNodesOfferings</i> action.</p>",
493
- "refs": {
494
- }
495
- },
496
- "DescribeSnapshotsListMessage": {
497
- "base": "<p>Represents the output of a <i>DescribeSnapshots</i> action.</p>",
498
- "refs": {
499
- }
500
- },
501
- "DescribeSnapshotsMessage": {
502
- "base": "<p>Represents the input of a <i>DescribeSnapshotsMessage</i> action.</p>",
503
- "refs": {
504
- }
505
- },
506
- "Double": {
507
- "base": null,
508
- "refs": {
509
- "RecurringCharge$RecurringChargeAmount": "<p>The monetary amount of the recurring charge.</p>",
510
- "ReservedCacheNode$FixedPrice": "<p>The fixed price charged for this reserved cache node.</p>",
511
- "ReservedCacheNode$UsagePrice": "<p>The hourly price charged for this reserved cache node.</p>",
512
- "ReservedCacheNodesOffering$FixedPrice": "<p>The fixed price charged for this offering.</p>",
513
- "ReservedCacheNodesOffering$UsagePrice": "<p>The hourly price charged for this offering.</p>"
514
- }
515
- },
516
- "EC2SecurityGroup": {
517
- "base": "<p>Provides ownership and status information for an Amazon EC2 security group.</p>",
518
- "refs": {
519
- "EC2SecurityGroupList$member": null
520
- }
521
- },
522
- "EC2SecurityGroupList": {
523
- "base": null,
524
- "refs": {
525
- "CacheSecurityGroup$EC2SecurityGroups": "<p>A list of Amazon EC2 security groups that are associated with this cache security group.</p>"
526
- }
527
- },
528
- "Endpoint": {
529
- "base": "<p>Represents the information required for client programs to connect to a cache node.</p>",
530
- "refs": {
531
- "CacheCluster$ConfigurationEndpoint": null,
532
- "CacheNode$Endpoint": "<p>The hostname for connecting to this cache node.</p>",
533
- "NodeGroup$PrimaryEndpoint": null,
534
- "NodeGroupMember$ReadEndpoint": null
535
- }
536
- },
537
- "EngineDefaults": {
538
- "base": "<p>Represents the output of a <i>DescribeEngineDefaultParameters</i> action.</p>",
539
- "refs": {
540
- "DescribeEngineDefaultParametersResult$EngineDefaults": null
541
- }
542
- },
543
- "Event": {
544
- "base": "<p>Represents a single occurrence of something interesting within the system. Some examples of events are creating a cache cluster, adding or removing a cache node, or rebooting a node.</p>",
545
- "refs": {
546
- "EventList$member": null
547
- }
548
- },
549
- "EventList": {
550
- "base": null,
551
- "refs": {
552
- "EventsMessage$Events": "<p>A list of events. Each element in the list contains detailed information about one event.</p>"
553
- }
554
- },
555
- "EventsMessage": {
556
- "base": "<p>Represents the output of a <i>DescribeEvents</i> action.</p>",
557
- "refs": {
558
- }
559
- },
560
- "InsufficientCacheClusterCapacityFault": {
561
- "base": "<p>The requested cache node type is not available in the specified Availability Zone.</p>",
562
- "refs": {
563
- }
564
- },
565
- "Integer": {
566
- "base": null,
567
- "refs": {
568
- "Endpoint$Port": "<p>The port number that the cache engine is listening on.</p>",
569
- "ReservedCacheNode$Duration": "<p>The duration of the reservation in seconds.</p>",
570
- "ReservedCacheNode$CacheNodeCount": "<p>The number of cache nodes that have been reserved.</p>",
571
- "ReservedCacheNodesOffering$Duration": "<p>The duration of the offering. in seconds.</p>"
572
- }
573
- },
574
- "IntegerOptional": {
575
- "base": null,
576
- "refs": {
577
- "CacheCluster$NumCacheNodes": "<p>The number of cache nodes in the cache cluster.</p> <p>For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.</p>",
578
- "CacheCluster$SnapshotRetentionLimit": "<p>The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them. For example, if you set <i>SnapshotRetentionLimit</i> to 5, then a snapshot that was taken today will be retained for 5 days before being deleted.</p> <p><b>Important</b><br>If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.</p>",
579
- "CreateCacheClusterMessage$NumCacheNodes": "<p>The initial number of cache nodes that the cache cluster will have.</p> <p>For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.</p> <p>If you need more than 20 nodes for your Memcached cluster, please fill out the ElastiCache Limit Increase Request form at <a href=\"http://aws.amazon.com/contact-us/elasticache-node-limit-request/\">http://aws.amazon.com/contact-us/elasticache-node-limit-request/</a>.</p>",
580
- "CreateCacheClusterMessage$Port": "<p>The port number on which each of the cache nodes will accept connections.</p>",
581
- "CreateCacheClusterMessage$SnapshotRetentionLimit": "<p>The number of days for which ElastiCache will retain automatic snapshots before deleting them. For example, if you set <code>SnapshotRetentionLimit</code> to 5, then a snapshot that was taken today will be retained for 5 days before being deleted.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p> <p>Default: 0 (i.e., automatic backups are disabled for this cache cluster).</p>",
582
- "CreateReplicationGroupMessage$NumCacheClusters": "<p>The number of cache clusters this replication group will initially have.</p> <p>If <i>Multi-AZ</i> is <code>enabled</code>, the value of this parameter must be at least 2.</p> <p>The maximum permitted value for <i>NumCacheClusters</i> is 6 (primary plus 5 replicas). If you need to exceed this limit, please fill out the ElastiCache Limit Increase Request form at <a href=\"http://aws.amazon.com/contact-us/elasticache-node-limit-request\">http://aws.amazon.com/contact-us/elasticache-node-limit-request</a>.</p>",
583
- "CreateReplicationGroupMessage$Port": "<p>The port number on which each member of the replication group will accept connections.</p>",
584
- "CreateReplicationGroupMessage$SnapshotRetentionLimit": "<p>The number of days for which ElastiCache will retain automatic snapshots before deleting them. For example, if you set <code>SnapshotRetentionLimit</code> to 5, then a snapshot that was taken today will be retained for 5 days before being deleted.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p> <p>Default: 0 (i.e., automatic backups are disabled for this cache cluster).</p>",
585
- "DescribeCacheClustersMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
586
- "DescribeCacheEngineVersionsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
587
- "DescribeCacheParameterGroupsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
588
- "DescribeCacheParametersMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
589
- "DescribeCacheSecurityGroupsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
590
- "DescribeCacheSubnetGroupsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
591
- "DescribeEngineDefaultParametersMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
592
- "DescribeEventsMessage$Duration": "<p>The number of minutes' worth of events to retrieve.</p>",
593
- "DescribeEventsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
594
- "DescribeReplicationGroupsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
595
- "DescribeReservedCacheNodesMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
596
- "DescribeReservedCacheNodesOfferingsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: minimum 20; maximum 100.</p>",
597
- "DescribeSnapshotsMessage$MaxRecords": "<p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p> <p>Default: 50</p> <p>Constraints: minimum 20; maximum 50.</p>",
598
- "ModifyCacheClusterMessage$NumCacheNodes": "<p>The number of cache nodes that the cache cluster should have. If the value for <code>NumCacheNodes</code> is greater than the sum of the number of current cache nodes and the number of cache nodes pending creation (which may be zero), then more nodes will be added. If the value is less than the number of existing cache nodes, then nodes will be removed. If the value is equal to the number of current cache nodes, then any pending add or remove requests are canceled.</p> <p>If you are removing cache nodes, you must use the <code>CacheNodeIdsToRemove</code> parameter to provide the IDs of the specific cache nodes to remove.</p> <p>For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.</p> <p><b>Note:</b><br>Adding or removing Memcached cache nodes can be applied immediately or as a pending action. See <code>ApplyImmediately</code>.<br> A pending action to modify the number of cache nodes in a cluster during its maintenance window, whether by adding or removing nodes in accordance with the scale out architecture, is not queued. The customer's latest request to add or remove nodes to the cluster overrides any previous pending actions to modify the number of cache nodes in the cluster. For example, a request to remove 2 nodes would override a previous pending action to remove 3 nodes. Similarly, a request to add 2 nodes would override a previous pending action to remove 3 nodes and vice versa. As Memcached cache nodes may now be provisioned in different Availability Zones with flexible cache node placement, a request to add nodes does not automatically override a previous pending action to add nodes. The customer can modify the previous pending action to add more nodes or explicitly cancel the pending request and retry the new request. To cancel pending actions to modify the number of cache nodes in a cluster, use the <code>ModifyCacheCluster</code> request and set <i>NumCacheNodes</i> equal to the number of cache nodes currently in the cache cluster.</p>",
599
- "ModifyCacheClusterMessage$SnapshotRetentionLimit": "<p>The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them. For example, if you set <i>SnapshotRetentionLimit</i> to 5, then a snapshot that was taken today will be retained for 5 days before being deleted.</p> <p><b>Important</b><br>If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.</p>",
600
- "ModifyReplicationGroupMessage$SnapshotRetentionLimit": "<p>The number of days for which ElastiCache will retain automatic node group snapshots before deleting them. For example, if you set <i>SnapshotRetentionLimit</i> to 5, then a snapshot that was taken today will be retained for 5 days before being deleted.</p> <p><b>Important</b><br>If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.</p>",
601
- "PendingModifiedValues$NumCacheNodes": "<p>The new number of cache nodes for the cache cluster.</p> <p>For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.</p>",
602
- "PurchaseReservedCacheNodesOfferingMessage$CacheNodeCount": "<p>The number of cache node instances to reserve.</p> <p>Default: <code>1</code></p>",
603
- "Snapshot$NumCacheNodes": "<p>The number of cache nodes in the source cache cluster.</p> <p>For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.</p>",
604
- "Snapshot$Port": "<p>The port number used by each cache nodes in the source cache cluster.</p>",
605
- "Snapshot$SnapshotRetentionLimit": "<p>For an automatic snapshot, the number of days for which ElastiCache will retain the snapshot before deleting it.</p> <p>For manual snapshots, this field reflects the <i>SnapshotRetentionLimit</i> for the source cache cluster when the snapshot was created. This field is otherwise ignored: Manual snapshots do not expire, and can only be deleted using the <i>DeleteSnapshot</i> action. </p> <p><b>Important</b><br>If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.</p>"
606
- }
607
- },
608
- "InvalidARNFault": {
609
- "base": "<p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>",
610
- "refs": {
611
- }
612
- },
613
- "InvalidCacheClusterStateFault": {
614
- "base": "<p>The requested cache cluster is not in the <i>available</i> state.</p>",
615
- "refs": {
616
- }
617
- },
618
- "InvalidCacheParameterGroupStateFault": {
619
- "base": "<p>The current state of the cache parameter group does not allow the requested action to occur. </p>",
620
- "refs": {
621
- }
622
- },
623
- "InvalidCacheSecurityGroupStateFault": {
624
- "base": "<p>The current state of the cache security group does not allow deletion.</p>",
625
- "refs": {
626
- }
627
- },
628
- "InvalidParameterCombinationException": {
629
- "base": "<p>Two or more incompatible parameters were specified.</p>",
630
- "refs": {
631
- }
632
- },
633
- "InvalidParameterValueException": {
634
- "base": "<p>The value for a parameter is invalid.</p>",
635
- "refs": {
636
- }
637
- },
638
- "InvalidReplicationGroupStateFault": {
639
- "base": "<p>The requested replication group is not in the <i>available</i> state.</p>",
640
- "refs": {
641
- }
642
- },
643
- "InvalidSnapshotStateFault": {
644
- "base": "<p>The current state of the snapshot does not allow the requested action to occur.</p>",
645
- "refs": {
646
- }
647
- },
648
- "InvalidSubnet": {
649
- "base": "<p>An invalid subnet identifier was specified.</p>",
650
- "refs": {
651
- }
652
- },
653
- "InvalidVPCNetworkStateFault": {
654
- "base": "<p>The VPC network is in an invalid state.</p>",
655
- "refs": {
656
- }
657
- },
658
- "KeyList": {
659
- "base": null,
660
- "refs": {
661
- "RemoveTagsFromResourceMessage$TagKeys": "<p>A list of <code>TagKeys</code> identifying the tags you want removed from the named resource. For example, <code>TagKeys.member.1=Region</code> removes the cost allocation tag with the key name <code>Region</code> from the resource named by the <i>ResourceName</i> parameter.</p>"
662
- }
663
- },
664
- "ListTagsForResourceMessage": {
665
- "base": "<p>The input parameters for the <i>ListTagsForResource</i> action.</p>",
666
- "refs": {
667
- }
668
- },
669
- "ModifyCacheClusterMessage": {
670
- "base": "<p>Represents the input of a <i>ModifyCacheCluster</i> action.</p>",
671
- "refs": {
672
- }
673
- },
674
- "ModifyCacheParameterGroupMessage": {
675
- "base": "<p>Represents the input of a <i>ModifyCacheParameterGroup</i> action.</p>",
676
- "refs": {
677
- }
678
- },
679
- "ModifyCacheSubnetGroupMessage": {
680
- "base": "<p>Represents the input of a <i>ModifyCacheSubnetGroup</i> action.</p>",
681
- "refs": {
682
- }
683
- },
684
- "ModifyReplicationGroupMessage": {
685
- "base": "<p>Represents the input of a <i>ModifyReplicationGroups</i> action.</p>",
686
- "refs": {
687
- }
688
- },
689
- "NodeGroup": {
690
- "base": "<p>Represents a collection of cache nodes in a replication group.</p>",
691
- "refs": {
692
- "NodeGroupList$member": null
693
- }
694
- },
695
- "NodeGroupList": {
696
- "base": null,
697
- "refs": {
698
- "ReplicationGroup$NodeGroups": "<p>A single element list with information about the nodes in the replication group.</p>"
699
- }
700
- },
701
- "NodeGroupMember": {
702
- "base": "<p>Represents a single node within a node group.</p>",
703
- "refs": {
704
- "NodeGroupMemberList$member": null
705
- }
706
- },
707
- "NodeGroupMemberList": {
708
- "base": null,
709
- "refs": {
710
- "NodeGroup$NodeGroupMembers": "<p>A list containing information about individual nodes within the node group.</p>"
711
- }
712
- },
713
- "NodeQuotaForClusterExceededFault": {
714
- "base": "<p>The request cannot be processed because it would exceed the allowed number of cache nodes in a single cache cluster.</p>",
715
- "refs": {
716
- }
717
- },
718
- "NodeQuotaForCustomerExceededFault": {
719
- "base": "<p>The request cannot be processed because it would exceed the allowed number of cache nodes per customer. </p>",
720
- "refs": {
721
- }
722
- },
723
- "NodeSnapshot": {
724
- "base": "<p>Represents an individual cache node in a snapshot of a cache cluster.</p>",
725
- "refs": {
726
- "NodeSnapshotList$member": null
727
- }
728
- },
729
- "NodeSnapshotList": {
730
- "base": null,
731
- "refs": {
732
- "Snapshot$NodeSnapshots": "<p>A list of the cache nodes in the source cache cluster.</p>"
733
- }
734
- },
735
- "NotificationConfiguration": {
736
- "base": "<p>Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).</p>",
737
- "refs": {
738
- "CacheCluster$NotificationConfiguration": null
739
- }
740
- },
741
- "Parameter": {
742
- "base": "<p>Describes an individual setting that controls some aspect of ElastiCache behavior.</p>",
743
- "refs": {
744
- "ParametersList$member": null
745
- }
746
- },
747
- "ParameterNameValue": {
748
- "base": "<p>Describes a name-value pair that is used to update the value of a parameter.</p>",
749
- "refs": {
750
- "ParameterNameValueList$member": null
751
- }
752
- },
753
- "ParameterNameValueList": {
754
- "base": null,
755
- "refs": {
756
- "ModifyCacheParameterGroupMessage$ParameterNameValues": "<p>An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.</p>",
757
- "ResetCacheParameterGroupMessage$ParameterNameValues": "<p>An array of parameter names to be reset. If you are not resetting the entire cache parameter group, you must specify at least one parameter name.</p>"
758
- }
759
- },
760
- "ParametersList": {
761
- "base": null,
762
- "refs": {
763
- "CacheParameterGroupDetails$Parameters": "<p>A list of <a>Parameter</a> instances.</p>",
764
- "EngineDefaults$Parameters": "<p>Contains a list of engine default parameters.</p>"
765
- }
766
- },
767
- "PendingAutomaticFailoverStatus": {
768
- "base": null,
769
- "refs": {
770
- "ReplicationGroupPendingModifiedValues$AutomaticFailoverStatus": "<p>Indicates the status of Multi-AZ for this replication group.</p> <note><p>ElastiCache Multi-AZ replication groups are not supported on:</p> <ul> <li>Redis versions earlier than 2.8.6.</li> <li>T1 and T2 cache node types.</li> </ul> </note>"
771
- }
772
- },
773
- "PendingModifiedValues": {
774
- "base": "<p>A group of settings that will be applied to the cache cluster in the future, or that are currently being applied.</p>",
775
- "refs": {
776
- "CacheCluster$PendingModifiedValues": null
777
- }
778
- },
779
- "PreferredAvailabilityZoneList": {
780
- "base": null,
781
- "refs": {
782
- "CreateCacheClusterMessage$PreferredAvailabilityZones": "<p>A list of the Availability Zones in which cache nodes will be created. The order of the zones in the list is not important.</p> <p>This option is only supported on Memcached.</p> <note> <p>If you are creating your cache cluster in an Amazon VPC (recommended) you can only locate nodes in Availability Zones that are associated with the subnets in the selected subnet group.</p> <p>The number of Availability Zones listed must equal the value of <code>NumCacheNodes</code>.</p> </note> <p>If you want all the nodes in the same Availability Zone, use <code>PreferredAvailabilityZone</code> instead, or repeat the Availability Zone multiple times in the list.</p> <p>Default: System chosen Availability Zones.</p> <p>Example: One Memcached node in each of three different Availability Zones: <code>PreferredAvailabilityZones.member.1=us-west-2a&amp;PreferredAvailabilityZones.member.2=us-west-2b&amp;PreferredAvailabilityZones.member.3=us-west-2c</code></p> <p>Example: All three Memcached nodes in one Availability Zone: <code>PreferredAvailabilityZones.member.1=us-west-2a&amp;PreferredAvailabilityZones.member.2=us-west-2a&amp;PreferredAvailabilityZones.member.3=us-west-2a</code></p>",
783
- "ModifyCacheClusterMessage$NewAvailabilityZones": "<p>The list of Availability Zones where the new Memcached cache nodes will be created.</p> <p>This parameter is only valid when <i>NumCacheNodes</i> in the request is greater than the sum of the number of active cache nodes and the number of cache nodes pending creation (which may be zero). The number of Availability Zones supplied in this list must match the cache nodes being added in this request.</p> <p>This option is only supported on Memcached clusters.</p> <p>Scenarios: <ul> <li> <b>Scenario 1:</b> You have 3 active nodes and wish to add 2 nodes.<br> Specify <code>NumCacheNodes=5</code> (3 + 2) and optionally specify two Availability Zones for the two new nodes.</li> <li> <b>Scenario 2:</b> You have 3 active nodes and 2 nodes pending creation (from the scenario 1 call) and want to add 1 more node.<br> Specify <code>NumCacheNodes=6</code> ((3 + 2) + 1)</li> and optionally specify an Availability Zone for the new node. <li> <b>Scenario 3:</b> You want to cancel all pending actions.<br> Specify <code>NumCacheNodes=3</code> to cancel all pending actions.</li> </ul> </p> <p>The Availability Zone placement of nodes pending creation cannot be modified. If you wish to cancel any nodes pending creation, add 0 nodes by setting <code>NumCacheNodes</code> to the number of current nodes.</p> <p>If <code>cross-az</code> is specified, existing Memcached nodes remain in their current Availability Zone. Only newly created nodes can be located in different Availability Zones. For guidance on how to move existing Memcached nodes to different Availability Zones, see the <b>Availability Zone Considerations</b> section of <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheNode.Memcached.html\">Cache Node Considerations for Memcached</a>.</p> <p><b>Impact of new add/remove requests upon pending requests</b></p> <table> <tr> <th>Scenarios</th> <th>Pending action</th> <th>New Request</th> <th>Results</th> </tr> <tr> <td>Scenario-1</td> <td>Delete</td> <td>Delete</td> <td>The new delete, pending or immediate, replaces the pending delete.</td> </tr> <tr> <td>Scenario-2</td> <td>Delete</td> <td>Create</td> <td>The new create, pending or immediate, replaces the pending delete.</td> </tr> <tr> <td>Scenario-3</td> <td>Create</td> <td>Delete</td> <td>The new delete, pending or immediate, replaces the pending create.</td> </tr> <tr> <td>Scenario-4</td> <td>Create</td> <td>Create</td> <td>The new create is added to the pending create.<br/> <b>Important:</b><br/>If the new create request is <b>Apply Immediately - Yes</b>, all creates are performed immediately. If the new create request is <b>Apply Immediately - No</b>, all creates are pending.</td> </tr> </table> <p>Example: <code>NewAvailabilityZones.member.1=us-west-2a&amp;NewAvailabilityZones.member.2=us-west-2b&amp;NewAvailabilityZones.member.3=us-west-2c</code></p>"
784
- }
785
- },
786
- "PurchaseReservedCacheNodesOfferingMessage": {
787
- "base": "<p>Represents the input of a <i>PurchaseReservedCacheNodesOffering</i> action.</p>",
788
- "refs": {
789
- }
790
- },
791
- "RebootCacheClusterMessage": {
792
- "base": "<p>Represents the input of a <i>RebootCacheCluster</i> action.</p>",
793
- "refs": {
794
- }
795
- },
796
- "RecurringCharge": {
797
- "base": "<p>Contains the specific price and frequency of a recurring charges for a reserved cache node, or for a reserved cache node offering.</p>",
798
- "refs": {
799
- "RecurringChargeList$member": null
800
- }
801
- },
802
- "RecurringChargeList": {
803
- "base": null,
804
- "refs": {
805
- "ReservedCacheNode$RecurringCharges": "<p>The recurring price charged to run this reserved cache node.</p>",
806
- "ReservedCacheNodesOffering$RecurringCharges": "<p>The recurring price charged to run this reserved cache node.</p>"
807
- }
808
- },
809
- "RemoveTagsFromResourceMessage": {
810
- "base": "<p>Represents the input of a <i>RemoveTagsFromResource</i> action.</p>",
811
- "refs": {
812
- }
813
- },
814
- "ReplicationGroup": {
815
- "base": "<p>Contains all of the attributes of a specific replication group.</p>",
816
- "refs": {
817
- "ReplicationGroupList$member": null,
818
- "CreateReplicationGroupResult$ReplicationGroup": null,
819
- "DeleteReplicationGroupResult$ReplicationGroup": null,
820
- "ModifyReplicationGroupResult$ReplicationGroup": null
821
- }
822
- },
823
- "ReplicationGroupAlreadyExistsFault": {
824
- "base": "<p>The specified replication group already exists.</p>",
825
- "refs": {
826
- }
827
- },
828
- "ReplicationGroupList": {
829
- "base": null,
830
- "refs": {
831
- "ReplicationGroupMessage$ReplicationGroups": "<p>A list of replication groups. Each item in the list contains detailed information about one replication group.</p>"
832
- }
833
- },
834
- "ReplicationGroupMessage": {
835
- "base": "<p>Represents the output of a <i>DescribeReplicationGroups</i> action.</p>",
836
- "refs": {
837
- }
838
- },
839
- "ReplicationGroupNotFoundFault": {
840
- "base": "<p>The specified replication group does not exist.</p>",
841
- "refs": {
842
- }
843
- },
844
- "ReplicationGroupPendingModifiedValues": {
845
- "base": "<p>The settings to be applied to the replication group, either immediately or during the next maintenance window.</p>",
846
- "refs": {
847
- "ReplicationGroup$PendingModifiedValues": "<p>A group of settings to be applied to the replication group, either immediately or during the next maintenance window.</p>"
848
- }
849
- },
850
- "ReservedCacheNode": {
851
- "base": "<p>Represents the output of a <i>PurchaseReservedCacheNodesOffering</i> action.</p>",
852
- "refs": {
853
- "ReservedCacheNodeList$member": null,
854
- "PurchaseReservedCacheNodesOfferingResult$ReservedCacheNode": null
855
- }
856
- },
857
- "ReservedCacheNodeAlreadyExistsFault": {
858
- "base": "<p>You already have a reservation with the given identifier.</p>",
859
- "refs": {
860
- }
861
- },
862
- "ReservedCacheNodeList": {
863
- "base": null,
864
- "refs": {
865
- "ReservedCacheNodeMessage$ReservedCacheNodes": "<p>A list of reserved cache nodes. Each element in the list contains detailed information about one node.</p>"
866
- }
867
- },
868
- "ReservedCacheNodeMessage": {
869
- "base": "<p>Represents the output of a <i>DescribeReservedCacheNodes</i> action.</p>",
870
- "refs": {
871
- }
872
- },
873
- "ReservedCacheNodeNotFoundFault": {
874
- "base": "<p>The requested reserved cache node was not found.</p>",
875
- "refs": {
876
- }
877
- },
878
- "ReservedCacheNodeQuotaExceededFault": {
879
- "base": "<p>The request cannot be processed because it would exceed the user's cache node quota.</p>",
880
- "refs": {
881
- }
882
- },
883
- "ReservedCacheNodesOffering": {
884
- "base": "<p>Describes all of the attributes of a reserved cache node offering.</p>",
885
- "refs": {
886
- "ReservedCacheNodesOfferingList$member": null
887
- }
888
- },
889
- "ReservedCacheNodesOfferingList": {
890
- "base": null,
891
- "refs": {
892
- "ReservedCacheNodesOfferingMessage$ReservedCacheNodesOfferings": "<p>A list of reserved cache node offerings. Each element in the list contains detailed information about one offering.</p>"
893
- }
894
- },
895
- "ReservedCacheNodesOfferingMessage": {
896
- "base": "<p>Represents the output of a <i>DescribeReservedCacheNodesOfferings</i> action.</p>",
897
- "refs": {
898
- }
899
- },
900
- "ReservedCacheNodesOfferingNotFoundFault": {
901
- "base": "<p>The requested cache node offering does not exist.</p>",
902
- "refs": {
903
- }
904
- },
905
- "ResetCacheParameterGroupMessage": {
906
- "base": "<p>Represents the input of a <i>ResetCacheParameterGroup</i> action.</p>",
907
- "refs": {
908
- }
909
- },
910
- "RevokeCacheSecurityGroupIngressMessage": {
911
- "base": "<p>Represents the input of a <i>RevokeCacheSecurityGroupIngress</i> action.</p>",
912
- "refs": {
913
- }
914
- },
915
- "SecurityGroupIdsList": {
916
- "base": null,
917
- "refs": {
918
- "CreateCacheClusterMessage$SecurityGroupIds": "<p>One or more VPC security groups associated with the cache cluster.</p> <p>Use this parameter only when you are creating a cache cluster in an Amazon Virtual Private Cloud (VPC).</p>",
919
- "CreateReplicationGroupMessage$SecurityGroupIds": "<p>One or more Amazon VPC security groups associated with this replication group.</p> <p>Use this parameter only when you are creating a replication group in an Amazon Virtual Private Cloud (VPC).</p>",
920
- "ModifyCacheClusterMessage$SecurityGroupIds": "<p>Specifies the VPC Security Groups associated with the cache cluster.</p> <p>This parameter can be used only with clusters that are created in an Amazon Virtual Private Cloud (VPC).</p>",
921
- "ModifyReplicationGroupMessage$SecurityGroupIds": "<p>Specifies the VPC Security Groups associated with the cache clusters in the replication group.</p> <p>This parameter can be used only with replication group containing cache clusters running in an Amazon Virtual Private Cloud (VPC).</p>"
922
- }
923
- },
924
- "SecurityGroupMembership": {
925
- "base": "<p>Represents a single cache security group and its status.</p>",
926
- "refs": {
927
- "SecurityGroupMembershipList$member": null
928
- }
929
- },
930
- "SecurityGroupMembershipList": {
931
- "base": null,
932
- "refs": {
933
- "CacheCluster$SecurityGroups": "<p>A list of VPC Security Groups associated with the cache cluster.</p>"
934
- }
935
- },
936
- "Snapshot": {
937
- "base": "<p>Represents a copy of an entire cache cluster as of the time when the snapshot was taken.</p>",
938
- "refs": {
939
- "SnapshotList$member": null,
940
- "CopySnapshotResult$Snapshot": null,
941
- "CreateSnapshotResult$Snapshot": null,
942
- "DeleteSnapshotResult$Snapshot": null
943
- }
944
- },
945
- "SnapshotAlreadyExistsFault": {
946
- "base": "<p>You already have a snapshot with the given name.</p>",
947
- "refs": {
948
- }
949
- },
950
- "SnapshotArnsList": {
951
- "base": null,
952
- "refs": {
953
- "CreateCacheClusterMessage$SnapshotArns": "<p>A single-element string list containing an Amazon Resource Name (ARN) that uniquely identifies a Redis RDB snapshot file stored in Amazon S3. The snapshot file will be used to populate the node group. The Amazon S3 object name in the ARN cannot contain any commas.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p> <p>Example of an Amazon S3 ARN: <code>arn:aws:s3:::my_bucket/snapshot1.rdb</code></p>",
954
- "CreateReplicationGroupMessage$SnapshotArns": "<p>A single-element string list containing an Amazon Resource Name (ARN) that uniquely identifies a Redis RDB snapshot file stored in Amazon S3. The snapshot file will be used to populate the node group. The Amazon S3 object name in the ARN cannot contain any commas.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p> <p>Example of an Amazon S3 ARN: <code>arn:aws:s3:::my_bucket/snapshot1.rdb</code></p>"
955
- }
956
- },
957
- "SnapshotFeatureNotSupportedFault": {
958
- "base": "<p>You attempted one of the following actions:</p> <ul> <li> <p>Creating a snapshot of a Redis cache cluster running on a <i>t1.micro</i> cache node.</p> </li> <li> <p>Creating a snapshot of a cache cluster that is running Memcached rather than Redis.</p> </li> </ul> <p>Neither of these are supported by ElastiCache.</p>",
959
- "refs": {
960
- }
961
- },
962
- "SnapshotList": {
963
- "base": null,
964
- "refs": {
965
- "DescribeSnapshotsListMessage$Snapshots": "<p>A list of snapshots. Each item in the list contains detailed information about one snapshot.</p>"
966
- }
967
- },
968
- "SnapshotNotFoundFault": {
969
- "base": "<p>The requested snapshot name does not refer to an existing snapshot.</p>",
970
- "refs": {
971
- }
972
- },
973
- "SnapshotQuotaExceededFault": {
974
- "base": "<p>The request cannot be processed because it would exceed the maximum number of snapshots.</p>",
975
- "refs": {
976
- }
977
- },
978
- "SourceType": {
979
- "base": null,
980
- "refs": {
981
- "DescribeEventsMessage$SourceType": "<p>The event source to retrieve events for. If no value is specified, all events are returned.</p> <p>Valid values are: <code>cache-cluster</code> | <code>cache-parameter-group</code> | <code>cache-security-group</code> | <code>cache-subnet-group</code></p>",
982
- "Event$SourceType": "<p>Specifies the origin of this event - a cache cluster, a parameter group, a security group, etc.</p>"
983
- }
984
- },
985
- "String": {
986
- "base": null,
987
- "refs": {
988
- "AddTagsToResourceMessage$ResourceName": "<p>The name of the resource to which the tags are to be added, for example <code>arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster</code>.</p>",
989
- "AuthorizeCacheSecurityGroupIngressMessage$CacheSecurityGroupName": "<p>The cache security group which will allow network ingress.</p>",
990
- "AuthorizeCacheSecurityGroupIngressMessage$EC2SecurityGroupName": "<p>The Amazon EC2 security group to be authorized for ingress to the cache security group.</p>",
991
- "AuthorizeCacheSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p>The AWS account number of the Amazon EC2 security group owner. Note that this is not the same thing as an AWS access key ID - you must provide a valid AWS account number for this parameter.</p>",
992
- "AvailabilityZone$Name": "<p>The name of the Availability Zone.</p>",
993
- "AvailabilityZonesList$member": null,
994
- "CacheCluster$CacheClusterId": "<p>The user-supplied identifier of the cache cluster. This identifier is a unique key that identifies a cache cluster.</p>",
995
- "CacheCluster$ClientDownloadLandingPage": "<p>The URL of the web page where you can download the latest ElastiCache client library.</p>",
996
- "CacheCluster$CacheNodeType": "<p>The name of the compute and memory capacity node type for the cache cluster.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
997
- "CacheCluster$Engine": "<p>The name of the cache engine (<i>memcached</i> or <i>redis</i>) to be used for this cache cluster.</p>",
998
- "CacheCluster$EngineVersion": "<p>The version of the cache engine version that is used in this cache cluster.</p>",
999
- "CacheCluster$CacheClusterStatus": "<p>The current state of this cache cluster, one of the following values: <i>available</i>, <i>creating</i>, <i>deleted</i>, <i>deleting</i>, <i>incompatible-network</i>, <i>modifying</i>, <i>rebooting cache cluster nodes</i>, <i>restore-failed</i>, or <i>snapshotting</i>.</p>",
1000
- "CacheCluster$PreferredAvailabilityZone": "<p>The name of the Availability Zone in which the cache cluster is located or \"Multiple\" if the cache nodes are located in different Availability Zones.</p>",
1001
- "CacheCluster$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1002
- "CacheCluster$CacheSubnetGroupName": "<p>The name of the cache subnet group associated with the cache cluster.</p>",
1003
- "CacheCluster$ReplicationGroupId": "<p>The replication group to which this cache cluster belongs. If this field is empty, the cache cluster is not associated with any replication group.</p>",
1004
- "CacheCluster$SnapshotWindow": "<p>The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster.</p> <p>Example: <code>05:00-09:00</code></p>",
1005
- "CacheClusterMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1006
- "CacheEngineVersion$Engine": "<p>The name of the cache engine.</p>",
1007
- "CacheEngineVersion$EngineVersion": "<p>The version number of the cache engine.</p>",
1008
- "CacheEngineVersion$CacheParameterGroupFamily": "<p>The name of the cache parameter group family associated with this cache engine.</p>",
1009
- "CacheEngineVersion$CacheEngineDescription": "<p>The description of the cache engine.</p>",
1010
- "CacheEngineVersion$CacheEngineVersionDescription": "<p>The description of the cache engine version.</p>",
1011
- "CacheEngineVersionMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1012
- "CacheNode$CacheNodeId": "<p>The cache node identifier. A node ID is a numeric identifier (0001, 0002, etc.). The combination of cluster ID and node ID uniquely identifies every cache node used in a customer's AWS account.</p>",
1013
- "CacheNode$CacheNodeStatus": "<p>The current state of this cache node.</p>",
1014
- "CacheNode$ParameterGroupStatus": "<p>The status of the parameter group applied to this cache node.</p>",
1015
- "CacheNode$SourceCacheNodeId": "<p>The ID of the primary node to which this read replica node is synchronized. If this field is empty, then this node is not associated with a primary cache cluster.</p>",
1016
- "CacheNode$CustomerAvailabilityZone": "<p>The Availability Zone where this node was created and now resides.</p>",
1017
- "CacheNodeIdsList$member": null,
1018
- "CacheNodeTypeSpecificParameter$ParameterName": "<p>The name of the parameter.</p>",
1019
- "CacheNodeTypeSpecificParameter$Description": "<p>A description of the parameter.</p>",
1020
- "CacheNodeTypeSpecificParameter$Source": "<p>The source of the parameter value.</p>",
1021
- "CacheNodeTypeSpecificParameter$DataType": "<p>The valid data type for the parameter.</p>",
1022
- "CacheNodeTypeSpecificParameter$AllowedValues": "<p>The valid range of values for the parameter.</p>",
1023
- "CacheNodeTypeSpecificParameter$MinimumEngineVersion": "<p>The earliest cache engine version to which the parameter can apply.</p>",
1024
- "CacheNodeTypeSpecificValue$CacheNodeType": "<p>The cache node type for which this value applies.</p>",
1025
- "CacheNodeTypeSpecificValue$Value": "<p>The value for the cache node type.</p>",
1026
- "CacheParameterGroup$CacheParameterGroupName": "<p>The name of the cache parameter group.</p>",
1027
- "CacheParameterGroup$CacheParameterGroupFamily": "<p>The name of the cache parameter group family that this cache parameter group is compatible with.</p>",
1028
- "CacheParameterGroup$Description": "<p>The description for this cache parameter group.</p>",
1029
- "CacheParameterGroupDetails$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1030
- "CacheParameterGroupNameMessage$CacheParameterGroupName": "<p>The name of the cache parameter group.</p>",
1031
- "CacheParameterGroupStatus$CacheParameterGroupName": "<p>The name of the cache parameter group.</p>",
1032
- "CacheParameterGroupStatus$ParameterApplyStatus": "<p>The status of parameter updates.</p>",
1033
- "CacheParameterGroupsMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1034
- "CacheSecurityGroup$OwnerId": "<p>The AWS account ID of the cache security group owner.</p>",
1035
- "CacheSecurityGroup$CacheSecurityGroupName": "<p>The name of the cache security group.</p>",
1036
- "CacheSecurityGroup$Description": "<p>The description of the cache security group.</p>",
1037
- "CacheSecurityGroupMembership$CacheSecurityGroupName": "<p>The name of the cache security group.</p>",
1038
- "CacheSecurityGroupMembership$Status": "<p>The membership status in the cache security group. The status changes when a cache security group is modified, or when the cache security groups assigned to a cache cluster are modified.</p>",
1039
- "CacheSecurityGroupMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1040
- "CacheSecurityGroupNameList$member": null,
1041
- "CacheSubnetGroup$CacheSubnetGroupName": "<p>The name of the cache subnet group.</p>",
1042
- "CacheSubnetGroup$CacheSubnetGroupDescription": "<p>The description of the cache subnet group.</p>",
1043
- "CacheSubnetGroup$VpcId": "<p>The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group.</p>",
1044
- "CacheSubnetGroupMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1045
- "ClusterIdList$member": null,
1046
- "CopySnapshotMessage$SourceSnapshotName": "<p>The name of an existing snapshot from which to copy.</p>",
1047
- "CopySnapshotMessage$TargetSnapshotName": "<p>A name for the copied snapshot.</p>",
1048
- "CreateCacheClusterMessage$CacheClusterId": "<p>The node group identifier. This parameter is stored as a lowercase string.</p> <p>Constraints:</p> <ul> <li>A name must contain from 1 to 20 alphanumeric characters or hyphens.</li> <li>The first character must be a letter.</li> <li>A name cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1049
- "CreateCacheClusterMessage$ReplicationGroupId": "<p>The ID of the replication group to which this cache cluster should belong. If this parameter is specified, the cache cluster will be added to the specified replication group as a read replica; otherwise, the cache cluster will be a standalone primary that is not part of any replication group.</p> <p>If the specified replication group is Multi-AZ enabled and the availability zone is not specified, the cache cluster will be created in availability zones that provide the best spread of read replicas across availability zones.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p>",
1050
- "CreateCacheClusterMessage$PreferredAvailabilityZone": "<p>The EC2 Availability Zone in which the cache cluster will be created.</p> <p>All nodes belonging to this Memcached cache cluster are placed in the preferred Availability Zone. If you want to create your nodes across multiple Availability Zones, use <code>PreferredAvailabilityZones</code>.</p> <p>Default: System chosen Availability Zone.</p>",
1051
- "CreateCacheClusterMessage$CacheNodeType": "<p>The compute and memory capacity of the nodes in the node group.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1052
- "CreateCacheClusterMessage$Engine": "<p>The name of the cache engine to be used for this cache cluster.</p> <p>Valid values for this parameter are:</p> <p><code>memcached</code> | <code>redis</code></p>",
1053
- "CreateCacheClusterMessage$EngineVersion": "<p>The version number of the cache engine to be used for this cache cluster. To view the supported cache engine versions, use the <i>DescribeCacheEngineVersions</i> action.</p>",
1054
- "CreateCacheClusterMessage$CacheParameterGroupName": "<p>The name of the parameter group to associate with this cache cluster. If this argument is omitted, the default parameter group for the specified engine is used.</p>",
1055
- "CreateCacheClusterMessage$CacheSubnetGroupName": "<p>The name of the subnet group to be used for the cache cluster.</p> <p>Use this parameter only when you are creating a cache cluster in an Amazon Virtual Private Cloud (VPC).</p>",
1056
- "CreateCacheClusterMessage$SnapshotName": "<p>The name of a snapshot from which to restore data into the new node group. The snapshot status changes to <code>restoring</code> while the new node group is being created.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p>",
1057
- "CreateCacheClusterMessage$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1058
- "CreateCacheClusterMessage$NotificationTopicArn": "<p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications will be sent.</p> <note>The Amazon SNS topic owner must be the same as the cache cluster owner.</note>",
1059
- "CreateCacheClusterMessage$SnapshotWindow": "<p>The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your node group.</p> <p>Example: <code>05:00-09:00</code></p> <p>If you do not specify this parameter, then ElastiCache will automatically choose an appropriate time range.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p>",
1060
- "CreateCacheParameterGroupMessage$CacheParameterGroupName": "<p>A user-specified name for the cache parameter group.</p>",
1061
- "CreateCacheParameterGroupMessage$CacheParameterGroupFamily": "<p>The name of the cache parameter group family the cache parameter group can be used with.</p> <p>Valid values are: <code>memcached1.4</code> | <code>redis2.6</code> | <code>redis2.8</code></p>",
1062
- "CreateCacheParameterGroupMessage$Description": "<p>A user-specified description for the cache parameter group.</p>",
1063
- "CreateCacheSecurityGroupMessage$CacheSecurityGroupName": "<p>A name for the cache security group. This value is stored as a lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric characters. Cannot be the word \"Default\".</p> <p>Example: <code>mysecuritygroup</code></p>",
1064
- "CreateCacheSecurityGroupMessage$Description": "<p>A description for the cache security group.</p>",
1065
- "CreateCacheSubnetGroupMessage$CacheSubnetGroupName": "<p>A name for the cache subnet group. This value is stored as a lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric characters or hyphens.</p> <p>Example: <code>mysubnetgroup</code></p>",
1066
- "CreateCacheSubnetGroupMessage$CacheSubnetGroupDescription": "<p>A description for the cache subnet group.</p>",
1067
- "CreateReplicationGroupMessage$ReplicationGroupId": "<p>The replication group identifier. This parameter is stored as a lowercase string.</p> <p>Constraints:</p> <ul> <li>A name must contain from 1 to 20 alphanumeric characters or hyphens.</li> <li>The first character must be a letter.</li> <li>A name cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>",
1068
- "CreateReplicationGroupMessage$ReplicationGroupDescription": "<p>A user-created description for the replication group.</p>",
1069
- "CreateReplicationGroupMessage$PrimaryClusterId": "<p>The identifier of the cache cluster that will serve as the primary for this replication group. This cache cluster must already exist and have a status of <i>available</i>.</p> <p>This parameter is not required if <i>NumCacheClusters</i> is specified.</p>",
1070
- "CreateReplicationGroupMessage$CacheNodeType": "<p>The compute and memory capacity of the nodes in the node group.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1071
- "CreateReplicationGroupMessage$Engine": "<p>The name of the cache engine to be used for the cache clusters in this replication group.</p> <p>Default: redis</p>",
1072
- "CreateReplicationGroupMessage$EngineVersion": "<p>The version number of the cache engine to be used for the cache clusters in this replication group. To view the supported cache engine versions, use the <i>DescribeCacheEngineVersions</i> action.</p>",
1073
- "CreateReplicationGroupMessage$CacheParameterGroupName": "<p>The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used.</p>",
1074
- "CreateReplicationGroupMessage$CacheSubnetGroupName": "<p>The name of the cache subnet group to be used for the replication group.</p>",
1075
- "CreateReplicationGroupMessage$SnapshotName": "<p>The name of a snapshot from which to restore data into the new node group. The snapshot status changes to <code>restoring</code> while the new node group is being created.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p>",
1076
- "CreateReplicationGroupMessage$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1077
- "CreateReplicationGroupMessage$NotificationTopicArn": "<p>The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications will be sent.</p> <note>The Amazon SNS topic owner must be the same as the cache cluster owner.</note>",
1078
- "CreateReplicationGroupMessage$SnapshotWindow": "<p>The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your node group.</p> <p>Example: <code>05:00-09:00</code></p> <p>If you do not specify this parameter, then ElastiCache will automatically choose an appropriate time range.</p> <p><b>Note:</b> This parameter is only valid if the <code>Engine</code> parameter is <code>redis</code>.</p>",
1079
- "CreateSnapshotMessage$CacheClusterId": "<p>The identifier of an existing cache cluster. The snapshot will be created from this cache cluster.</p>",
1080
- "CreateSnapshotMessage$SnapshotName": "<p>A name for the snapshot being created.</p>",
1081
- "DeleteCacheClusterMessage$CacheClusterId": "<p>The cache cluster identifier for the cluster to be deleted. This parameter is not case sensitive.</p>",
1082
- "DeleteCacheClusterMessage$FinalSnapshotIdentifier": "<p>The user-supplied name of a final cache cluster snapshot. This is the unique name that identifies the snapshot. ElastiCache creates the snapshot, and then deletes the cache cluster immediately afterward.</p>",
1083
- "DeleteCacheParameterGroupMessage$CacheParameterGroupName": "<p>The name of the cache parameter group to delete.</p> <note>The specified cache security group must not be associated with any cache clusters.</note>",
1084
- "DeleteCacheSecurityGroupMessage$CacheSecurityGroupName": "<p>The name of the cache security group to delete.</p> <note>You cannot delete the default security group.</note>",
1085
- "DeleteCacheSubnetGroupMessage$CacheSubnetGroupName": "<p>The name of the cache subnet group to delete.</p> <p>Constraints: Must contain no more than 255 alphanumeric characters or hyphens.</p>",
1086
- "DeleteReplicationGroupMessage$ReplicationGroupId": "<p>The identifier for the cluster to be deleted. This parameter is not case sensitive.</p>",
1087
- "DeleteReplicationGroupMessage$FinalSnapshotIdentifier": "<p>The name of a final node group snapshot. ElastiCache creates the snapshot from the primary node in the cluster, rather than one of the replicas; this is to ensure that it captures the freshest data. After the final snapshot is taken, the cluster is immediately deleted.</p>",
1088
- "DeleteSnapshotMessage$SnapshotName": "<p>The name of the snapshot to be deleted.</p>",
1089
- "DescribeCacheClustersMessage$CacheClusterId": "<p>The user-supplied cluster identifier. If this parameter is specified, only information about that specific cache cluster is returned. This parameter isn't case sensitive.</p>",
1090
- "DescribeCacheClustersMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1091
- "DescribeCacheEngineVersionsMessage$Engine": "<p>The cache engine to return. Valid values: <code>memcached</code> | <code>redis</code></p>",
1092
- "DescribeCacheEngineVersionsMessage$EngineVersion": "<p>The cache engine version to return.</p> <p>Example: <code>1.4.14</code></p>",
1093
- "DescribeCacheEngineVersionsMessage$CacheParameterGroupFamily": "<p>The name of a specific cache parameter group family to return details for.</p> <p>Constraints:</p> <ul> <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>",
1094
- "DescribeCacheEngineVersionsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1095
- "DescribeCacheParameterGroupsMessage$CacheParameterGroupName": "<p>The name of a specific cache parameter group to return details for.</p>",
1096
- "DescribeCacheParameterGroupsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1097
- "DescribeCacheParametersMessage$CacheParameterGroupName": "<p>The name of a specific cache parameter group to return details for.</p>",
1098
- "DescribeCacheParametersMessage$Source": "<p>The parameter types to return.</p> <p>Valid values: <code>user</code> | <code>system</code> | <code>engine-default</code></p>",
1099
- "DescribeCacheParametersMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1100
- "DescribeCacheSecurityGroupsMessage$CacheSecurityGroupName": "<p>The name of the cache security group to return details for.</p>",
1101
- "DescribeCacheSecurityGroupsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1102
- "DescribeCacheSubnetGroupsMessage$CacheSubnetGroupName": "<p>The name of the cache subnet group to return details for.</p>",
1103
- "DescribeCacheSubnetGroupsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1104
- "DescribeEngineDefaultParametersMessage$CacheParameterGroupFamily": "<p>The name of the cache parameter group family. Valid values are: <code>memcached1.4</code> | <code>redis2.6</code> | <code>redis2.8</code></p>",
1105
- "DescribeEngineDefaultParametersMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1106
- "DescribeEventsMessage$SourceIdentifier": "<p>The identifier of the event source for which events will be returned. If not specified, then all sources are included in the response.</p>",
1107
- "DescribeEventsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1108
- "DescribeReplicationGroupsMessage$ReplicationGroupId": "<p>The identifier for the replication group to be described. This parameter is not case sensitive.</p> <p>If you do not specify this parameter, information about all replication groups is returned.</p>",
1109
- "DescribeReplicationGroupsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1110
- "DescribeReservedCacheNodesMessage$ReservedCacheNodeId": "<p>The reserved cache node identifier filter value. Use this parameter to show only the reservation that matches the specified reservation ID.</p>",
1111
- "DescribeReservedCacheNodesMessage$ReservedCacheNodesOfferingId": "<p>The offering identifier filter value. Use this parameter to show only purchased reservations matching the specified offering identifier.</p>",
1112
- "DescribeReservedCacheNodesMessage$CacheNodeType": "<p>The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1113
- "DescribeReservedCacheNodesMessage$Duration": "<p>The duration filter value, specified in years or seconds. Use this parameter to show only reservations for this duration.</p> <p>Valid Values: <code>1 | 3 | 31536000 | 94608000</code></p>",
1114
- "DescribeReservedCacheNodesMessage$ProductDescription": "<p>The product description filter value. Use this parameter to show only those reservations matching the specified product description.</p>",
1115
- "DescribeReservedCacheNodesMessage$OfferingType": "<p>The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.</p> <p>Valid values: <code>\"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"</code></p>",
1116
- "DescribeReservedCacheNodesMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1117
- "DescribeReservedCacheNodesOfferingsMessage$ReservedCacheNodesOfferingId": "<p>The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.</p> <p>Example: <code>438012d3-4052-4cc7-b2e3-8d3372e0e706</code></p>",
1118
- "DescribeReservedCacheNodesOfferingsMessage$CacheNodeType": "<p>The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1119
- "DescribeReservedCacheNodesOfferingsMessage$Duration": "<p>Duration filter value, specified in years or seconds. Use this parameter to show only reservations for a given duration.</p> <p>Valid Values: <code>1 | 3 | 31536000 | 94608000</code></p>",
1120
- "DescribeReservedCacheNodesOfferingsMessage$ProductDescription": "<p>The product description filter value. Use this parameter to show only the available offerings matching the specified product description.</p>",
1121
- "DescribeReservedCacheNodesOfferingsMessage$OfferingType": "<p>The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.</p> <p>Valid Values: <code>\"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"</code></p>",
1122
- "DescribeReservedCacheNodesOfferingsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1123
- "DescribeSnapshotsListMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1124
- "DescribeSnapshotsMessage$CacheClusterId": "<p>A user-supplied cluster identifier. If this parameter is specified, only snapshots associated with that specific cache cluster will be described.</p>",
1125
- "DescribeSnapshotsMessage$SnapshotName": "<p>A user-supplied name of the snapshot. If this parameter is specified, only this snapshot will be described.</p>",
1126
- "DescribeSnapshotsMessage$SnapshotSource": "<p>If set to <code>system</code>, the output shows snapshots that were automatically created by ElastiCache. If set to <code>user</code> the output shows snapshots that were manually created. If omitted, the output shows both automatically and manually created snapshots.</p>",
1127
- "DescribeSnapshotsMessage$Marker": "<p>An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <i>MaxRecords</i>.</p>",
1128
- "EC2SecurityGroup$Status": "<p>The status of the Amazon EC2 security group.</p>",
1129
- "EC2SecurityGroup$EC2SecurityGroupName": "<p>The name of the Amazon EC2 security group.</p>",
1130
- "EC2SecurityGroup$EC2SecurityGroupOwnerId": "<p>The AWS account ID of the Amazon EC2 security group owner.</p>",
1131
- "Endpoint$Address": "<p>The DNS hostname of the cache node.</p>",
1132
- "EngineDefaults$CacheParameterGroupFamily": "<p>Specifies the name of the cache parameter group family to which the engine default parameters apply.</p>",
1133
- "EngineDefaults$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1134
- "Event$SourceIdentifier": "<p>The identifier for the source of the event. For example, if the event occurred at the cache cluster level, the identifier would be the name of the cache cluster.</p>",
1135
- "Event$Message": "<p>The text of the event.</p>",
1136
- "EventsMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1137
- "KeyList$member": null,
1138
- "ListTagsForResourceMessage$ResourceName": "<p>The name of the resource for which you want the list of tags, for example <code>arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster</code>.</p>",
1139
- "ModifyCacheClusterMessage$CacheClusterId": "<p>The cache cluster identifier. This value is stored as a lowercase string.</p>",
1140
- "ModifyCacheClusterMessage$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1141
- "ModifyCacheClusterMessage$NotificationTopicArn": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will be sent.</p> <note>The Amazon SNS topic owner must be same as the cache cluster owner. </note>",
1142
- "ModifyCacheClusterMessage$CacheParameterGroupName": "<p>The name of the cache parameter group to apply to this cache cluster. This change is asynchronously applied as soon as possible for parameters when the <i>ApplyImmediately</i> parameter is specified as <i>true</i> for this request.</p>",
1143
- "ModifyCacheClusterMessage$NotificationTopicStatus": "<p>The status of the Amazon SNS notification topic. Notifications are sent only if the status is <i>active</i>.</p> <p>Valid values: <code>active</code> | <code>inactive</code></p>",
1144
- "ModifyCacheClusterMessage$EngineVersion": "<p>The upgraded version of the cache engine to be run on the cache nodes.</p>",
1145
- "ModifyCacheClusterMessage$SnapshotWindow": "<p>The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster. </p>",
1146
- "ModifyCacheParameterGroupMessage$CacheParameterGroupName": "<p>The name of the cache parameter group to modify.</p>",
1147
- "ModifyCacheSubnetGroupMessage$CacheSubnetGroupName": "<p>The name for the cache subnet group. This value is stored as a lowercase string.</p> <p>Constraints: Must contain no more than 255 alphanumeric characters or hyphens.</p> <p>Example: <code>mysubnetgroup</code></p>",
1148
- "ModifyCacheSubnetGroupMessage$CacheSubnetGroupDescription": "<p>A description for the cache subnet group.</p>",
1149
- "ModifyReplicationGroupMessage$ReplicationGroupId": "<p>The identifier of the replication group to modify.</p>",
1150
- "ModifyReplicationGroupMessage$ReplicationGroupDescription": "<p>A description for the replication group. Maximum length is 255 characters.</p>",
1151
- "ModifyReplicationGroupMessage$PrimaryClusterId": "<p>If this parameter is specified, ElastiCache will promote each of the cache clusters in the specified replication group to the primary role. The nodes of all other cache clusters in the replication group will be read replicas.</p>",
1152
- "ModifyReplicationGroupMessage$SnapshottingClusterId": "<p>The cache cluster ID that will be used as the daily snapshot source for the replication group.</p>",
1153
- "ModifyReplicationGroupMessage$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1154
- "ModifyReplicationGroupMessage$NotificationTopicArn": "<p>The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications will be sent.</p> <note>The Amazon SNS topic owner must be same as the replication group owner. </note>",
1155
- "ModifyReplicationGroupMessage$CacheParameterGroupName": "<p>The name of the cache parameter group to apply to all of the clusters in this replication group. This change is asynchronously applied as soon as possible for parameters when the <i>ApplyImmediately</i> parameter is specified as <i>true</i> for this request.</p>",
1156
- "ModifyReplicationGroupMessage$NotificationTopicStatus": "<p>The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if the status is <i>active</i>.</p> <p>Valid values: <code>active</code> | <code>inactive</code></p>",
1157
- "ModifyReplicationGroupMessage$EngineVersion": "<p>The upgraded version of the cache engine to be run on the cache clusters in the replication group.</p>",
1158
- "ModifyReplicationGroupMessage$SnapshotWindow": "<p>The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of the node group specified by <i>SnapshottingClusterId</i>.</p> <p>Example: <code>05:00-09:00</code></p> <p>If you do not specify this parameter, then ElastiCache will automatically choose an appropriate time range.</p>",
1159
- "NodeGroup$NodeGroupId": "<p>The identifier for the node group. A replication group contains only one node group; therefore, the node group ID is 0001.</p>",
1160
- "NodeGroup$Status": "<p>The current state of this replication group - <i>creating</i>, <i>available</i>, etc.</p>",
1161
- "NodeGroupMember$CacheClusterId": "<p>The ID of the cache cluster to which the node belongs.</p>",
1162
- "NodeGroupMember$CacheNodeId": "<p>The ID of the node within its cache cluster. A node ID is a numeric identifier (0001, 0002, etc.).</p>",
1163
- "NodeGroupMember$PreferredAvailabilityZone": "<p>The name of the Availability Zone in which the node is located.</p>",
1164
- "NodeGroupMember$CurrentRole": "<p>The role that is currently assigned to the node - <i>primary</i> or <i>replica</i>.</p>",
1165
- "NodeSnapshot$CacheNodeId": "<p>The cache node identifier for the node in the source cache cluster.</p>",
1166
- "NodeSnapshot$CacheSize": "<p>The size of the cache on the source cache node.</p>",
1167
- "NotificationConfiguration$TopicArn": "<p>The Amazon Resource Name (ARN) that identifies the topic.</p>",
1168
- "NotificationConfiguration$TopicStatus": "<p>The current state of the topic.</p>",
1169
- "Parameter$ParameterName": "<p>The name of the parameter.</p>",
1170
- "Parameter$ParameterValue": "<p>The value of the parameter.</p>",
1171
- "Parameter$Description": "<p>A description of the parameter.</p>",
1172
- "Parameter$Source": "<p>The source of the parameter.</p>",
1173
- "Parameter$DataType": "<p>The valid data type for the parameter.</p>",
1174
- "Parameter$AllowedValues": "<p>The valid range of values for the parameter.</p>",
1175
- "Parameter$MinimumEngineVersion": "<p>The earliest cache engine version to which the parameter can apply.</p>",
1176
- "ParameterNameValue$ParameterName": "<p>The name of the parameter.</p>",
1177
- "ParameterNameValue$ParameterValue": "<p>The value of the parameter.</p>",
1178
- "PendingModifiedValues$EngineVersion": "<p>The new cache engine version that the cache cluster will run.</p>",
1179
- "PreferredAvailabilityZoneList$member": null,
1180
- "PurchaseReservedCacheNodesOfferingMessage$ReservedCacheNodesOfferingId": "<p>The ID of the reserved cache node offering to purchase.</p> <p>Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706</p>",
1181
- "PurchaseReservedCacheNodesOfferingMessage$ReservedCacheNodeId": "<p>A customer-specified identifier to track this reservation.</p> <p>Example: myreservationID</p>",
1182
- "RebootCacheClusterMessage$CacheClusterId": "<p>The cache cluster identifier. This parameter is stored as a lowercase string.</p>",
1183
- "RecurringCharge$RecurringChargeFrequency": "<p>The frequency of the recurring charge.</p>",
1184
- "RemoveTagsFromResourceMessage$ResourceName": "<p>The name of the ElastiCache resource from which you want the listed tags removed, for example <code>arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster</code>.</p>",
1185
- "ReplicationGroup$ReplicationGroupId": "<p>The identifier for the replication group.</p>",
1186
- "ReplicationGroup$Description": "<p>The description of the replication group.</p>",
1187
- "ReplicationGroup$Status": "<p>The current state of this replication group - <i>creating</i>, <i>available</i>, etc.</p>",
1188
- "ReplicationGroup$SnapshottingClusterId": "<p>The cache cluster ID that is used as the daily snapshot source for the replication group.</p>",
1189
- "ReplicationGroupMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1190
- "ReplicationGroupPendingModifiedValues$PrimaryClusterId": "<p>The primary cluster ID which will be applied immediately (if <code>--apply-immediately</code> was specified), or during the next maintenance window.</p>",
1191
- "ReservedCacheNode$ReservedCacheNodeId": "<p>The unique identifier for the reservation.</p>",
1192
- "ReservedCacheNode$ReservedCacheNodesOfferingId": "<p>The offering identifier.</p>",
1193
- "ReservedCacheNode$CacheNodeType": "<p>The cache node type for the reserved cache nodes.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1194
- "ReservedCacheNode$ProductDescription": "<p>The description of the reserved cache node.</p>",
1195
- "ReservedCacheNode$OfferingType": "<p>The offering type of this reserved cache node.</p>",
1196
- "ReservedCacheNode$State": "<p>The state of the reserved cache node.</p>",
1197
- "ReservedCacheNodeMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1198
- "ReservedCacheNodesOffering$ReservedCacheNodesOfferingId": "<p>A unique identifier for the reserved cache node offering.</p>",
1199
- "ReservedCacheNodesOffering$CacheNodeType": "<p>The cache node type for the reserved cache node.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1200
- "ReservedCacheNodesOffering$ProductDescription": "<p>The cache engine used by the offering.</p>",
1201
- "ReservedCacheNodesOffering$OfferingType": "<p>The offering type.</p>",
1202
- "ReservedCacheNodesOfferingMessage$Marker": "<p>Provides an identifier to allow retrieval of paginated results.</p>",
1203
- "ResetCacheParameterGroupMessage$CacheParameterGroupName": "<p>The name of the cache parameter group to reset.</p>",
1204
- "RevokeCacheSecurityGroupIngressMessage$CacheSecurityGroupName": "<p>The name of the cache security group to revoke ingress from.</p>",
1205
- "RevokeCacheSecurityGroupIngressMessage$EC2SecurityGroupName": "<p>The name of the Amazon EC2 security group to revoke access from.</p>",
1206
- "RevokeCacheSecurityGroupIngressMessage$EC2SecurityGroupOwnerId": "<p>The AWS account number of the Amazon EC2 security group owner. Note that this is not the same thing as an AWS access key ID - you must provide a valid AWS account number for this parameter.</p>",
1207
- "SecurityGroupIdsList$member": null,
1208
- "SecurityGroupMembership$SecurityGroupId": "<p>The identifier of the cache security group.</p>",
1209
- "SecurityGroupMembership$Status": "<p>The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cache cluster are modified.</p>",
1210
- "Snapshot$SnapshotName": "<p>The name of a snapshot. For an automatic snapshot, the name is system-generated; for a manual snapshot, this is the user-provided name.</p>",
1211
- "Snapshot$CacheClusterId": "<p>The user-supplied identifier of the source cache cluster.</p>",
1212
- "Snapshot$SnapshotStatus": "<p>The status of the snapshot. Valid values: <code>creating</code> | <code>available</code> | <code>restoring</code> | <code>copying</code> | <code>deleting</code>.</p>",
1213
- "Snapshot$SnapshotSource": "<p>Indicates whether the snapshot is from an automatic backup (<code>automated</code>) or was created manually (<code>manual</code>).</p>",
1214
- "Snapshot$CacheNodeType": "<p>The name of the compute and memory capacity node type for the source cache cluster.</p> <p>Valid node types are as follows:</p> <ul> <li>General purpose: <ul> <li>Current generation: <code>cache.t2.micro</code>, <code>cache.t2.small</code>, <code>cache.t2.medium</code>, <code>cache.m3.medium</code>, <code>cache.m3.large</code>, <code>cache.m3.xlarge</code>, <code>cache.m3.2xlarge</code></li> <li>Previous generation: <code>cache.t1.micro</code>, <code>cache.m1.small</code>, <code>cache.m1.medium</code>, <code>cache.m1.large</code>, <code>cache.m1.xlarge</code></li> </ul></li> <li>Compute optimized: <code>cache.c1.xlarge</code></li> <li>Memory optimized <ul> <li>Current generation: <code>cache.r3.large</code>, <code>cache.r3.xlarge</code>, <code>cache.r3.2xlarge</code>, <code>cache.r3.4xlarge</code>, <code>cache.r3.8xlarge</code></li> <li>Previous generation: <code>cache.m2.xlarge</code>, <code>cache.m2.2xlarge</code>, <code>cache.m2.4xlarge</code></li> </ul></li> </ul> <p><b>Notes:</b></p> <ul> <li>All t2 instances are created in an Amazon Virtual Private Cloud (VPC).</li> <li>Redis backup/restore is not supported for t2 instances.</li> <li>Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.</li> </ul> <p>For a complete listing of cache node types and specifications, see <a href=\"http://aws.amazon.com/elasticache/details\">Amazon ElastiCache Product Features and Details</a> and <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific\">Cache Node Type-Specific Parameters for Memcached</a> or <a href=\"http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific\">Cache Node Type-Specific Parameters for Redis</a>. </p>",
1215
- "Snapshot$Engine": "<p>The name of the cache engine (<i>memcached</i> or <i>redis</i>) used by the source cache cluster.</p>",
1216
- "Snapshot$EngineVersion": "<p>The version of the cache engine version that is used by the source cache cluster.</p>",
1217
- "Snapshot$PreferredAvailabilityZone": "<p>The name of the Availability Zone in which the source cache cluster is located.</p>",
1218
- "Snapshot$PreferredMaintenanceWindow": "<p>Specifies the weekly time range during which maintenance on the cache cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. Valid values for <code>ddd</code> are:</p> <ul> <li><code>sun</code></li> <li><code>mon</code></li> <li><code>tue</code></li> <li><code>wed</code></li> <li><code>thu</code></li> <li><code>fri</code></li> <li><code>sat</code></li> </ul> <p>Example: <code>sun:05:00-sun:09:00</code></p>",
1219
- "Snapshot$TopicArn": "<p>The Amazon Resource Name (ARN) for the topic used by the source cache cluster for publishing notifications.</p>",
1220
- "Snapshot$CacheParameterGroupName": "<p>The cache parameter group that is associated with the source cache cluster.</p>",
1221
- "Snapshot$CacheSubnetGroupName": "<p>The name of the cache subnet group associated with the source cache cluster.</p>",
1222
- "Snapshot$VpcId": "<p>The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group for the source cache cluster.</p>",
1223
- "Snapshot$SnapshotWindow": "<p>The daily time range during which ElastiCache takes daily snapshots of the source cache cluster.</p>",
1224
- "SnapshotArnsList$member": null,
1225
- "Subnet$SubnetIdentifier": "<p>The unique identifier for the subnet.</p>",
1226
- "SubnetIdentifierList$member": null,
1227
- "Tag$Key": "<p>The key for the tag.</p>",
1228
- "Tag$Value": "<p>The tag's value. May not be null.</p>"
1229
- }
1230
- },
1231
- "Subnet": {
1232
- "base": "<p>Represents the subnet associated with a cache cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with ElastiCache.</p>",
1233
- "refs": {
1234
- "SubnetList$member": null
1235
- }
1236
- },
1237
- "SubnetIdentifierList": {
1238
- "base": null,
1239
- "refs": {
1240
- "CreateCacheSubnetGroupMessage$SubnetIds": "<p>A list of VPC subnet IDs for the cache subnet group.</p>",
1241
- "ModifyCacheSubnetGroupMessage$SubnetIds": "<p>The EC2 subnet IDs for the cache subnet group.</p>"
1242
- }
1243
- },
1244
- "SubnetInUse": {
1245
- "base": "<p>The requested subnet is being used by another cache subnet group.</p>",
1246
- "refs": {
1247
- }
1248
- },
1249
- "SubnetList": {
1250
- "base": null,
1251
- "refs": {
1252
- "CacheSubnetGroup$Subnets": "<p>A list of subnets associated with the cache subnet group.</p>"
1253
- }
1254
- },
1255
- "TStamp": {
1256
- "base": null,
1257
- "refs": {
1258
- "CacheCluster$CacheClusterCreateTime": "<p>The date and time when the cache cluster was created.</p>",
1259
- "CacheNode$CacheNodeCreateTime": "<p>The date and time when the cache node was created.</p>",
1260
- "DescribeEventsMessage$StartTime": "<p>The beginning of the time interval to retrieve events for, specified in ISO 8601 format.</p>",
1261
- "DescribeEventsMessage$EndTime": "<p>The end of the time interval for which to retrieve events, specified in ISO 8601 format.</p>",
1262
- "Event$Date": "<p>The date and time when the event occurred.</p>",
1263
- "NodeSnapshot$CacheNodeCreateTime": "<p>The date and time when the cache node was created in the source cache cluster.</p>",
1264
- "NodeSnapshot$SnapshotCreateTime": "<p>The date and time when the source node's metadata and cache data set was obtained for the snapshot.</p>",
1265
- "ReservedCacheNode$StartTime": "<p>The time the reservation started.</p>",
1266
- "Snapshot$CacheClusterCreateTime": "<p>The date and time when the source cache cluster was created.</p>"
1267
- }
1268
- },
1269
- "Tag": {
1270
- "base": "<p>A cost allocation Tag that can be added to an ElastiCache cluster or replication group. Tags are composed of a Key/Value pair. A tag with a null Value is permitted.</p>",
1271
- "refs": {
1272
- "TagList$member": null
1273
- }
1274
- },
1275
- "TagList": {
1276
- "base": null,
1277
- "refs": {
1278
- "AddTagsToResourceMessage$Tags": "<p>A list of cost allocation tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value.</p>",
1279
- "CreateCacheClusterMessage$Tags": "<p>A list of cost allocation tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value.</p>",
1280
- "CreateReplicationGroupMessage$Tags": "<p>A list of cost allocation tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value.</p>",
1281
- "TagListMessage$TagList": "<p>A list of cost allocation tags as key-value pairs. </p>"
1282
- }
1283
- },
1284
- "TagListMessage": {
1285
- "base": "<p>Represents the output from the <i>AddTagsToResource</i>, <i>ListTagsOnResource</i>, and <i>RemoveTagsFromResource</i> actions.</p>",
1286
- "refs": {
1287
- }
1288
- },
1289
- "TagNotFoundFault": {
1290
- "base": "<p>The requested tag was not found on this resource.</p>",
1291
- "refs": {
1292
- }
1293
- },
1294
- "TagQuotaPerResourceExceeded": {
1295
- "base": "<p>The request cannot be processed because it would cause the resource to have more than the allowed number of tags. The maximum number of tags permitted on a resource is 10.</p>",
1296
- "refs": {
1297
- }
1298
- },
1299
- "AuthorizeCacheSecurityGroupIngressResult": {
1300
- "base": null,
1301
- "refs": {
1302
- }
1303
- },
1304
- "CopySnapshotResult": {
1305
- "base": null,
1306
- "refs": {
1307
- }
1308
- },
1309
- "CreateCacheClusterResult": {
1310
- "base": null,
1311
- "refs": {
1312
- }
1313
- },
1314
- "CreateCacheParameterGroupResult": {
1315
- "base": null,
1316
- "refs": {
1317
- }
1318
- },
1319
- "CreateCacheSecurityGroupResult": {
1320
- "base": null,
1321
- "refs": {
1322
- }
1323
- },
1324
- "CreateCacheSubnetGroupResult": {
1325
- "base": null,
1326
- "refs": {
1327
- }
1328
- },
1329
- "CreateReplicationGroupResult": {
1330
- "base": null,
1331
- "refs": {
1332
- }
1333
- },
1334
- "CreateSnapshotResult": {
1335
- "base": null,
1336
- "refs": {
1337
- }
1338
- },
1339
- "DeleteCacheClusterResult": {
1340
- "base": null,
1341
- "refs": {
1342
- }
1343
- },
1344
- "DeleteReplicationGroupResult": {
1345
- "base": null,
1346
- "refs": {
1347
- }
1348
- },
1349
- "DeleteSnapshotResult": {
1350
- "base": null,
1351
- "refs": {
1352
- }
1353
- },
1354
- "DescribeEngineDefaultParametersResult": {
1355
- "base": null,
1356
- "refs": {
1357
- }
1358
- },
1359
- "ModifyCacheClusterResult": {
1360
- "base": null,
1361
- "refs": {
1362
- }
1363
- },
1364
- "ModifyCacheSubnetGroupResult": {
1365
- "base": null,
1366
- "refs": {
1367
- }
1368
- },
1369
- "ModifyReplicationGroupResult": {
1370
- "base": null,
1371
- "refs": {
1372
- }
1373
- },
1374
- "PurchaseReservedCacheNodesOfferingResult": {
1375
- "base": null,
1376
- "refs": {
1377
- }
1378
- },
1379
- "RebootCacheClusterResult": {
1380
- "base": null,
1381
- "refs": {
1382
- }
1383
- },
1384
- "RevokeCacheSecurityGroupIngressResult": {
1385
- "base": null,
1386
- "refs": {
1387
- }
1388
- }
1389
- }
1390
- }