aws-sdk-elasticache 1.0.0.rc6 → 1.0.0.rc7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6b22f5035dc133c0f8c945187a4c20d6c2cad37b
4
- data.tar.gz: 5858997f008386a6689ae8f9a2a2f67ec444eedc
3
+ metadata.gz: ccb838438843fae2744ad1b1debe0f8a8b17460b
4
+ data.tar.gz: f16f0167b3ddb74b1c14dd22062792532b91603f
5
5
  SHA512:
6
- metadata.gz: cc20f35695c6eeecdf5f6119a43a5f64813d8e6094918f26b3b2f16794b2004f622ca5e2f119fe66f2103b2937e0b6a136604c832f6e6ec6159f2a8234f306b1
7
- data.tar.gz: 4f6b9236eb23dc78b15339bac8159b4778b840f86cc9070e9e381d9db050913b39d50363903afc4d08e6f7581b606ccdac7055e03ed7724c05bc78e555905db9
6
+ metadata.gz: 8b91ef1464dc763dd88b4dfdaa8a7dbb017ed42ca25384f6f5076d55b586053e74366a5e722bd310441eaf66aec676966395679ce8fdad62518ccc58fefbaec9
7
+ data.tar.gz: ad4e99719db70849e5ba424da1a0025e02d12fba32a57dff8d61b99ce5c97a9d105a238b145eee4321a1440563bdeed909a086db4f524579b216eac951b52b66
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elasticache/customizations'
43
43
  # @service
44
44
  module Aws::ElastiCache
45
45
 
46
- GEM_VERSION = '1.0.0.rc6'
46
+ GEM_VERSION = '1.0.0.rc7'
47
47
 
48
48
  end
@@ -183,6 +183,39 @@ module Aws::ElastiCache
183
183
  #
184
184
  # * {Types::TagListMessage#tag_list #tag_list} => Array<Types::Tag>
185
185
  #
186
+ #
187
+ # @example Example: AddTagsToResource
188
+ #
189
+ # # Adds up to 10 tags, key/value pairs, to a cluster or snapshot resource.
190
+ #
191
+ # resp = client.add_tags_to_resource({
192
+ # resource_name: "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster",
193
+ # tags: [
194
+ # {
195
+ # key: "APIVersion",
196
+ # value: "20150202",
197
+ # },
198
+ # {
199
+ # key: "Service",
200
+ # value: "ElastiCache",
201
+ # },
202
+ # ],
203
+ # })
204
+ #
205
+ # resp.to_h outputs the following:
206
+ # {
207
+ # tag_list: [
208
+ # {
209
+ # key: "APIVersion",
210
+ # value: "20150202",
211
+ # },
212
+ # {
213
+ # key: "Service",
214
+ # value: "ElastiCache",
215
+ # },
216
+ # ],
217
+ # }
218
+ #
186
219
  # @example Request syntax with placeholder values
187
220
  #
188
221
  # resp = client.add_tags_to_resource({
@@ -235,6 +268,17 @@ module Aws::ElastiCache
235
268
  #
236
269
  # * {Types::AuthorizeCacheSecurityGroupIngressResult#cache_security_group #cache_security_group} => Types::CacheSecurityGroup
237
270
  #
271
+ #
272
+ # @example Example: AuthorizeCacheCacheSecurityGroupIngress
273
+ #
274
+ # # Allows network ingress to a cache security group. Applications using ElastiCache must be running on Amazon EC2. Amazon EC2 security groups are used as the authorization mechanism.
275
+ #
276
+ # resp = client.authorize_cache_security_group_ingress({
277
+ # cache_security_group_name: "my-sec-grp",
278
+ # ec2_security_group_name: "my-ec2-sec-grp",
279
+ # ec2_security_group_owner_id: "1234567890",
280
+ # })
281
+ #
238
282
  # @example Request syntax with placeholder values
239
283
  #
240
284
  # resp = client.authorize_cache_security_group_ingress({
@@ -369,6 +413,49 @@ module Aws::ElastiCache
369
413
  #
370
414
  # * {Types::CopySnapshotResult#snapshot #snapshot} => Types::Snapshot
371
415
  #
416
+ #
417
+ # @example Example: CopySnapshot
418
+ #
419
+ # # Copies a snapshot to a specified name.
420
+ #
421
+ # resp = client.copy_snapshot({
422
+ # source_snapshot_name: "my-snapshot",
423
+ # target_bucket: "",
424
+ # target_snapshot_name: "my-snapshot-copy",
425
+ # })
426
+ #
427
+ # resp.to_h outputs the following:
428
+ # {
429
+ # snapshot: {
430
+ # auto_minor_version_upgrade: true,
431
+ # cache_cluster_create_time: Time.parse("2016-12-21T22:24:04.955Z"),
432
+ # cache_cluster_id: "my-redis4",
433
+ # cache_node_type: "cache.m3.large",
434
+ # cache_parameter_group_name: "default.redis3.2",
435
+ # cache_subnet_group_name: "default",
436
+ # engine: "redis",
437
+ # engine_version: "3.2.4",
438
+ # node_snapshots: [
439
+ # {
440
+ # cache_node_create_time: Time.parse("2016-12-21T22:24:04.955Z"),
441
+ # cache_node_id: "0001",
442
+ # cache_size: "3 MB",
443
+ # snapshot_create_time: Time.parse("2016-12-28T07:00:52Z"),
444
+ # },
445
+ # ],
446
+ # num_cache_nodes: 1,
447
+ # port: 6379,
448
+ # preferred_availability_zone: "us-east-1c",
449
+ # preferred_maintenance_window: "tue:09:30-tue:10:30",
450
+ # snapshot_name: "my-snapshot-copy",
451
+ # snapshot_retention_limit: 7,
452
+ # snapshot_source: "manual",
453
+ # snapshot_status: "creating",
454
+ # snapshot_window: "07:00-08:00",
455
+ # vpc_id: "vpc-3820329f3",
456
+ # },
457
+ # }
458
+ #
372
459
  # @example Request syntax with placeholder values
373
460
  #
374
461
  # resp = client.copy_snapshot({
@@ -737,6 +824,95 @@ module Aws::ElastiCache
737
824
  #
738
825
  # * {Types::CreateCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
739
826
  #
827
+ #
828
+ # @example Example: CreateCacheCluster
829
+ #
830
+ # # Creates a Memcached cluster with 2 nodes.
831
+ #
832
+ # resp = client.create_cache_cluster({
833
+ # az_mode: "cross-az",
834
+ # cache_cluster_id: "my-memcached-cluster",
835
+ # cache_node_type: "cache.r3.large",
836
+ # cache_subnet_group_name: "default",
837
+ # engine: "memcached",
838
+ # engine_version: "1.4.24",
839
+ # num_cache_nodes: 2,
840
+ # port: 11211,
841
+ # })
842
+ #
843
+ # resp.to_h outputs the following:
844
+ # {
845
+ # cache_cluster: {
846
+ # auto_minor_version_upgrade: true,
847
+ # cache_cluster_id: "my-memcached-cluster",
848
+ # cache_cluster_status: "creating",
849
+ # cache_node_type: "cache.r3.large",
850
+ # cache_parameter_group: {
851
+ # cache_node_ids_to_reboot: [
852
+ # ],
853
+ # cache_parameter_group_name: "default.memcached1.4",
854
+ # parameter_apply_status: "in-sync",
855
+ # },
856
+ # cache_security_groups: [
857
+ # ],
858
+ # cache_subnet_group_name: "default",
859
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
860
+ # engine: "memcached",
861
+ # engine_version: "1.4.24",
862
+ # num_cache_nodes: 2,
863
+ # pending_modified_values: {
864
+ # },
865
+ # preferred_availability_zone: "Multiple",
866
+ # preferred_maintenance_window: "wed:09:00-wed:10:00",
867
+ # },
868
+ # }
869
+ #
870
+ # @example Example: CreateCacheCluster
871
+ #
872
+ # # Creates a Redis cluster with 1 node.
873
+ #
874
+ # resp = client.create_cache_cluster({
875
+ # auto_minor_version_upgrade: true,
876
+ # cache_cluster_id: "my-redis",
877
+ # cache_node_type: "cache.r3.larage",
878
+ # cache_subnet_group_name: "default",
879
+ # engine: "redis",
880
+ # engine_version: "3.2.4",
881
+ # num_cache_nodes: 1,
882
+ # port: 6379,
883
+ # preferred_availability_zone: "us-east-1c",
884
+ # snapshot_retention_limit: 7,
885
+ # })
886
+ #
887
+ # resp.to_h outputs the following:
888
+ # {
889
+ # cache_cluster: {
890
+ # auto_minor_version_upgrade: true,
891
+ # cache_cluster_id: "my-redis",
892
+ # cache_cluster_status: "creating",
893
+ # cache_node_type: "cache.m3.large",
894
+ # cache_parameter_group: {
895
+ # cache_node_ids_to_reboot: [
896
+ # ],
897
+ # cache_parameter_group_name: "default.redis3.2",
898
+ # parameter_apply_status: "in-sync",
899
+ # },
900
+ # cache_security_groups: [
901
+ # ],
902
+ # cache_subnet_group_name: "default",
903
+ # client_download_landing_page: "https: //console.aws.amazon.com/elasticache/home#client-download: ",
904
+ # engine: "redis",
905
+ # engine_version: "3.2.4",
906
+ # num_cache_nodes: 1,
907
+ # pending_modified_values: {
908
+ # },
909
+ # preferred_availability_zone: "us-east-1c",
910
+ # preferred_maintenance_window: "fri: 05: 30-fri: 06: 30",
911
+ # snapshot_retention_limit: 7,
912
+ # snapshot_window: "10: 00-11: 00",
913
+ # },
914
+ # }
915
+ #
740
916
  # @example Request syntax with placeholder values
741
917
  #
742
918
  # resp = client.create_cache_cluster({
@@ -861,6 +1037,26 @@ module Aws::ElastiCache
861
1037
  #
862
1038
  # * {Types::CreateCacheParameterGroupResult#cache_parameter_group #cache_parameter_group} => Types::CacheParameterGroup
863
1039
  #
1040
+ #
1041
+ # @example Example: CreateCacheParameterGroup
1042
+ #
1043
+ # # Creates the Amazon ElastiCache parameter group custom-redis2-8.
1044
+ #
1045
+ # resp = client.create_cache_parameter_group({
1046
+ # cache_parameter_group_family: "redis2.8",
1047
+ # cache_parameter_group_name: "custom-redis2-8",
1048
+ # description: "Custom Redis 2.8 parameter group.",
1049
+ # })
1050
+ #
1051
+ # resp.to_h outputs the following:
1052
+ # {
1053
+ # cache_parameter_group: {
1054
+ # cache_parameter_group_family: "redis2.8",
1055
+ # cache_parameter_group_name: "custom-redis2-8",
1056
+ # description: "Custom Redis 2.8 parameter group.",
1057
+ # },
1058
+ # }
1059
+ #
864
1060
  # @example Request syntax with placeholder values
865
1061
  #
866
1062
  # resp = client.create_cache_parameter_group({
@@ -912,6 +1108,16 @@ module Aws::ElastiCache
912
1108
  #
913
1109
  # * {Types::CreateCacheSecurityGroupResult#cache_security_group #cache_security_group} => Types::CacheSecurityGroup
914
1110
  #
1111
+ #
1112
+ # @example Example: CreateCacheSecurityGroup
1113
+ #
1114
+ # # Creates an ElastiCache security group. ElastiCache security groups are only for clusters not running in an AWS VPC.
1115
+ #
1116
+ # resp = client.create_cache_security_group({
1117
+ # cache_security_group_name: "my-cache-sec-grp",
1118
+ # description: "Example ElastiCache security group.",
1119
+ # })
1120
+ #
915
1121
  # @example Request syntax with placeholder values
916
1122
  #
917
1123
  # resp = client.create_cache_security_group({
@@ -962,6 +1168,50 @@ module Aws::ElastiCache
962
1168
  #
963
1169
  # * {Types::CreateCacheSubnetGroupResult#cache_subnet_group #cache_subnet_group} => Types::CacheSubnetGroup
964
1170
  #
1171
+ #
1172
+ # @example Example: CreateCacheSubnet
1173
+ #
1174
+ # # Creates a new cache subnet group.
1175
+ #
1176
+ # resp = client.create_cache_subnet_group({
1177
+ # cache_subnet_group_description: "Sample subnet group",
1178
+ # cache_subnet_group_name: "my-sn-grp2",
1179
+ # subnet_ids: [
1180
+ # "subnet-6f28c982",
1181
+ # "subnet-bcd382f3",
1182
+ # "subnet-845b3e7c0",
1183
+ # ],
1184
+ # })
1185
+ #
1186
+ # resp.to_h outputs the following:
1187
+ # {
1188
+ # cache_subnet_group: {
1189
+ # cache_subnet_group_description: "My subnet group.",
1190
+ # cache_subnet_group_name: "my-sn-grp",
1191
+ # subnets: [
1192
+ # {
1193
+ # subnet_availability_zone: {
1194
+ # name: "us-east-1a",
1195
+ # },
1196
+ # subnet_identifier: "subnet-6f28c982",
1197
+ # },
1198
+ # {
1199
+ # subnet_availability_zone: {
1200
+ # name: "us-east-1c",
1201
+ # },
1202
+ # subnet_identifier: "subnet-bcd382f3",
1203
+ # },
1204
+ # {
1205
+ # subnet_availability_zone: {
1206
+ # name: "us-east-1b",
1207
+ # },
1208
+ # subnet_identifier: "subnet-845b3e7c0",
1209
+ # },
1210
+ # ],
1211
+ # vpc_id: "vpc-91280df6",
1212
+ # },
1213
+ # }
1214
+ #
965
1215
  # @example Request syntax with placeholder values
966
1216
  #
967
1217
  # resp = client.create_cache_subnet_group({
@@ -1353,6 +1603,96 @@ module Aws::ElastiCache
1353
1603
  #
1354
1604
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
1355
1605
  #
1606
+ #
1607
+ # @example Example: CreateCacheReplicationGroup
1608
+ #
1609
+ # # Creates a Redis replication group with 3 nodes.
1610
+ #
1611
+ # resp = client.create_replication_group({
1612
+ # automatic_failover_enabled: true,
1613
+ # cache_node_type: "cache.m3.medium",
1614
+ # engine: "redis",
1615
+ # engine_version: "2.8.24",
1616
+ # num_cache_clusters: 3,
1617
+ # replication_group_description: "A Redis replication group.",
1618
+ # replication_group_id: "my-redis-rg",
1619
+ # snapshot_retention_limit: 30,
1620
+ # })
1621
+ #
1622
+ # resp.to_h outputs the following:
1623
+ # {
1624
+ # replication_group: {
1625
+ # automatic_failover: "enabling",
1626
+ # description: "A Redis replication group.",
1627
+ # member_clusters: [
1628
+ # "my-redis-rg-001",
1629
+ # "my-redis-rg-002",
1630
+ # "my-redis-rg-003",
1631
+ # ],
1632
+ # pending_modified_values: {
1633
+ # },
1634
+ # replication_group_id: "my-redis-rg",
1635
+ # snapshotting_cluster_id: "my-redis-rg-002",
1636
+ # status: "creating",
1637
+ # },
1638
+ # }
1639
+ #
1640
+ # @example Example: CreateReplicationGroup
1641
+ #
1642
+ # # Creates a Redis (cluster mode enabled) replication group with two shards. One shard has one read replica node and the other shard has two read replicas.
1643
+ #
1644
+ # resp = client.create_replication_group({
1645
+ # auto_minor_version_upgrade: true,
1646
+ # cache_node_type: "cache.m3.medium",
1647
+ # cache_parameter_group_name: "default.redis3.2.cluster.on",
1648
+ # engine: "redis",
1649
+ # engine_version: "3.2.4",
1650
+ # node_group_configuration: [
1651
+ # {
1652
+ # primary_availability_zone: "us-east-1c",
1653
+ # replica_availability_zones: [
1654
+ # "us-east-1b",
1655
+ # ],
1656
+ # replica_count: 1,
1657
+ # slots: "0-8999",
1658
+ # },
1659
+ # {
1660
+ # primary_availability_zone: "us-east-1a",
1661
+ # replica_availability_zones: [
1662
+ # "us-east-1a",
1663
+ # "us-east-1c",
1664
+ # ],
1665
+ # replica_count: 2,
1666
+ # slots: "9000-16383",
1667
+ # },
1668
+ # ],
1669
+ # num_node_groups: 2,
1670
+ # replication_group_description: "A multi-sharded replication group",
1671
+ # replication_group_id: "clustered-redis-rg",
1672
+ # snapshot_retention_limit: 8,
1673
+ # })
1674
+ #
1675
+ # resp.to_h outputs the following:
1676
+ # {
1677
+ # replication_group: {
1678
+ # automatic_failover: "enabled",
1679
+ # description: "Sharded replication group",
1680
+ # member_clusters: [
1681
+ # "rc-rg3-0001-001",
1682
+ # "rc-rg3-0001-002",
1683
+ # "rc-rg3-0002-001",
1684
+ # "rc-rg3-0002-002",
1685
+ # "rc-rg3-0002-003",
1686
+ # ],
1687
+ # pending_modified_values: {
1688
+ # },
1689
+ # replication_group_id: "clustered-redis-rg",
1690
+ # snapshot_retention_limit: 8,
1691
+ # snapshot_window: "05:30-06:30",
1692
+ # status: "creating",
1693
+ # },
1694
+ # }
1695
+ #
1356
1696
  # @example Request syntax with placeholder values
1357
1697
  #
1358
1698
  # resp = client.create_replication_group({
@@ -1541,6 +1881,47 @@ module Aws::ElastiCache
1541
1881
  #
1542
1882
  # * {Types::DeleteCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
1543
1883
  #
1884
+ #
1885
+ # @example Example: DeleteCacheCluster
1886
+ #
1887
+ # # Deletes an Amazon ElastiCache cluster.
1888
+ #
1889
+ # resp = client.delete_cache_cluster({
1890
+ # cache_cluster_id: "my-memcached",
1891
+ # })
1892
+ #
1893
+ # resp.to_h outputs the following:
1894
+ # {
1895
+ # cache_cluster: {
1896
+ # auto_minor_version_upgrade: true,
1897
+ # cache_cluster_create_time: Time.parse("2016-12-22T16:05:17.314Z"),
1898
+ # cache_cluster_id: "my-memcached",
1899
+ # cache_cluster_status: "deleting",
1900
+ # cache_node_type: "cache.r3.large",
1901
+ # cache_parameter_group: {
1902
+ # cache_node_ids_to_reboot: [
1903
+ # ],
1904
+ # cache_parameter_group_name: "default.memcached1.4",
1905
+ # parameter_apply_status: "in-sync",
1906
+ # },
1907
+ # cache_security_groups: [
1908
+ # ],
1909
+ # cache_subnet_group_name: "default",
1910
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
1911
+ # configuration_endpoint: {
1912
+ # address: "my-memcached2.ameaqx.cfg.use1.cache.amazonaws.com",
1913
+ # port: 11211,
1914
+ # },
1915
+ # engine: "memcached",
1916
+ # engine_version: "1.4.24",
1917
+ # num_cache_nodes: 2,
1918
+ # pending_modified_values: {
1919
+ # },
1920
+ # preferred_availability_zone: "Multiple",
1921
+ # preferred_maintenance_window: "tue:07:30-tue:08:30",
1922
+ # },
1923
+ # }
1924
+ #
1544
1925
  # @example Request syntax with placeholder values
1545
1926
  #
1546
1927
  # resp = client.delete_cache_cluster({
@@ -1616,6 +1997,15 @@ module Aws::ElastiCache
1616
1997
  #
1617
1998
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1618
1999
  #
2000
+ #
2001
+ # @example Example: DeleteCacheParameterGroup
2002
+ #
2003
+ # # Deletes the Amazon ElastiCache parameter group custom-mem1-4.
2004
+ #
2005
+ # resp = client.delete_cache_parameter_group({
2006
+ # cache_parameter_group_name: "custom-mem1-4",
2007
+ # })
2008
+ #
1619
2009
  # @example Request syntax with placeholder values
1620
2010
  #
1621
2011
  # resp = client.delete_cache_parameter_group({
@@ -1647,6 +2037,15 @@ module Aws::ElastiCache
1647
2037
  #
1648
2038
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1649
2039
  #
2040
+ #
2041
+ # @example Example: DeleteCacheSecurityGroup
2042
+ #
2043
+ # # Deletes a cache security group.
2044
+ #
2045
+ # resp = client.delete_cache_security_group({
2046
+ # cache_security_group_name: "my-sec-group",
2047
+ # })
2048
+ #
1650
2049
  # @example Request syntax with placeholder values
1651
2050
  #
1652
2051
  # resp = client.delete_cache_security_group({
@@ -1677,6 +2076,15 @@ module Aws::ElastiCache
1677
2076
  #
1678
2077
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1679
2078
  #
2079
+ #
2080
+ # @example Example: DeleteCacheSubnetGroup
2081
+ #
2082
+ # # Deletes the Amazon ElastiCache subnet group my-subnet-group.
2083
+ #
2084
+ # resp = client.delete_cache_subnet_group({
2085
+ # cache_subnet_group_name: "my-subnet-group",
2086
+ # })
2087
+ #
1680
2088
  # @example Request syntax with placeholder values
1681
2089
  #
1682
2090
  # resp = client.delete_cache_subnet_group({
@@ -1725,6 +2133,28 @@ module Aws::ElastiCache
1725
2133
  #
1726
2134
  # * {Types::DeleteReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
1727
2135
  #
2136
+ #
2137
+ # @example Example: DeleteReplicationGroup
2138
+ #
2139
+ # # Deletes the Amazon ElastiCache replication group my-redis-rg.
2140
+ #
2141
+ # resp = client.delete_replication_group({
2142
+ # replication_group_id: "my-redis-rg",
2143
+ # retain_primary_cluster: false,
2144
+ # })
2145
+ #
2146
+ # resp.to_h outputs the following:
2147
+ # {
2148
+ # replication_group: {
2149
+ # automatic_failover: "disabled",
2150
+ # description: "simple redis cluster",
2151
+ # pending_modified_values: {
2152
+ # },
2153
+ # replication_group_id: "my-redis-rg",
2154
+ # status: "deleting",
2155
+ # },
2156
+ # }
2157
+ #
1728
2158
  # @example Request syntax with placeholder values
1729
2159
  #
1730
2160
  # resp = client.delete_replication_group({
@@ -1788,6 +2218,47 @@ module Aws::ElastiCache
1788
2218
  #
1789
2219
  # * {Types::DeleteSnapshotResult#snapshot #snapshot} => Types::Snapshot
1790
2220
  #
2221
+ #
2222
+ # @example Example: DeleteSnapshot
2223
+ #
2224
+ # # Deletes the Redis snapshot snapshot-20160822.
2225
+ #
2226
+ # resp = client.delete_snapshot({
2227
+ # snapshot_name: "snapshot-20161212",
2228
+ # })
2229
+ #
2230
+ # resp.to_h outputs the following:
2231
+ # {
2232
+ # snapshot: {
2233
+ # auto_minor_version_upgrade: true,
2234
+ # cache_cluster_create_time: Time.parse("2016-12-21T22:27:12.543Z"),
2235
+ # cache_cluster_id: "my-redis5",
2236
+ # cache_node_type: "cache.m3.large",
2237
+ # cache_parameter_group_name: "default.redis3.2",
2238
+ # cache_subnet_group_name: "default",
2239
+ # engine: "redis",
2240
+ # engine_version: "3.2.4",
2241
+ # node_snapshots: [
2242
+ # {
2243
+ # cache_node_create_time: Time.parse("2016-12-21T22:27:12.543Z"),
2244
+ # cache_node_id: "0001",
2245
+ # cache_size: "3 MB",
2246
+ # snapshot_create_time: Time.parse("2016-12-21T22:30:26Z"),
2247
+ # },
2248
+ # ],
2249
+ # num_cache_nodes: 1,
2250
+ # port: 6379,
2251
+ # preferred_availability_zone: "us-east-1c",
2252
+ # preferred_maintenance_window: "fri:05:30-fri:06:30",
2253
+ # snapshot_name: "snapshot-20161212",
2254
+ # snapshot_retention_limit: 7,
2255
+ # snapshot_source: "manual",
2256
+ # snapshot_status: "deleting",
2257
+ # snapshot_window: "10:00-11:00",
2258
+ # vpc_id: "vpc-91280df6",
2259
+ # },
2260
+ # }
2261
+ #
1791
2262
  # @example Request syntax with placeholder values
1792
2263
  #
1793
2264
  # resp = client.delete_snapshot({
@@ -1902,6 +2373,116 @@ module Aws::ElastiCache
1902
2373
  # * {Types::CacheClusterMessage#marker #marker} => String
1903
2374
  # * {Types::CacheClusterMessage#cache_clusters #cache_clusters} => Array<Types::CacheCluster>
1904
2375
  #
2376
+ #
2377
+ # @example Example: DescribeCacheClusters
2378
+ #
2379
+ # # Lists the details for up to 50 cache clusters.
2380
+ #
2381
+ # resp = client.describe_cache_clusters({
2382
+ # cache_cluster_id: "my-mem-cluster",
2383
+ # })
2384
+ #
2385
+ # resp.to_h outputs the following:
2386
+ # {
2387
+ # cache_clusters: [
2388
+ # {
2389
+ # auto_minor_version_upgrade: true,
2390
+ # cache_cluster_create_time: Time.parse("2016-12-21T21:59:43.794Z"),
2391
+ # cache_cluster_id: "my-mem-cluster",
2392
+ # cache_cluster_status: "available",
2393
+ # cache_node_type: "cache.t2.medium",
2394
+ # cache_parameter_group: {
2395
+ # cache_node_ids_to_reboot: [
2396
+ # ],
2397
+ # cache_parameter_group_name: "default.memcached1.4",
2398
+ # parameter_apply_status: "in-sync",
2399
+ # },
2400
+ # cache_security_groups: [
2401
+ # ],
2402
+ # cache_subnet_group_name: "default",
2403
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
2404
+ # configuration_endpoint: {
2405
+ # address: "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com",
2406
+ # port: 11211,
2407
+ # },
2408
+ # engine: "memcached",
2409
+ # engine_version: "1.4.24",
2410
+ # num_cache_nodes: 2,
2411
+ # pending_modified_values: {
2412
+ # },
2413
+ # preferred_availability_zone: "Multiple",
2414
+ # preferred_maintenance_window: "wed:06:00-wed:07:00",
2415
+ # },
2416
+ # ],
2417
+ # }
2418
+ #
2419
+ # @example Example: DescribeCacheClusters
2420
+ #
2421
+ # # Lists the details for the cache cluster my-mem-cluster.
2422
+ #
2423
+ # resp = client.describe_cache_clusters({
2424
+ # cache_cluster_id: "my-mem-cluster",
2425
+ # show_cache_node_info: true,
2426
+ # })
2427
+ #
2428
+ # resp.to_h outputs the following:
2429
+ # {
2430
+ # cache_clusters: [
2431
+ # {
2432
+ # auto_minor_version_upgrade: true,
2433
+ # cache_cluster_create_time: Time.parse("2016-12-21T21:59:43.794Z"),
2434
+ # cache_cluster_id: "my-mem-cluster",
2435
+ # cache_cluster_status: "available",
2436
+ # cache_node_type: "cache.t2.medium",
2437
+ # cache_nodes: [
2438
+ # {
2439
+ # cache_node_create_time: Time.parse("2016-12-21T21:59:43.794Z"),
2440
+ # cache_node_id: "0001",
2441
+ # cache_node_status: "available",
2442
+ # customer_availability_zone: "us-east-1b",
2443
+ # endpoint: {
2444
+ # address: "my-mem-cluster.ameaqx.0001.use1.cache.amazonaws.com",
2445
+ # port: 11211,
2446
+ # },
2447
+ # parameter_group_status: "in-sync",
2448
+ # },
2449
+ # {
2450
+ # cache_node_create_time: Time.parse("2016-12-21T21:59:43.794Z"),
2451
+ # cache_node_id: "0002",
2452
+ # cache_node_status: "available",
2453
+ # customer_availability_zone: "us-east-1a",
2454
+ # endpoint: {
2455
+ # address: "my-mem-cluster.ameaqx.0002.use1.cache.amazonaws.com",
2456
+ # port: 11211,
2457
+ # },
2458
+ # parameter_group_status: "in-sync",
2459
+ # },
2460
+ # ],
2461
+ # cache_parameter_group: {
2462
+ # cache_node_ids_to_reboot: [
2463
+ # ],
2464
+ # cache_parameter_group_name: "default.memcached1.4",
2465
+ # parameter_apply_status: "in-sync",
2466
+ # },
2467
+ # cache_security_groups: [
2468
+ # ],
2469
+ # cache_subnet_group_name: "default",
2470
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
2471
+ # configuration_endpoint: {
2472
+ # address: "my-mem-cluster.ameaqx.cfg.use1.cache.amazonaws.com",
2473
+ # port: 11211,
2474
+ # },
2475
+ # engine: "memcached",
2476
+ # engine_version: "1.4.24",
2477
+ # num_cache_nodes: 2,
2478
+ # pending_modified_values: {
2479
+ # },
2480
+ # preferred_availability_zone: "Multiple",
2481
+ # preferred_maintenance_window: "wed:06:00-wed:07:00",
2482
+ # },
2483
+ # ],
2484
+ # }
2485
+ #
1905
2486
  # @example Request syntax with placeholder values
1906
2487
  #
1907
2488
  # resp = client.describe_cache_clusters({
@@ -2019,6 +2600,177 @@ module Aws::ElastiCache
2019
2600
  # * {Types::CacheEngineVersionMessage#marker #marker} => String
2020
2601
  # * {Types::CacheEngineVersionMessage#cache_engine_versions #cache_engine_versions} => Array<Types::CacheEngineVersion>
2021
2602
  #
2603
+ #
2604
+ # @example Example: DescribeCacheEngineVersions
2605
+ #
2606
+ # # Lists the details for up to 25 Memcached and Redis cache engine versions.
2607
+ #
2608
+ # resp = client.describe_cache_engine_versions({
2609
+ # })
2610
+ #
2611
+ # resp.to_h outputs the following:
2612
+ # {
2613
+ # cache_engine_versions: [
2614
+ # {
2615
+ # cache_engine_description: "memcached",
2616
+ # cache_engine_version_description: "memcached version 1.4.14",
2617
+ # cache_parameter_group_family: "memcached1.4",
2618
+ # engine: "memcached",
2619
+ # engine_version: "1.4.14",
2620
+ # },
2621
+ # {
2622
+ # cache_engine_description: "memcached",
2623
+ # cache_engine_version_description: "memcached version 1.4.24",
2624
+ # cache_parameter_group_family: "memcached1.4",
2625
+ # engine: "memcached",
2626
+ # engine_version: "1.4.24",
2627
+ # },
2628
+ # {
2629
+ # cache_engine_description: "memcached",
2630
+ # cache_engine_version_description: "memcached version 1.4.33",
2631
+ # cache_parameter_group_family: "memcached1.4",
2632
+ # engine: "memcached",
2633
+ # engine_version: "1.4.33",
2634
+ # },
2635
+ # {
2636
+ # cache_engine_description: "memcached",
2637
+ # cache_engine_version_description: "memcached version 1.4.5",
2638
+ # cache_parameter_group_family: "memcached1.4",
2639
+ # engine: "memcached",
2640
+ # engine_version: "1.4.5",
2641
+ # },
2642
+ # {
2643
+ # cache_engine_description: "Redis",
2644
+ # cache_engine_version_description: "redis version 2.6.13",
2645
+ # cache_parameter_group_family: "redis2.6",
2646
+ # engine: "redis",
2647
+ # engine_version: "2.6.13",
2648
+ # },
2649
+ # {
2650
+ # cache_engine_description: "Redis",
2651
+ # cache_engine_version_description: "redis version 2.8.19",
2652
+ # cache_parameter_group_family: "redis2.8",
2653
+ # engine: "redis",
2654
+ # engine_version: "2.8.19",
2655
+ # },
2656
+ # {
2657
+ # cache_engine_description: "Redis",
2658
+ # cache_engine_version_description: "redis version 2.8.21",
2659
+ # cache_parameter_group_family: "redis2.8",
2660
+ # engine: "redis",
2661
+ # engine_version: "2.8.21",
2662
+ # },
2663
+ # {
2664
+ # cache_engine_description: "Redis",
2665
+ # cache_engine_version_description: "redis version 2.8.22 R5",
2666
+ # cache_parameter_group_family: "redis2.8",
2667
+ # engine: "redis",
2668
+ # engine_version: "2.8.22",
2669
+ # },
2670
+ # {
2671
+ # cache_engine_description: "Redis",
2672
+ # cache_engine_version_description: "redis version 2.8.23 R4",
2673
+ # cache_parameter_group_family: "redis2.8",
2674
+ # engine: "redis",
2675
+ # engine_version: "2.8.23",
2676
+ # },
2677
+ # {
2678
+ # cache_engine_description: "Redis",
2679
+ # cache_engine_version_description: "redis version 2.8.24 R3",
2680
+ # cache_parameter_group_family: "redis2.8",
2681
+ # engine: "redis",
2682
+ # engine_version: "2.8.24",
2683
+ # },
2684
+ # {
2685
+ # cache_engine_description: "Redis",
2686
+ # cache_engine_version_description: "redis version 2.8.6",
2687
+ # cache_parameter_group_family: "redis2.8",
2688
+ # engine: "redis",
2689
+ # engine_version: "2.8.6",
2690
+ # },
2691
+ # {
2692
+ # cache_engine_description: "Redis",
2693
+ # cache_engine_version_description: "redis version 3.2.4",
2694
+ # cache_parameter_group_family: "redis3.2",
2695
+ # engine: "redis",
2696
+ # engine_version: "3.2.4",
2697
+ # },
2698
+ # ],
2699
+ # }
2700
+ #
2701
+ # @example Example: DescribeCacheEngineVersions
2702
+ #
2703
+ # # Lists the details for up to 50 Redis cache engine versions.
2704
+ #
2705
+ # resp = client.describe_cache_engine_versions({
2706
+ # default_only: false,
2707
+ # engine: "redis",
2708
+ # max_records: 50,
2709
+ # })
2710
+ #
2711
+ # resp.to_h outputs the following:
2712
+ # {
2713
+ # cache_engine_versions: [
2714
+ # {
2715
+ # cache_engine_description: "Redis",
2716
+ # cache_engine_version_description: "redis version 2.6.13",
2717
+ # cache_parameter_group_family: "redis2.6",
2718
+ # engine: "redis",
2719
+ # engine_version: "2.6.13",
2720
+ # },
2721
+ # {
2722
+ # cache_engine_description: "Redis",
2723
+ # cache_engine_version_description: "redis version 2.8.19",
2724
+ # cache_parameter_group_family: "redis2.8",
2725
+ # engine: "redis",
2726
+ # engine_version: "2.8.19",
2727
+ # },
2728
+ # {
2729
+ # cache_engine_description: "Redis",
2730
+ # cache_engine_version_description: "redis version 2.8.21",
2731
+ # cache_parameter_group_family: "redis2.8",
2732
+ # engine: "redis",
2733
+ # engine_version: "2.8.21",
2734
+ # },
2735
+ # {
2736
+ # cache_engine_description: "Redis",
2737
+ # cache_engine_version_description: "redis version 2.8.22 R5",
2738
+ # cache_parameter_group_family: "redis2.8",
2739
+ # engine: "redis",
2740
+ # engine_version: "2.8.22",
2741
+ # },
2742
+ # {
2743
+ # cache_engine_description: "Redis",
2744
+ # cache_engine_version_description: "redis version 2.8.23 R4",
2745
+ # cache_parameter_group_family: "redis2.8",
2746
+ # engine: "redis",
2747
+ # engine_version: "2.8.23",
2748
+ # },
2749
+ # {
2750
+ # cache_engine_description: "Redis",
2751
+ # cache_engine_version_description: "redis version 2.8.24 R3",
2752
+ # cache_parameter_group_family: "redis2.8",
2753
+ # engine: "redis",
2754
+ # engine_version: "2.8.24",
2755
+ # },
2756
+ # {
2757
+ # cache_engine_description: "Redis",
2758
+ # cache_engine_version_description: "redis version 2.8.6",
2759
+ # cache_parameter_group_family: "redis2.8",
2760
+ # engine: "redis",
2761
+ # engine_version: "2.8.6",
2762
+ # },
2763
+ # {
2764
+ # cache_engine_description: "Redis",
2765
+ # cache_engine_version_description: "redis version 3.2.4",
2766
+ # cache_parameter_group_family: "redis3.2",
2767
+ # engine: "redis",
2768
+ # engine_version: "3.2.4",
2769
+ # },
2770
+ # ],
2771
+ # marker: "",
2772
+ # }
2773
+ #
2022
2774
  # @example Request syntax with placeholder values
2023
2775
  #
2024
2776
  # resp = client.describe_cache_engine_versions({
@@ -2077,6 +2829,26 @@ module Aws::ElastiCache
2077
2829
  # * {Types::CacheParameterGroupsMessage#marker #marker} => String
2078
2830
  # * {Types::CacheParameterGroupsMessage#cache_parameter_groups #cache_parameter_groups} => Array<Types::CacheParameterGroup>
2079
2831
  #
2832
+ #
2833
+ # @example Example: DescribeCacheParameterGroups
2834
+ #
2835
+ # # Returns a list of cache parameter group descriptions. If a cache parameter group name is specified, the list contains only the descriptions for that group.
2836
+ #
2837
+ # resp = client.describe_cache_parameter_groups({
2838
+ # cache_parameter_group_name: "custom-mem1-4",
2839
+ # })
2840
+ #
2841
+ # resp.to_h outputs the following:
2842
+ # {
2843
+ # cache_parameter_groups: [
2844
+ # {
2845
+ # cache_parameter_group_family: "memcached1.4",
2846
+ # cache_parameter_group_name: "custom-mem1-4",
2847
+ # description: "Custom memcache param group",
2848
+ # },
2849
+ # ],
2850
+ # }
2851
+ #
2080
2852
  # @example Request syntax with placeholder values
2081
2853
  #
2082
2854
  # resp = client.describe_cache_parameter_groups({
@@ -2135,6 +2907,407 @@ module Aws::ElastiCache
2135
2907
  # * {Types::CacheParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
2136
2908
  # * {Types::CacheParameterGroupDetails#cache_node_type_specific_parameters #cache_node_type_specific_parameters} => Array<Types::CacheNodeTypeSpecificParameter>
2137
2909
  #
2910
+ #
2911
+ # @example Example: DescribeCacheParameters
2912
+ #
2913
+ # # Lists up to 100 user parameter values for the parameter group custom.redis2.8.
2914
+ #
2915
+ # resp = client.describe_cache_parameters({
2916
+ # cache_parameter_group_name: "custom-redis2-8",
2917
+ # max_records: 100,
2918
+ # source: "user",
2919
+ # })
2920
+ #
2921
+ # resp.to_h outputs the following:
2922
+ # {
2923
+ # marker: "",
2924
+ # parameters: [
2925
+ # {
2926
+ # allowed_values: "yes,no",
2927
+ # change_type: "requires-reboot",
2928
+ # data_type: "string",
2929
+ # description: "Apply rehashing or not.",
2930
+ # is_modifiable: true,
2931
+ # minimum_engine_version: "2.8.6",
2932
+ # parameter_name: "activerehashing",
2933
+ # parameter_value: "yes",
2934
+ # source: "system",
2935
+ # },
2936
+ # {
2937
+ # allowed_values: "always,everysec,no",
2938
+ # change_type: "immediate",
2939
+ # data_type: "string",
2940
+ # description: "fsync policy for AOF persistence",
2941
+ # is_modifiable: true,
2942
+ # minimum_engine_version: "2.8.6",
2943
+ # parameter_name: "appendfsync",
2944
+ # parameter_value: "everysec",
2945
+ # source: "system",
2946
+ # },
2947
+ # {
2948
+ # allowed_values: "yes,no",
2949
+ # change_type: "immediate",
2950
+ # data_type: "string",
2951
+ # description: "Enable Redis persistence.",
2952
+ # is_modifiable: true,
2953
+ # minimum_engine_version: "2.8.6",
2954
+ # parameter_name: "appendonly",
2955
+ # parameter_value: "no",
2956
+ # source: "system",
2957
+ # },
2958
+ # {
2959
+ # allowed_values: "0-",
2960
+ # change_type: "immediate",
2961
+ # data_type: "integer",
2962
+ # description: "Normal client output buffer hard limit in bytes.",
2963
+ # is_modifiable: true,
2964
+ # minimum_engine_version: "2.8.6",
2965
+ # parameter_name: "client-output-buffer-limit-normal-hard-limit",
2966
+ # parameter_value: "0",
2967
+ # source: "system",
2968
+ # },
2969
+ # {
2970
+ # allowed_values: "0-",
2971
+ # change_type: "immediate",
2972
+ # data_type: "integer",
2973
+ # description: "Normal client output buffer soft limit in bytes.",
2974
+ # is_modifiable: true,
2975
+ # minimum_engine_version: "2.8.6",
2976
+ # parameter_name: "client-output-buffer-limit-normal-soft-limit",
2977
+ # parameter_value: "0",
2978
+ # source: "system",
2979
+ # },
2980
+ # {
2981
+ # allowed_values: "0-",
2982
+ # change_type: "immediate",
2983
+ # data_type: "integer",
2984
+ # description: "Normal client output buffer soft limit in seconds.",
2985
+ # is_modifiable: true,
2986
+ # minimum_engine_version: "2.8.6",
2987
+ # parameter_name: "client-output-buffer-limit-normal-soft-seconds",
2988
+ # parameter_value: "0",
2989
+ # source: "system",
2990
+ # },
2991
+ # {
2992
+ # allowed_values: "0-",
2993
+ # change_type: "immediate",
2994
+ # data_type: "integer",
2995
+ # description: "Pubsub client output buffer hard limit in bytes.",
2996
+ # is_modifiable: true,
2997
+ # minimum_engine_version: "2.8.6",
2998
+ # parameter_name: "client-output-buffer-limit-pubsub-hard-limit",
2999
+ # parameter_value: "33554432",
3000
+ # source: "system",
3001
+ # },
3002
+ # {
3003
+ # allowed_values: "0-",
3004
+ # change_type: "immediate",
3005
+ # data_type: "integer",
3006
+ # description: "Pubsub client output buffer soft limit in bytes.",
3007
+ # is_modifiable: true,
3008
+ # minimum_engine_version: "2.8.6",
3009
+ # parameter_name: "client-output-buffer-limit-pubsub-soft-limit",
3010
+ # parameter_value: "8388608",
3011
+ # source: "system",
3012
+ # },
3013
+ # {
3014
+ # allowed_values: "0-",
3015
+ # change_type: "immediate",
3016
+ # data_type: "integer",
3017
+ # description: "Pubsub client output buffer soft limit in seconds.",
3018
+ # is_modifiable: true,
3019
+ # minimum_engine_version: "2.8.6",
3020
+ # parameter_name: "client-output-buffer-limit-pubsub-soft-seconds",
3021
+ # parameter_value: "60",
3022
+ # source: "system",
3023
+ # },
3024
+ # {
3025
+ # allowed_values: "0-",
3026
+ # change_type: "immediate",
3027
+ # data_type: "integer",
3028
+ # description: "Slave client output buffer soft limit in seconds.",
3029
+ # is_modifiable: false,
3030
+ # minimum_engine_version: "2.8.6",
3031
+ # parameter_name: "client-output-buffer-limit-slave-soft-seconds",
3032
+ # parameter_value: "60",
3033
+ # source: "system",
3034
+ # },
3035
+ # {
3036
+ # allowed_values: "yes,no",
3037
+ # change_type: "immediate",
3038
+ # data_type: "string",
3039
+ # description: "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.",
3040
+ # is_modifiable: true,
3041
+ # minimum_engine_version: "2.8.23",
3042
+ # parameter_name: "close-on-slave-write",
3043
+ # parameter_value: "yes",
3044
+ # source: "system",
3045
+ # },
3046
+ # {
3047
+ # allowed_values: "1-1200000",
3048
+ # change_type: "requires-reboot",
3049
+ # data_type: "integer",
3050
+ # description: "Set the number of databases.",
3051
+ # is_modifiable: true,
3052
+ # minimum_engine_version: "2.8.6",
3053
+ # parameter_name: "databases",
3054
+ # parameter_value: "16",
3055
+ # source: "system",
3056
+ # },
3057
+ # {
3058
+ # allowed_values: "0-",
3059
+ # change_type: "immediate",
3060
+ # data_type: "integer",
3061
+ # description: "The maximum number of hash entries in order for the dataset to be compressed.",
3062
+ # is_modifiable: true,
3063
+ # minimum_engine_version: "2.8.6",
3064
+ # parameter_name: "hash-max-ziplist-entries",
3065
+ # parameter_value: "512",
3066
+ # source: "system",
3067
+ # },
3068
+ # {
3069
+ # allowed_values: "0-",
3070
+ # change_type: "immediate",
3071
+ # data_type: "integer",
3072
+ # description: "The threshold of biggest hash entries in order for the dataset to be compressed.",
3073
+ # is_modifiable: true,
3074
+ # minimum_engine_version: "2.8.6",
3075
+ # parameter_name: "hash-max-ziplist-value",
3076
+ # parameter_value: "64",
3077
+ # source: "system",
3078
+ # },
3079
+ # {
3080
+ # allowed_values: "0-",
3081
+ # change_type: "immediate",
3082
+ # data_type: "integer",
3083
+ # description: "The maximum number of list entries in order for the dataset to be compressed.",
3084
+ # is_modifiable: true,
3085
+ # minimum_engine_version: "2.8.6",
3086
+ # parameter_name: "list-max-ziplist-entries",
3087
+ # parameter_value: "512",
3088
+ # source: "system",
3089
+ # },
3090
+ # {
3091
+ # allowed_values: "0-",
3092
+ # change_type: "immediate",
3093
+ # data_type: "integer",
3094
+ # description: "The threshold of biggest list entries in order for the dataset to be compressed.",
3095
+ # is_modifiable: true,
3096
+ # minimum_engine_version: "2.8.6",
3097
+ # parameter_name: "list-max-ziplist-value",
3098
+ # parameter_value: "64",
3099
+ # source: "system",
3100
+ # },
3101
+ # {
3102
+ # allowed_values: "5000",
3103
+ # change_type: "immediate",
3104
+ # data_type: "integer",
3105
+ # description: "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.",
3106
+ # is_modifiable: false,
3107
+ # minimum_engine_version: "2.8.6",
3108
+ # parameter_name: "lua-time-limit",
3109
+ # parameter_value: "5000",
3110
+ # source: "system",
3111
+ # },
3112
+ # {
3113
+ # allowed_values: "1-65000",
3114
+ # change_type: "requires-reboot",
3115
+ # data_type: "integer",
3116
+ # description: "The maximum number of Redis clients.",
3117
+ # is_modifiable: false,
3118
+ # minimum_engine_version: "2.8.6",
3119
+ # parameter_name: "maxclients",
3120
+ # parameter_value: "65000",
3121
+ # source: "system",
3122
+ # },
3123
+ # {
3124
+ # allowed_values: "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction",
3125
+ # change_type: "immediate",
3126
+ # data_type: "string",
3127
+ # description: "Max memory policy.",
3128
+ # is_modifiable: true,
3129
+ # minimum_engine_version: "2.8.6",
3130
+ # parameter_name: "maxmemory-policy",
3131
+ # parameter_value: "volatile-lru",
3132
+ # source: "system",
3133
+ # },
3134
+ # {
3135
+ # allowed_values: "1-",
3136
+ # change_type: "immediate",
3137
+ # data_type: "integer",
3138
+ # description: "Max memory samples.",
3139
+ # is_modifiable: true,
3140
+ # minimum_engine_version: "2.8.6",
3141
+ # parameter_name: "maxmemory-samples",
3142
+ # parameter_value: "3",
3143
+ # source: "system",
3144
+ # },
3145
+ # {
3146
+ # allowed_values: "0-",
3147
+ # change_type: "immediate",
3148
+ # data_type: "integer",
3149
+ # description: "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.",
3150
+ # is_modifiable: true,
3151
+ # minimum_engine_version: "2.8.6",
3152
+ # parameter_name: "min-slaves-max-lag",
3153
+ # parameter_value: "10",
3154
+ # source: "system",
3155
+ # },
3156
+ # {
3157
+ # allowed_values: "0-",
3158
+ # change_type: "immediate",
3159
+ # data_type: "integer",
3160
+ # description: "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.",
3161
+ # is_modifiable: true,
3162
+ # minimum_engine_version: "2.8.6",
3163
+ # parameter_name: "min-slaves-to-write",
3164
+ # parameter_value: "0",
3165
+ # source: "system",
3166
+ # },
3167
+ # {
3168
+ # change_type: "immediate",
3169
+ # data_type: "string",
3170
+ # description: "The keyspace events for Redis to notify Pub/Sub clients about. By default all notifications are disabled",
3171
+ # is_modifiable: true,
3172
+ # minimum_engine_version: "2.8.6",
3173
+ # parameter_name: "notify-keyspace-events",
3174
+ # source: "system",
3175
+ # },
3176
+ # {
3177
+ # allowed_values: "16384-",
3178
+ # change_type: "immediate",
3179
+ # data_type: "integer",
3180
+ # description: "The replication backlog size in bytes for PSYNC. This is the size of the buffer which accumulates slave data when slave is disconnected for some time, so that when slave reconnects again, only transfer the portion of data which the slave missed. Minimum value is 16K.",
3181
+ # is_modifiable: true,
3182
+ # minimum_engine_version: "2.8.6",
3183
+ # parameter_name: "repl-backlog-size",
3184
+ # parameter_value: "1048576",
3185
+ # source: "system",
3186
+ # },
3187
+ # {
3188
+ # allowed_values: "0-",
3189
+ # change_type: "immediate",
3190
+ # data_type: "integer",
3191
+ # description: "The amount of time in seconds after the master no longer have any slaves connected for the master to free the replication backlog. A value of 0 means to never release the backlog.",
3192
+ # is_modifiable: true,
3193
+ # minimum_engine_version: "2.8.6",
3194
+ # parameter_name: "repl-backlog-ttl",
3195
+ # parameter_value: "3600",
3196
+ # source: "system",
3197
+ # },
3198
+ # {
3199
+ # allowed_values: "11-",
3200
+ # change_type: "immediate",
3201
+ # data_type: "integer",
3202
+ # description: "The timeout in seconds for bulk transfer I/O during sync and master timeout from the perspective of the slave, and slave timeout from the perspective of the master.",
3203
+ # is_modifiable: true,
3204
+ # minimum_engine_version: "2.8.6",
3205
+ # parameter_name: "repl-timeout",
3206
+ # parameter_value: "60",
3207
+ # source: "system",
3208
+ # },
3209
+ # {
3210
+ # allowed_values: "0-",
3211
+ # change_type: "immediate",
3212
+ # data_type: "integer",
3213
+ # description: "The amount of memory reserved for non-cache memory usage, in bytes. You may want to increase this parameter for nodes with read replicas, AOF enabled, etc, to reduce swap usage.",
3214
+ # is_modifiable: true,
3215
+ # minimum_engine_version: "2.8.6",
3216
+ # parameter_name: "reserved-memory",
3217
+ # parameter_value: "0",
3218
+ # source: "system",
3219
+ # },
3220
+ # {
3221
+ # allowed_values: "0-",
3222
+ # change_type: "immediate",
3223
+ # data_type: "integer",
3224
+ # description: "The limit in the size of the set in order for the dataset to be compressed.",
3225
+ # is_modifiable: true,
3226
+ # minimum_engine_version: "2.8.6",
3227
+ # parameter_name: "set-max-intset-entries",
3228
+ # parameter_value: "512",
3229
+ # source: "system",
3230
+ # },
3231
+ # {
3232
+ # allowed_values: "yes,no",
3233
+ # change_type: "immediate",
3234
+ # data_type: "string",
3235
+ # description: "Configures if chaining of slaves is allowed",
3236
+ # is_modifiable: false,
3237
+ # minimum_engine_version: "2.8.6",
3238
+ # parameter_name: "slave-allow-chaining",
3239
+ # parameter_value: "no",
3240
+ # source: "system",
3241
+ # },
3242
+ # {
3243
+ # allowed_values: "-",
3244
+ # change_type: "immediate",
3245
+ # data_type: "integer",
3246
+ # description: "The execution time, in microseconds, to exceed in order for the command to get logged. Note that a negative number disables the slow log, while a value of zero forces the logging of every command.",
3247
+ # is_modifiable: true,
3248
+ # minimum_engine_version: "2.8.6",
3249
+ # parameter_name: "slowlog-log-slower-than",
3250
+ # parameter_value: "10000",
3251
+ # source: "system",
3252
+ # },
3253
+ # {
3254
+ # allowed_values: "0-",
3255
+ # change_type: "immediate",
3256
+ # data_type: "integer",
3257
+ # description: "The length of the slow log. There is no limit to this length. Just be aware that it will consume memory. You can reclaim memory used by the slow log with SLOWLOG RESET.",
3258
+ # is_modifiable: true,
3259
+ # minimum_engine_version: "2.8.6",
3260
+ # parameter_name: "slowlog-max-len",
3261
+ # parameter_value: "128",
3262
+ # source: "system",
3263
+ # },
3264
+ # {
3265
+ # allowed_values: "0-",
3266
+ # change_type: "immediate",
3267
+ # data_type: "integer",
3268
+ # description: "If non-zero, send ACKs every given number of seconds.",
3269
+ # is_modifiable: true,
3270
+ # minimum_engine_version: "2.8.6",
3271
+ # parameter_name: "tcp-keepalive",
3272
+ # parameter_value: "0",
3273
+ # source: "system",
3274
+ # },
3275
+ # {
3276
+ # allowed_values: "0,20-",
3277
+ # change_type: "immediate",
3278
+ # data_type: "integer",
3279
+ # description: "Close connection if client is idle for a given number of seconds, or never if 0.",
3280
+ # is_modifiable: true,
3281
+ # minimum_engine_version: "2.8.6",
3282
+ # parameter_name: "timeout",
3283
+ # parameter_value: "0",
3284
+ # source: "system",
3285
+ # },
3286
+ # {
3287
+ # allowed_values: "0-",
3288
+ # change_type: "immediate",
3289
+ # data_type: "integer",
3290
+ # description: "The maximum number of sorted set entries in order for the dataset to be compressed.",
3291
+ # is_modifiable: true,
3292
+ # minimum_engine_version: "2.8.6",
3293
+ # parameter_name: "zset-max-ziplist-entries",
3294
+ # parameter_value: "128",
3295
+ # source: "system",
3296
+ # },
3297
+ # {
3298
+ # allowed_values: "0-",
3299
+ # change_type: "immediate",
3300
+ # data_type: "integer",
3301
+ # description: "The threshold of biggest sorted set entries in order for the dataset to be compressed.",
3302
+ # is_modifiable: true,
3303
+ # minimum_engine_version: "2.8.6",
3304
+ # parameter_name: "zset-max-ziplist-value",
3305
+ # parameter_value: "64",
3306
+ # source: "system",
3307
+ # },
3308
+ # ],
3309
+ # }
3310
+ #
2138
3311
  # @example Request syntax with placeholder values
2139
3312
  #
2140
3313
  # resp = client.describe_cache_parameters({
@@ -2207,6 +3380,15 @@ module Aws::ElastiCache
2207
3380
  # * {Types::CacheSecurityGroupMessage#marker #marker} => String
2208
3381
  # * {Types::CacheSecurityGroupMessage#cache_security_groups #cache_security_groups} => Array<Types::CacheSecurityGroup>
2209
3382
  #
3383
+ #
3384
+ # @example Example: DescribeCacheSecurityGroups
3385
+ #
3386
+ # # Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group.
3387
+ #
3388
+ # resp = client.describe_cache_security_groups({
3389
+ # cache_security_group_name: "my-sec-group",
3390
+ # })
3391
+ #
2210
3392
  # @example Request syntax with placeholder values
2211
3393
  #
2212
3394
  # resp = client.describe_cache_security_groups({
@@ -2264,6 +3446,53 @@ module Aws::ElastiCache
2264
3446
  # * {Types::CacheSubnetGroupMessage#marker #marker} => String
2265
3447
  # * {Types::CacheSubnetGroupMessage#cache_subnet_groups #cache_subnet_groups} => Array<Types::CacheSubnetGroup>
2266
3448
  #
3449
+ #
3450
+ # @example Example: DescribeCacheSubnetGroups
3451
+ #
3452
+ # # Describes up to 25 cache subnet groups.
3453
+ #
3454
+ # resp = client.describe_cache_subnet_groups({
3455
+ # max_records: 25,
3456
+ # })
3457
+ #
3458
+ # resp.to_h outputs the following:
3459
+ # {
3460
+ # cache_subnet_groups: [
3461
+ # {
3462
+ # cache_subnet_group_description: "Default CacheSubnetGroup",
3463
+ # cache_subnet_group_name: "default",
3464
+ # subnets: [
3465
+ # {
3466
+ # subnet_availability_zone: {
3467
+ # name: "us-east-1a",
3468
+ # },
3469
+ # subnet_identifier: "subnet-1a2b3c4d",
3470
+ # },
3471
+ # {
3472
+ # subnet_availability_zone: {
3473
+ # name: "us-east-1c",
3474
+ # },
3475
+ # subnet_identifier: "subnet-a1b2c3d4",
3476
+ # },
3477
+ # {
3478
+ # subnet_availability_zone: {
3479
+ # name: "us-east-1e",
3480
+ # },
3481
+ # subnet_identifier: "subnet-abcd1234",
3482
+ # },
3483
+ # {
3484
+ # subnet_availability_zone: {
3485
+ # name: "us-east-1b",
3486
+ # },
3487
+ # subnet_identifier: "subnet-1234abcd",
3488
+ # },
3489
+ # ],
3490
+ # vpc_id: "vpc-91280df6",
3491
+ # },
3492
+ # ],
3493
+ # marker: "",
3494
+ # }
3495
+ #
2267
3496
  # @example Request syntax with placeholder values
2268
3497
  #
2269
3498
  # resp = client.describe_cache_subnet_groups({
@@ -2321,6 +3550,618 @@ module Aws::ElastiCache
2321
3550
  #
2322
3551
  # * {Types::DescribeEngineDefaultParametersResult#engine_defaults #engine_defaults} => Types::EngineDefaults
2323
3552
  #
3553
+ #
3554
+ # @example Example: DescribeEngineDefaultParameters
3555
+ #
3556
+ # # Returns the default engine and system parameter information for the specified cache engine.
3557
+ #
3558
+ # resp = client.describe_engine_default_parameters({
3559
+ # cache_parameter_group_family: "redis2.8",
3560
+ # max_records: 25,
3561
+ # })
3562
+ #
3563
+ # resp.to_h outputs the following:
3564
+ # {
3565
+ # engine_defaults: {
3566
+ # cache_node_type_specific_parameters: [
3567
+ # {
3568
+ # allowed_values: "0-",
3569
+ # cache_node_type_specific_values: [
3570
+ # {
3571
+ # cache_node_type: "cache.c1.xlarge",
3572
+ # value: "650117120",
3573
+ # },
3574
+ # {
3575
+ # cache_node_type: "cache.m1.large",
3576
+ # value: "702545920",
3577
+ # },
3578
+ # {
3579
+ # cache_node_type: "cache.m1.medium",
3580
+ # value: "309329920",
3581
+ # },
3582
+ # {
3583
+ # cache_node_type: "cache.m1.small",
3584
+ # value: "94371840",
3585
+ # },
3586
+ # {
3587
+ # cache_node_type: "cache.m1.xlarge",
3588
+ # value: "1488977920",
3589
+ # },
3590
+ # {
3591
+ # cache_node_type: "cache.m2.2xlarge",
3592
+ # value: "3502243840",
3593
+ # },
3594
+ # {
3595
+ # cache_node_type: "cache.m2.4xlarge",
3596
+ # value: "7088373760",
3597
+ # },
3598
+ # {
3599
+ # cache_node_type: "cache.m2.xlarge",
3600
+ # value: "1709178880",
3601
+ # },
3602
+ # {
3603
+ # cache_node_type: "cache.m3.2xlarge",
3604
+ # value: "2998927360",
3605
+ # },
3606
+ # {
3607
+ # cache_node_type: "cache.m3.large",
3608
+ # value: "650117120",
3609
+ # },
3610
+ # {
3611
+ # cache_node_type: "cache.m3.medium",
3612
+ # value: "309329920",
3613
+ # },
3614
+ # {
3615
+ # cache_node_type: "cache.m3.xlarge",
3616
+ # value: "1426063360",
3617
+ # },
3618
+ # {
3619
+ # cache_node_type: "cache.m4.10xlarge",
3620
+ # value: "16604761424",
3621
+ # },
3622
+ # {
3623
+ # cache_node_type: "cache.m4.2xlarge",
3624
+ # value: "3188912636",
3625
+ # },
3626
+ # {
3627
+ # cache_node_type: "cache.m4.4xlarge",
3628
+ # value: "6525729063",
3629
+ # },
3630
+ # {
3631
+ # cache_node_type: "cache.m4.large",
3632
+ # value: "689259315",
3633
+ # },
3634
+ # {
3635
+ # cache_node_type: "cache.m4.xlarge",
3636
+ # value: "1532850176",
3637
+ # },
3638
+ # {
3639
+ # cache_node_type: "cache.r3.2xlarge",
3640
+ # value: "6081740800",
3641
+ # },
3642
+ # {
3643
+ # cache_node_type: "cache.r3.4xlarge",
3644
+ # value: "12268339200",
3645
+ # },
3646
+ # {
3647
+ # cache_node_type: "cache.r3.8xlarge",
3648
+ # value: "24536678400",
3649
+ # },
3650
+ # {
3651
+ # cache_node_type: "cache.r3.large",
3652
+ # value: "1468006400",
3653
+ # },
3654
+ # {
3655
+ # cache_node_type: "cache.r3.xlarge",
3656
+ # value: "3040870400",
3657
+ # },
3658
+ # {
3659
+ # cache_node_type: "cache.t1.micro",
3660
+ # value: "14260633",
3661
+ # },
3662
+ # {
3663
+ # cache_node_type: "cache.t2.medium",
3664
+ # value: "346134937",
3665
+ # },
3666
+ # {
3667
+ # cache_node_type: "cache.t2.micro",
3668
+ # value: "58195968",
3669
+ # },
3670
+ # {
3671
+ # cache_node_type: "cache.t2.small",
3672
+ # value: "166513868",
3673
+ # },
3674
+ # ],
3675
+ # change_type: "immediate",
3676
+ # data_type: "integer",
3677
+ # description: "Slave client output buffer hard limit in bytes.",
3678
+ # is_modifiable: false,
3679
+ # minimum_engine_version: "2.8.6",
3680
+ # parameter_name: "client-output-buffer-limit-slave-hard-limit",
3681
+ # source: "system",
3682
+ # },
3683
+ # {
3684
+ # allowed_values: "0-",
3685
+ # cache_node_type_specific_values: [
3686
+ # {
3687
+ # cache_node_type: "cache.c1.xlarge",
3688
+ # value: "650117120",
3689
+ # },
3690
+ # {
3691
+ # cache_node_type: "cache.m1.large",
3692
+ # value: "702545920",
3693
+ # },
3694
+ # {
3695
+ # cache_node_type: "cache.m1.medium",
3696
+ # value: "309329920",
3697
+ # },
3698
+ # {
3699
+ # cache_node_type: "cache.m1.small",
3700
+ # value: "94371840",
3701
+ # },
3702
+ # {
3703
+ # cache_node_type: "cache.m1.xlarge",
3704
+ # value: "1488977920",
3705
+ # },
3706
+ # {
3707
+ # cache_node_type: "cache.m2.2xlarge",
3708
+ # value: "3502243840",
3709
+ # },
3710
+ # {
3711
+ # cache_node_type: "cache.m2.4xlarge",
3712
+ # value: "7088373760",
3713
+ # },
3714
+ # {
3715
+ # cache_node_type: "cache.m2.xlarge",
3716
+ # value: "1709178880",
3717
+ # },
3718
+ # {
3719
+ # cache_node_type: "cache.m3.2xlarge",
3720
+ # value: "2998927360",
3721
+ # },
3722
+ # {
3723
+ # cache_node_type: "cache.m3.large",
3724
+ # value: "650117120",
3725
+ # },
3726
+ # {
3727
+ # cache_node_type: "cache.m3.medium",
3728
+ # value: "309329920",
3729
+ # },
3730
+ # {
3731
+ # cache_node_type: "cache.m3.xlarge",
3732
+ # value: "1426063360",
3733
+ # },
3734
+ # {
3735
+ # cache_node_type: "cache.m4.10xlarge",
3736
+ # value: "16604761424",
3737
+ # },
3738
+ # {
3739
+ # cache_node_type: "cache.m4.2xlarge",
3740
+ # value: "3188912636",
3741
+ # },
3742
+ # {
3743
+ # cache_node_type: "cache.m4.4xlarge",
3744
+ # value: "6525729063",
3745
+ # },
3746
+ # {
3747
+ # cache_node_type: "cache.m4.large",
3748
+ # value: "689259315",
3749
+ # },
3750
+ # {
3751
+ # cache_node_type: "cache.m4.xlarge",
3752
+ # value: "1532850176",
3753
+ # },
3754
+ # {
3755
+ # cache_node_type: "cache.r3.2xlarge",
3756
+ # value: "6081740800",
3757
+ # },
3758
+ # {
3759
+ # cache_node_type: "cache.r3.4xlarge",
3760
+ # value: "12268339200",
3761
+ # },
3762
+ # {
3763
+ # cache_node_type: "cache.r3.8xlarge",
3764
+ # value: "24536678400",
3765
+ # },
3766
+ # {
3767
+ # cache_node_type: "cache.r3.large",
3768
+ # value: "1468006400",
3769
+ # },
3770
+ # {
3771
+ # cache_node_type: "cache.r3.xlarge",
3772
+ # value: "3040870400",
3773
+ # },
3774
+ # {
3775
+ # cache_node_type: "cache.t1.micro",
3776
+ # value: "14260633",
3777
+ # },
3778
+ # {
3779
+ # cache_node_type: "cache.t2.medium",
3780
+ # value: "346134937",
3781
+ # },
3782
+ # {
3783
+ # cache_node_type: "cache.t2.micro",
3784
+ # value: "58195968",
3785
+ # },
3786
+ # {
3787
+ # cache_node_type: "cache.t2.small",
3788
+ # value: "166513868",
3789
+ # },
3790
+ # ],
3791
+ # change_type: "immediate",
3792
+ # data_type: "integer",
3793
+ # description: "Slave client output buffer soft limit in bytes.",
3794
+ # is_modifiable: false,
3795
+ # minimum_engine_version: "2.8.6",
3796
+ # parameter_name: "client-output-buffer-limit-slave-soft-limit",
3797
+ # source: "system",
3798
+ # },
3799
+ # {
3800
+ # allowed_values: "0-",
3801
+ # cache_node_type_specific_values: [
3802
+ # {
3803
+ # cache_node_type: "cache.c1.xlarge",
3804
+ # value: "6501171200",
3805
+ # },
3806
+ # {
3807
+ # cache_node_type: "cache.m1.large",
3808
+ # value: "7025459200",
3809
+ # },
3810
+ # {
3811
+ # cache_node_type: "cache.m1.medium",
3812
+ # value: "3093299200",
3813
+ # },
3814
+ # {
3815
+ # cache_node_type: "cache.m1.small",
3816
+ # value: "943718400",
3817
+ # },
3818
+ # {
3819
+ # cache_node_type: "cache.m1.xlarge",
3820
+ # value: "14889779200",
3821
+ # },
3822
+ # {
3823
+ # cache_node_type: "cache.m2.2xlarge",
3824
+ # value: "35022438400",
3825
+ # },
3826
+ # {
3827
+ # cache_node_type: "cache.m2.4xlarge",
3828
+ # value: "70883737600",
3829
+ # },
3830
+ # {
3831
+ # cache_node_type: "cache.m2.xlarge",
3832
+ # value: "17091788800",
3833
+ # },
3834
+ # {
3835
+ # cache_node_type: "cache.m3.2xlarge",
3836
+ # value: "29989273600",
3837
+ # },
3838
+ # {
3839
+ # cache_node_type: "cache.m3.large",
3840
+ # value: "6501171200",
3841
+ # },
3842
+ # {
3843
+ # cache_node_type: "cache.m3.medium",
3844
+ # value: "2988441600",
3845
+ # },
3846
+ # {
3847
+ # cache_node_type: "cache.m3.xlarge",
3848
+ # value: "14260633600",
3849
+ # },
3850
+ # {
3851
+ # cache_node_type: "cache.m4.10xlarge",
3852
+ # value: "166047614239",
3853
+ # },
3854
+ # {
3855
+ # cache_node_type: "cache.m4.2xlarge",
3856
+ # value: "31889126359",
3857
+ # },
3858
+ # {
3859
+ # cache_node_type: "cache.m4.4xlarge",
3860
+ # value: "65257290629",
3861
+ # },
3862
+ # {
3863
+ # cache_node_type: "cache.m4.large",
3864
+ # value: "6892593152",
3865
+ # },
3866
+ # {
3867
+ # cache_node_type: "cache.m4.xlarge",
3868
+ # value: "15328501760",
3869
+ # },
3870
+ # {
3871
+ # cache_node_type: "cache.r3.2xlarge",
3872
+ # value: "62495129600",
3873
+ # },
3874
+ # {
3875
+ # cache_node_type: "cache.r3.4xlarge",
3876
+ # value: "126458265600",
3877
+ # },
3878
+ # {
3879
+ # cache_node_type: "cache.r3.8xlarge",
3880
+ # value: "254384537600",
3881
+ # },
3882
+ # {
3883
+ # cache_node_type: "cache.r3.large",
3884
+ # value: "14470348800",
3885
+ # },
3886
+ # {
3887
+ # cache_node_type: "cache.r3.xlarge",
3888
+ # value: "30513561600",
3889
+ # },
3890
+ # {
3891
+ # cache_node_type: "cache.t1.micro",
3892
+ # value: "142606336",
3893
+ # },
3894
+ # {
3895
+ # cache_node_type: "cache.t2.medium",
3896
+ # value: "3461349376",
3897
+ # },
3898
+ # {
3899
+ # cache_node_type: "cache.t2.micro",
3900
+ # value: "581959680",
3901
+ # },
3902
+ # {
3903
+ # cache_node_type: "cache.t2.small",
3904
+ # value: "1665138688",
3905
+ # },
3906
+ # ],
3907
+ # change_type: "immediate",
3908
+ # data_type: "integer",
3909
+ # description: "The maximum configurable amount of memory to use to store items, in bytes.",
3910
+ # is_modifiable: false,
3911
+ # minimum_engine_version: "2.8.6",
3912
+ # parameter_name: "maxmemory",
3913
+ # source: "system",
3914
+ # },
3915
+ # ],
3916
+ # cache_parameter_group_family: "redis2.8",
3917
+ # marker: "bWluLXNsYXZlcy10by13cml0ZQ==",
3918
+ # parameters: [
3919
+ # {
3920
+ # allowed_values: "yes,no",
3921
+ # change_type: "requires-reboot",
3922
+ # data_type: "string",
3923
+ # description: "Apply rehashing or not.",
3924
+ # is_modifiable: true,
3925
+ # minimum_engine_version: "2.8.6",
3926
+ # parameter_name: "activerehashing",
3927
+ # parameter_value: "yes",
3928
+ # source: "system",
3929
+ # },
3930
+ # {
3931
+ # allowed_values: "always,everysec,no",
3932
+ # change_type: "immediate",
3933
+ # data_type: "string",
3934
+ # description: "fsync policy for AOF persistence",
3935
+ # is_modifiable: true,
3936
+ # minimum_engine_version: "2.8.6",
3937
+ # parameter_name: "appendfsync",
3938
+ # parameter_value: "everysec",
3939
+ # source: "system",
3940
+ # },
3941
+ # {
3942
+ # allowed_values: "yes,no",
3943
+ # change_type: "immediate",
3944
+ # data_type: "string",
3945
+ # description: "Enable Redis persistence.",
3946
+ # is_modifiable: true,
3947
+ # minimum_engine_version: "2.8.6",
3948
+ # parameter_name: "appendonly",
3949
+ # parameter_value: "no",
3950
+ # source: "system",
3951
+ # },
3952
+ # {
3953
+ # allowed_values: "0-",
3954
+ # change_type: "immediate",
3955
+ # data_type: "integer",
3956
+ # description: "Normal client output buffer hard limit in bytes.",
3957
+ # is_modifiable: true,
3958
+ # minimum_engine_version: "2.8.6",
3959
+ # parameter_name: "client-output-buffer-limit-normal-hard-limit",
3960
+ # parameter_value: "0",
3961
+ # source: "system",
3962
+ # },
3963
+ # {
3964
+ # allowed_values: "0-",
3965
+ # change_type: "immediate",
3966
+ # data_type: "integer",
3967
+ # description: "Normal client output buffer soft limit in bytes.",
3968
+ # is_modifiable: true,
3969
+ # minimum_engine_version: "2.8.6",
3970
+ # parameter_name: "client-output-buffer-limit-normal-soft-limit",
3971
+ # parameter_value: "0",
3972
+ # source: "system",
3973
+ # },
3974
+ # {
3975
+ # allowed_values: "0-",
3976
+ # change_type: "immediate",
3977
+ # data_type: "integer",
3978
+ # description: "Normal client output buffer soft limit in seconds.",
3979
+ # is_modifiable: true,
3980
+ # minimum_engine_version: "2.8.6",
3981
+ # parameter_name: "client-output-buffer-limit-normal-soft-seconds",
3982
+ # parameter_value: "0",
3983
+ # source: "system",
3984
+ # },
3985
+ # {
3986
+ # allowed_values: "0-",
3987
+ # change_type: "immediate",
3988
+ # data_type: "integer",
3989
+ # description: "Pubsub client output buffer hard limit in bytes.",
3990
+ # is_modifiable: true,
3991
+ # minimum_engine_version: "2.8.6",
3992
+ # parameter_name: "client-output-buffer-limit-pubsub-hard-limit",
3993
+ # parameter_value: "33554432",
3994
+ # source: "system",
3995
+ # },
3996
+ # {
3997
+ # allowed_values: "0-",
3998
+ # change_type: "immediate",
3999
+ # data_type: "integer",
4000
+ # description: "Pubsub client output buffer soft limit in bytes.",
4001
+ # is_modifiable: true,
4002
+ # minimum_engine_version: "2.8.6",
4003
+ # parameter_name: "client-output-buffer-limit-pubsub-soft-limit",
4004
+ # parameter_value: "8388608",
4005
+ # source: "system",
4006
+ # },
4007
+ # {
4008
+ # allowed_values: "0-",
4009
+ # change_type: "immediate",
4010
+ # data_type: "integer",
4011
+ # description: "Pubsub client output buffer soft limit in seconds.",
4012
+ # is_modifiable: true,
4013
+ # minimum_engine_version: "2.8.6",
4014
+ # parameter_name: "client-output-buffer-limit-pubsub-soft-seconds",
4015
+ # parameter_value: "60",
4016
+ # source: "system",
4017
+ # },
4018
+ # {
4019
+ # allowed_values: "0-",
4020
+ # change_type: "immediate",
4021
+ # data_type: "integer",
4022
+ # description: "Slave client output buffer soft limit in seconds.",
4023
+ # is_modifiable: false,
4024
+ # minimum_engine_version: "2.8.6",
4025
+ # parameter_name: "client-output-buffer-limit-slave-soft-seconds",
4026
+ # parameter_value: "60",
4027
+ # source: "system",
4028
+ # },
4029
+ # {
4030
+ # allowed_values: "yes,no",
4031
+ # change_type: "immediate",
4032
+ # data_type: "string",
4033
+ # description: "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.",
4034
+ # is_modifiable: true,
4035
+ # minimum_engine_version: "2.8.23",
4036
+ # parameter_name: "close-on-slave-write",
4037
+ # parameter_value: "yes",
4038
+ # source: "system",
4039
+ # },
4040
+ # {
4041
+ # allowed_values: "1-1200000",
4042
+ # change_type: "requires-reboot",
4043
+ # data_type: "integer",
4044
+ # description: "Set the number of databases.",
4045
+ # is_modifiable: true,
4046
+ # minimum_engine_version: "2.8.6",
4047
+ # parameter_name: "databases",
4048
+ # parameter_value: "16",
4049
+ # source: "system",
4050
+ # },
4051
+ # {
4052
+ # allowed_values: "0-",
4053
+ # change_type: "immediate",
4054
+ # data_type: "integer",
4055
+ # description: "The maximum number of hash entries in order for the dataset to be compressed.",
4056
+ # is_modifiable: true,
4057
+ # minimum_engine_version: "2.8.6",
4058
+ # parameter_name: "hash-max-ziplist-entries",
4059
+ # parameter_value: "512",
4060
+ # source: "system",
4061
+ # },
4062
+ # {
4063
+ # allowed_values: "0-",
4064
+ # change_type: "immediate",
4065
+ # data_type: "integer",
4066
+ # description: "The threshold of biggest hash entries in order for the dataset to be compressed.",
4067
+ # is_modifiable: true,
4068
+ # minimum_engine_version: "2.8.6",
4069
+ # parameter_name: "hash-max-ziplist-value",
4070
+ # parameter_value: "64",
4071
+ # source: "system",
4072
+ # },
4073
+ # {
4074
+ # allowed_values: "0-",
4075
+ # change_type: "immediate",
4076
+ # data_type: "integer",
4077
+ # description: "The maximum number of list entries in order for the dataset to be compressed.",
4078
+ # is_modifiable: true,
4079
+ # minimum_engine_version: "2.8.6",
4080
+ # parameter_name: "list-max-ziplist-entries",
4081
+ # parameter_value: "512",
4082
+ # source: "system",
4083
+ # },
4084
+ # {
4085
+ # allowed_values: "0-",
4086
+ # change_type: "immediate",
4087
+ # data_type: "integer",
4088
+ # description: "The threshold of biggest list entries in order for the dataset to be compressed.",
4089
+ # is_modifiable: true,
4090
+ # minimum_engine_version: "2.8.6",
4091
+ # parameter_name: "list-max-ziplist-value",
4092
+ # parameter_value: "64",
4093
+ # source: "system",
4094
+ # },
4095
+ # {
4096
+ # allowed_values: "5000",
4097
+ # change_type: "immediate",
4098
+ # data_type: "integer",
4099
+ # description: "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.",
4100
+ # is_modifiable: false,
4101
+ # minimum_engine_version: "2.8.6",
4102
+ # parameter_name: "lua-time-limit",
4103
+ # parameter_value: "5000",
4104
+ # source: "system",
4105
+ # },
4106
+ # {
4107
+ # allowed_values: "1-65000",
4108
+ # change_type: "requires-reboot",
4109
+ # data_type: "integer",
4110
+ # description: "The maximum number of Redis clients.",
4111
+ # is_modifiable: false,
4112
+ # minimum_engine_version: "2.8.6",
4113
+ # parameter_name: "maxclients",
4114
+ # parameter_value: "65000",
4115
+ # source: "system",
4116
+ # },
4117
+ # {
4118
+ # allowed_values: "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction",
4119
+ # change_type: "immediate",
4120
+ # data_type: "string",
4121
+ # description: "Max memory policy.",
4122
+ # is_modifiable: true,
4123
+ # minimum_engine_version: "2.8.6",
4124
+ # parameter_name: "maxmemory-policy",
4125
+ # parameter_value: "volatile-lru",
4126
+ # source: "system",
4127
+ # },
4128
+ # {
4129
+ # allowed_values: "1-",
4130
+ # change_type: "immediate",
4131
+ # data_type: "integer",
4132
+ # description: "Max memory samples.",
4133
+ # is_modifiable: true,
4134
+ # minimum_engine_version: "2.8.6",
4135
+ # parameter_name: "maxmemory-samples",
4136
+ # parameter_value: "3",
4137
+ # source: "system",
4138
+ # },
4139
+ # {
4140
+ # allowed_values: "0-",
4141
+ # change_type: "immediate",
4142
+ # data_type: "integer",
4143
+ # description: "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.",
4144
+ # is_modifiable: true,
4145
+ # minimum_engine_version: "2.8.6",
4146
+ # parameter_name: "min-slaves-max-lag",
4147
+ # parameter_value: "10",
4148
+ # source: "system",
4149
+ # },
4150
+ # {
4151
+ # allowed_values: "0-",
4152
+ # change_type: "immediate",
4153
+ # data_type: "integer",
4154
+ # description: "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.",
4155
+ # is_modifiable: true,
4156
+ # minimum_engine_version: "2.8.6",
4157
+ # parameter_name: "min-slaves-to-write",
4158
+ # parameter_value: "0",
4159
+ # source: "system",
4160
+ # },
4161
+ # ],
4162
+ # },
4163
+ # }
4164
+ #
2324
4165
  # @example Request syntax with placeholder values
2325
4166
  #
2326
4167
  # resp = client.describe_engine_default_parameters({
@@ -2418,6 +4259,104 @@ module Aws::ElastiCache
2418
4259
  # * {Types::EventsMessage#marker #marker} => String
2419
4260
  # * {Types::EventsMessage#events #events} => Array<Types::Event>
2420
4261
  #
4262
+ #
4263
+ # @example Example: DescribeEvents
4264
+ #
4265
+ # # Describes all the cache-cluster events for the past 120 minutes.
4266
+ #
4267
+ # resp = client.describe_events({
4268
+ # duration: 360,
4269
+ # source_type: "cache-cluster",
4270
+ # })
4271
+ #
4272
+ # resp.to_h outputs the following:
4273
+ # {
4274
+ # events: [
4275
+ # {
4276
+ # date: Time.parse("2016-12-22T16:27:56.088Z"),
4277
+ # message: "Added cache node 0001 in availability zone us-east-1e",
4278
+ # source_identifier: "redis-cluster",
4279
+ # source_type: "cache-cluster",
4280
+ # },
4281
+ # {
4282
+ # date: Time.parse("2016-12-22T16:27:56.078Z"),
4283
+ # message: "Cache cluster created",
4284
+ # source_identifier: "redis-cluster",
4285
+ # source_type: "cache-cluster",
4286
+ # },
4287
+ # {
4288
+ # date: Time.parse("2016-12-22T16:05:17.326Z"),
4289
+ # message: "Added cache node 0002 in availability zone us-east-1c",
4290
+ # source_identifier: "my-memcached2",
4291
+ # source_type: "cache-cluster",
4292
+ # },
4293
+ # {
4294
+ # date: Time.parse("2016-12-22T16:05:17.323Z"),
4295
+ # message: "Added cache node 0001 in availability zone us-east-1e",
4296
+ # source_identifier: "my-memcached2",
4297
+ # source_type: "cache-cluster",
4298
+ # },
4299
+ # {
4300
+ # date: Time.parse("2016-12-22T16:05:17.314Z"),
4301
+ # message: "Cache cluster created",
4302
+ # source_identifier: "my-memcached2",
4303
+ # source_type: "cache-cluster",
4304
+ # },
4305
+ # ],
4306
+ # marker: "",
4307
+ # }
4308
+ #
4309
+ # @example Example: DescribeEvents
4310
+ #
4311
+ # # Describes all the replication-group events from 3:00P to 5:00P on November 11, 2016.
4312
+ #
4313
+ # resp = client.describe_events({
4314
+ # start_time: Time.parse("2016-12-22T15:00:00.000Z"),
4315
+ # })
4316
+ #
4317
+ # resp.to_h outputs the following:
4318
+ # {
4319
+ # events: [
4320
+ # {
4321
+ # date: Time.parse("2016-12-22T21:35:46.674Z"),
4322
+ # message: "Snapshot succeeded for snapshot with ID 'cr-bkup' of replication group with ID 'clustered-redis'",
4323
+ # source_identifier: "clustered-redis-0001-001",
4324
+ # source_type: "cache-cluster",
4325
+ # },
4326
+ # {
4327
+ # date: Time.parse("2016-12-22T16:27:56.088Z"),
4328
+ # message: "Added cache node 0001 in availability zone us-east-1e",
4329
+ # source_identifier: "redis-cluster",
4330
+ # source_type: "cache-cluster",
4331
+ # },
4332
+ # {
4333
+ # date: Time.parse("2016-12-22T16:27:56.078Z"),
4334
+ # message: "Cache cluster created",
4335
+ # source_identifier: "redis-cluster",
4336
+ # source_type: "cache-cluster",
4337
+ # },
4338
+ # {
4339
+ # date: Time.parse("2016-12-22T16:05:17.326Z"),
4340
+ # message: "Added cache node 0002 in availability zone us-east-1c",
4341
+ # source_identifier: "my-memcached2",
4342
+ # source_type: "cache-cluster",
4343
+ # },
4344
+ # {
4345
+ # date: Time.parse("2016-12-22T16:05:17.323Z"),
4346
+ # message: "Added cache node 0001 in availability zone us-east-1e",
4347
+ # source_identifier: "my-memcached2",
4348
+ # source_type: "cache-cluster",
4349
+ # },
4350
+ # {
4351
+ # date: Time.parse("2016-12-22T16:05:17.314Z"),
4352
+ # message: "Cache cluster created",
4353
+ # source_identifier: "my-memcached2",
4354
+ # source_type: "cache-cluster",
4355
+ # },
4356
+ # ],
4357
+ # marker: "",
4358
+ # }
4359
+ #
2421
4360
  # @example Request syntax with placeholder values
2422
4361
  #
2423
4362
  # resp = client.describe_events({
@@ -2484,6 +4423,69 @@ module Aws::ElastiCache
2484
4423
  # * {Types::ReplicationGroupMessage#marker #marker} => String
2485
4424
  # * {Types::ReplicationGroupMessage#replication_groups #replication_groups} => Array<Types::ReplicationGroup>
2486
4425
  #
4426
+ #
4427
+ # @example Example: DescribeReplicationGroups
4428
+ #
4429
+ # # Returns information about the replication group myreplgroup.
4430
+ #
4431
+ # resp = client.describe_replication_groups({
4432
+ # })
4433
+ #
4434
+ # resp.to_h outputs the following:
4435
+ # {
4436
+ # marker: "",
4437
+ # replication_groups: [
4438
+ # {
4439
+ # automatic_failover: "enabled",
4440
+ # description: "Test cluster",
4441
+ # member_clusters: [
4442
+ # "clustered-redis-0001-001",
4443
+ # "clustered-redis-0001-002",
4444
+ # "clustered-redis-0002-001",
4445
+ # "clustered-redis-0002-002",
4446
+ # ],
4447
+ # node_groups: [
4448
+ # {
4449
+ # node_group_id: "0001",
4450
+ # node_group_members: [
4451
+ # {
4452
+ # cache_cluster_id: "clustered-redis-0001-001",
4453
+ # cache_node_id: "0001",
4454
+ # preferred_availability_zone: "us-east-1e",
4455
+ # },
4456
+ # {
4457
+ # cache_cluster_id: "clustered-redis-0001-002",
4458
+ # cache_node_id: "0001",
4459
+ # preferred_availability_zone: "us-east-1c",
4460
+ # },
4461
+ # ],
4462
+ # status: "available",
4463
+ # },
4464
+ # {
4465
+ # node_group_id: "0002",
4466
+ # node_group_members: [
4467
+ # {
4468
+ # cache_cluster_id: "clustered-redis-0002-001",
4469
+ # cache_node_id: "0001",
4470
+ # preferred_availability_zone: "us-east-1c",
4471
+ # },
4472
+ # {
4473
+ # cache_cluster_id: "clustered-redis-0002-002",
4474
+ # cache_node_id: "0001",
4475
+ # preferred_availability_zone: "us-east-1b",
4476
+ # },
4477
+ # ],
4478
+ # status: "available",
4479
+ # },
4480
+ # ],
4481
+ # pending_modified_values: {
4482
+ # },
4483
+ # replication_group_id: "clustered-redis",
4484
+ # status: "available",
4485
+ # },
4486
+ # ],
4487
+ # }
4488
+ #
2487
4489
  # @example Request syntax with placeholder values
2488
4490
  #
2489
4491
  # resp = client.describe_replication_groups({
@@ -2633,6 +4635,15 @@ module Aws::ElastiCache
2633
4635
  # * {Types::ReservedCacheNodeMessage#marker #marker} => String
2634
4636
  # * {Types::ReservedCacheNodeMessage#reserved_cache_nodes #reserved_cache_nodes} => Array<Types::ReservedCacheNode>
2635
4637
  #
4638
+ #
4639
+ # @example Example: DescribeReservedCacheNodes
4640
+ #
4641
+ # # Returns information about reserved cache nodes for this account, or about a specified reserved cache node. If the account has no reserved cache nodes, the operation returns an empty list, as shown here.
4642
+ #
4643
+ # resp = client.describe_reserved_cache_nodes({
4644
+ # max_records: 25,
4645
+ # })
4646
+ #
2636
4647
  # @example Request syntax with placeholder values
2637
4648
  #
2638
4649
  # resp = client.describe_reserved_cache_nodes({
@@ -2771,6 +4782,326 @@ module Aws::ElastiCache
2771
4782
  # * {Types::ReservedCacheNodesOfferingMessage#marker #marker} => String
2772
4783
  # * {Types::ReservedCacheNodesOfferingMessage#reserved_cache_nodes_offerings #reserved_cache_nodes_offerings} => Array<Types::ReservedCacheNodesOffering>
2773
4784
  #
4785
+ #
4786
+ # @example Example: DescribeReseredCacheNodeOfferings
4787
+ #
4788
+ # # Lists available reserved cache node offerings.
4789
+ #
4790
+ # resp = client.describe_reserved_cache_nodes_offerings({
4791
+ # max_records: 20,
4792
+ # })
4793
+ #
4794
+ # resp.to_h outputs the following:
4795
+ # {
4796
+ # marker: "1ef01f5b-433f-94ff-a530-61a56bfc8e7a",
4797
+ # reserved_cache_nodes_offerings: [
4798
+ # {
4799
+ # cache_node_type: "cache.m1.small",
4800
+ # duration: 94608000,
4801
+ # fixed_price: 157.0,
4802
+ # offering_type: "Medium Utilization",
4803
+ # product_description: "memcached",
4804
+ # recurring_charges: [
4805
+ # ],
4806
+ # reserved_cache_nodes_offering_id: "0167633d-37f6-4222-b872-b1f22eb79ba4",
4807
+ # usage_price: 0.017,
4808
+ # },
4809
+ # {
4810
+ # cache_node_type: "cache.m4.xlarge",
4811
+ # duration: 94608000,
4812
+ # fixed_price: 1248.0,
4813
+ # offering_type: "Heavy Utilization",
4814
+ # product_description: "redis",
4815
+ # recurring_charges: [
4816
+ # {
4817
+ # recurring_charge_amount: 0.077,
4818
+ # recurring_charge_frequency: "Hourly",
4819
+ # },
4820
+ # ],
4821
+ # reserved_cache_nodes_offering_id: "02c04e13-baca-4e71-9ceb-620eed94827d",
4822
+ # usage_price: 0.0,
4823
+ # },
4824
+ # {
4825
+ # cache_node_type: "cache.m2.4xlarge",
4826
+ # duration: 94608000,
4827
+ # fixed_price: 2381.0,
4828
+ # offering_type: "Medium Utilization",
4829
+ # product_description: "memcached",
4830
+ # recurring_charges: [
4831
+ # ],
4832
+ # reserved_cache_nodes_offering_id: "02e1755e-76e8-48e3-8d82-820a5726a458",
4833
+ # usage_price: 0.276,
4834
+ # },
4835
+ # {
4836
+ # cache_node_type: "cache.m1.small",
4837
+ # duration: 94608000,
4838
+ # fixed_price: 188.0,
4839
+ # offering_type: "Heavy Utilization",
4840
+ # product_description: "redis",
4841
+ # recurring_charges: [
4842
+ # {
4843
+ # recurring_charge_amount: 0.013,
4844
+ # recurring_charge_frequency: "Hourly",
4845
+ # },
4846
+ # ],
4847
+ # reserved_cache_nodes_offering_id: "03315215-7b87-421a-a3dd-785021e4113f",
4848
+ # usage_price: 0.0,
4849
+ # },
4850
+ # {
4851
+ # cache_node_type: "cache.m4.10xlarge",
4852
+ # duration: 31536000,
4853
+ # fixed_price: 6158.0,
4854
+ # offering_type: "Heavy Utilization",
4855
+ # product_description: "redis",
4856
+ # recurring_charges: [
4857
+ # {
4858
+ # recurring_charge_amount: 1.125,
4859
+ # recurring_charge_frequency: "Hourly",
4860
+ # },
4861
+ # ],
4862
+ # reserved_cache_nodes_offering_id: "05ffbb44-2ace-4476-a2a5-8ec99f866fb3",
4863
+ # usage_price: 0.0,
4864
+ # },
4865
+ # {
4866
+ # cache_node_type: "cache.m1.small",
4867
+ # duration: 31536000,
4868
+ # fixed_price: 101.0,
4869
+ # offering_type: "Medium Utilization",
4870
+ # product_description: "redis",
4871
+ # recurring_charges: [
4872
+ # ],
4873
+ # reserved_cache_nodes_offering_id: "065c71ae-4a4e-4f1e-bebf-37525f4c6cb2",
4874
+ # usage_price: 0.023,
4875
+ # },
4876
+ # {
4877
+ # cache_node_type: "cache.m1.medium",
4878
+ # duration: 94608000,
4879
+ # fixed_price: 314.0,
4880
+ # offering_type: "Medium Utilization",
4881
+ # product_description: "memcached",
4882
+ # recurring_charges: [
4883
+ # ],
4884
+ # reserved_cache_nodes_offering_id: "06774b12-7f5e-48c1-907a-f286c63f327d",
4885
+ # usage_price: 0.034,
4886
+ # },
4887
+ # {
4888
+ # cache_node_type: "cache.m2.xlarge",
4889
+ # duration: 31536000,
4890
+ # fixed_price: 163.0,
4891
+ # offering_type: "Light Utilization",
4892
+ # product_description: "memcached",
4893
+ # recurring_charges: [
4894
+ # ],
4895
+ # reserved_cache_nodes_offering_id: "0924ac6b-847f-4761-ba6b-4290b2adf719",
4896
+ # usage_price: 0.137,
4897
+ # },
4898
+ # {
4899
+ # cache_node_type: "cache.m2.xlarge",
4900
+ # duration: 94608000,
4901
+ # fixed_price: 719.0,
4902
+ # offering_type: "Heavy Utilization",
4903
+ # product_description: "redis",
4904
+ # recurring_charges: [
4905
+ # {
4906
+ # recurring_charge_amount: 0.049,
4907
+ # recurring_charge_frequency: "Hourly",
4908
+ # },
4909
+ # ],
4910
+ # reserved_cache_nodes_offering_id: "09eeb126-69b6-4d3f-8f94-ca3510629f53",
4911
+ # usage_price: 0.0,
4912
+ # },
4913
+ # {
4914
+ # cache_node_type: "cache.r3.2xlarge",
4915
+ # duration: 94608000,
4916
+ # fixed_price: 4132.0,
4917
+ # offering_type: "Heavy Utilization",
4918
+ # product_description: "redis",
4919
+ # recurring_charges: [
4920
+ # {
4921
+ # recurring_charge_amount: 0.182,
4922
+ # recurring_charge_frequency: "Hourly",
4923
+ # },
4924
+ # ],
4925
+ # reserved_cache_nodes_offering_id: "0a516ad8-557f-4310-9dd0-2448c2ff4d62",
4926
+ # usage_price: 0.0,
4927
+ # },
4928
+ # {
4929
+ # cache_node_type: "cache.c1.xlarge",
4930
+ # duration: 94608000,
4931
+ # fixed_price: 875.0,
4932
+ # offering_type: "Light Utilization",
4933
+ # product_description: "memcached",
4934
+ # recurring_charges: [
4935
+ # ],
4936
+ # reserved_cache_nodes_offering_id: "0b0c1cc5-2177-4150-95d7-c67ec34dcb19",
4937
+ # usage_price: 0.363,
4938
+ # },
4939
+ # {
4940
+ # cache_node_type: "cache.m4.10xlarge",
4941
+ # duration: 94608000,
4942
+ # fixed_price: 12483.0,
4943
+ # offering_type: "Heavy Utilization",
4944
+ # product_description: "memcached",
4945
+ # recurring_charges: [
4946
+ # {
4947
+ # recurring_charge_amount: 0.76,
4948
+ # recurring_charge_frequency: "Hourly",
4949
+ # },
4950
+ # ],
4951
+ # reserved_cache_nodes_offering_id: "0c2b139b-1cff-43d0-8fba-0c753f9b1950",
4952
+ # usage_price: 0.0,
4953
+ # },
4954
+ # {
4955
+ # cache_node_type: "cache.c1.xlarge",
4956
+ # duration: 31536000,
4957
+ # fixed_price: 1620.0,
4958
+ # offering_type: "Heavy Utilization",
4959
+ # product_description: "memcached",
4960
+ # recurring_charges: [
4961
+ # {
4962
+ # recurring_charge_amount: 0.207,
4963
+ # recurring_charge_frequency: "Hourly",
4964
+ # },
4965
+ # ],
4966
+ # reserved_cache_nodes_offering_id: "0c52115b-38cb-47a2-8dbc-e02e40b6a13f",
4967
+ # usage_price: 0.0,
4968
+ # },
4969
+ # {
4970
+ # cache_node_type: "cache.m2.4xlarge",
4971
+ # duration: 94608000,
4972
+ # fixed_price: 2381.0,
4973
+ # offering_type: "Medium Utilization",
4974
+ # product_description: "redis",
4975
+ # recurring_charges: [
4976
+ # ],
4977
+ # reserved_cache_nodes_offering_id: "12fcb19c-5416-4e1d-934f-28f1e2cb8599",
4978
+ # usage_price: 0.276,
4979
+ # },
4980
+ # {
4981
+ # cache_node_type: "cache.m4.xlarge",
4982
+ # duration: 31536000,
4983
+ # fixed_price: 616.0,
4984
+ # offering_type: "Heavy Utilization",
4985
+ # product_description: "memcached",
4986
+ # recurring_charges: [
4987
+ # {
4988
+ # recurring_charge_amount: 0.112,
4989
+ # recurring_charge_frequency: "Hourly",
4990
+ # },
4991
+ # ],
4992
+ # reserved_cache_nodes_offering_id: "13af20ad-914d-4d8b-9763-fa2e565f3549",
4993
+ # usage_price: 0.0,
4994
+ # },
4995
+ # {
4996
+ # cache_node_type: "cache.r3.8xlarge",
4997
+ # duration: 94608000,
4998
+ # fixed_price: 16528.0,
4999
+ # offering_type: "Heavy Utilization",
5000
+ # product_description: "memcached",
5001
+ # recurring_charges: [
5002
+ # {
5003
+ # recurring_charge_amount: 0.729,
5004
+ # recurring_charge_frequency: "Hourly",
5005
+ # },
5006
+ # ],
5007
+ # reserved_cache_nodes_offering_id: "14da3d3f-b526-4dbf-b09b-355578b2a576",
5008
+ # usage_price: 0.0,
5009
+ # },
5010
+ # {
5011
+ # cache_node_type: "cache.m1.medium",
5012
+ # duration: 94608000,
5013
+ # fixed_price: 140.0,
5014
+ # offering_type: "Light Utilization",
5015
+ # product_description: "redis",
5016
+ # recurring_charges: [
5017
+ # ],
5018
+ # reserved_cache_nodes_offering_id: "15d7018c-71fb-4717-8409-4bdcdca18da7",
5019
+ # usage_price: 0.052,
5020
+ # },
5021
+ # {
5022
+ # cache_node_type: "cache.m4.4xlarge",
5023
+ # duration: 94608000,
5024
+ # fixed_price: 4993.0,
5025
+ # offering_type: "Heavy Utilization",
5026
+ # product_description: "memcached",
5027
+ # recurring_charges: [
5028
+ # {
5029
+ # recurring_charge_amount: 0.304,
5030
+ # recurring_charge_frequency: "Hourly",
5031
+ # },
5032
+ # ],
5033
+ # reserved_cache_nodes_offering_id: "1ae7ec5f-a76e-49b6-822b-629b1768a13a",
5034
+ # usage_price: 0.0,
5035
+ # },
5036
+ # {
5037
+ # cache_node_type: "cache.m3.2xlarge",
5038
+ # duration: 31536000,
5039
+ # fixed_price: 1772.0,
5040
+ # offering_type: "Heavy Utilization",
5041
+ # product_description: "redis",
5042
+ # recurring_charges: [
5043
+ # {
5044
+ # recurring_charge_amount: 0.25,
5045
+ # recurring_charge_frequency: "Hourly",
5046
+ # },
5047
+ # ],
5048
+ # reserved_cache_nodes_offering_id: "1d31242b-3925-48d1-b882-ce03204e6013",
5049
+ # usage_price: 0.0,
5050
+ # },
5051
+ # {
5052
+ # cache_node_type: "cache.t1.micro",
5053
+ # duration: 31536000,
5054
+ # fixed_price: 54.0,
5055
+ # offering_type: "Medium Utilization",
5056
+ # product_description: "memcached",
5057
+ # recurring_charges: [
5058
+ # ],
5059
+ # reserved_cache_nodes_offering_id: "1ef01f5b-94ff-433f-a530-61a56bfc8e7a",
5060
+ # usage_price: 0.008,
5061
+ # },
5062
+ # ],
5063
+ # }
5064
+ #
5065
+ # @example Example: DescribeReseredCacheNodeOfferings
5066
+ #
5067
+ # # Lists available reserved cache node offerings for cache.r3.large nodes with a 3 year commitment.
5068
+ #
5069
+ # resp = client.describe_reserved_cache_nodes_offerings({
5070
+ # cache_node_type: "cache.r3.large",
5071
+ # duration: "3",
5072
+ # max_records: 25,
5073
+ # offering_type: "Light Utilization",
5074
+ # reserved_cache_nodes_offering_id: "",
5075
+ # })
5076
+ #
5077
+ # resp.to_h outputs the following:
5078
+ # {
5079
+ # marker: "",
5080
+ # reserved_cache_nodes_offerings: [
5081
+ # ],
5082
+ # }
5083
+ #
5084
+ # @example Example: DescribeReseredCacheNodeOfferings
5085
+ #
5086
+ # # Lists available reserved cache node offerings.
5087
+ #
5088
+ # resp = client.describe_reserved_cache_nodes_offerings({
5089
+ # cache_node_type: "",
5090
+ # duration: "",
5091
+ # marker: "",
5092
+ # max_records: 25,
5093
+ # offering_type: "",
5094
+ # product_description: "",
5095
+ # reserved_cache_nodes_offering_id: "438012d3-4052-4cc7-b2e3-8d3372e0e706",
5096
+ # })
5097
+ #
5098
+ # resp.to_h outputs the following:
5099
+ # {
5100
+ # marker: "",
5101
+ # reserved_cache_nodes_offerings: [
5102
+ # ],
5103
+ # }
5104
+ #
2774
5105
  # @example Request syntax with placeholder values
2775
5106
  #
2776
5107
  # resp = client.describe_reserved_cache_nodes_offerings({
@@ -2861,6 +5192,50 @@ module Aws::ElastiCache
2861
5192
  # * {Types::DescribeSnapshotsListMessage#marker #marker} => String
2862
5193
  # * {Types::DescribeSnapshotsListMessage#snapshots #snapshots} => Array<Types::Snapshot>
2863
5194
  #
5195
+ #
5196
+ # @example Example: DescribeSnapshots
5197
+ #
5198
+ # # Returns information about the snapshot mysnapshot. By default.
5199
+ #
5200
+ # resp = client.describe_snapshots({
5201
+ # snapshot_name: "snapshot-20161212",
5202
+ # })
5203
+ #
5204
+ # resp.to_h outputs the following:
5205
+ # {
5206
+ # marker: "",
5207
+ # snapshots: [
5208
+ # {
5209
+ # auto_minor_version_upgrade: true,
5210
+ # cache_cluster_create_time: Time.parse("2016-12-21T22:27:12.543Z"),
5211
+ # cache_cluster_id: "my-redis5",
5212
+ # cache_node_type: "cache.m3.large",
5213
+ # cache_parameter_group_name: "default.redis3.2",
5214
+ # cache_subnet_group_name: "default",
5215
+ # engine: "redis",
5216
+ # engine_version: "3.2.4",
5217
+ # node_snapshots: [
5218
+ # {
5219
+ # cache_node_create_time: Time.parse("2016-12-21T22:27:12.543Z"),
5220
+ # cache_node_id: "0001",
5221
+ # cache_size: "3 MB",
5222
+ # snapshot_create_time: Time.parse("2016-12-21T22:30:26Z"),
5223
+ # },
5224
+ # ],
5225
+ # num_cache_nodes: 1,
5226
+ # port: 6379,
5227
+ # preferred_availability_zone: "us-east-1c",
5228
+ # preferred_maintenance_window: "fri:05:30-fri:06:30",
5229
+ # snapshot_name: "snapshot-20161212",
5230
+ # snapshot_retention_limit: 7,
5231
+ # snapshot_source: "manual",
5232
+ # snapshot_status: "available",
5233
+ # snapshot_window: "10:00-11:00",
5234
+ # vpc_id: "vpc-91280df6",
5235
+ # },
5236
+ # ],
5237
+ # }
5238
+ #
2864
5239
  # @example Request syntax with placeholder values
2865
5240
  #
2866
5241
  # resp = client.describe_snapshots({
@@ -2952,6 +5327,43 @@ module Aws::ElastiCache
2952
5327
  #
2953
5328
  # * {Types::AllowedNodeTypeModificationsMessage#scale_up_modifications #scale_up_modifications} => Array<String>
2954
5329
  #
5330
+ #
5331
+ # @example Example: ListAllowedNodeTypeModifications
5332
+ #
5333
+ # # Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.
5334
+ #
5335
+ # resp = client.list_allowed_node_type_modifications({
5336
+ # replication_group_id: "myreplgroup",
5337
+ # })
5338
+ #
5339
+ # resp.to_h outputs the following:
5340
+ # {
5341
+ # scale_up_modifications: [
5342
+ # "cache.m4.10xlarge",
5343
+ # "cache.m4.2xlarge",
5344
+ # "cache.m4.4xlarge",
5345
+ # "cache.m4.xlarge",
5346
+ # "cache.r3.2xlarge",
5347
+ # "cache.r3.4xlarge",
5348
+ # "cache.r3.8xlarge",
5349
+ # "cache.r3.xlarge",
5350
+ # ],
5351
+ # }
5352
+ #
5353
+ # @example Example: ListAllowedNodeTypeModifications
5354
+ #
5355
+ # # Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.
5356
+ #
5357
+ # resp = client.list_allowed_node_type_modifications({
5358
+ # cache_cluster_id: "mycluster",
5359
+ # })
5360
+ #
5361
+ # resp.to_h outputs the following:
5362
+ # {
5363
+ # scale_up_modifications: [
5364
+ # ],
5365
+ # }
5366
+ #
2955
5367
  # @example Request syntax with placeholder values
2956
5368
  #
2957
5369
  # resp = client.list_allowed_node_type_modifications({
@@ -3003,6 +5415,29 @@ module Aws::ElastiCache
3003
5415
  #
3004
5416
  # * {Types::TagListMessage#tag_list #tag_list} => Array<Types::Tag>
3005
5417
  #
5418
+ #
5419
+ # @example Example: ListTagsForResource
5420
+ #
5421
+ # # Lists all cost allocation tags currently on the named resource. A cost allocation tag is a key-value pair where the key is case-sensitive and the value is optional. You can use cost allocation tags to categorize and track your AWS costs.
5422
+ #
5423
+ # resp = client.list_tags_for_resource({
5424
+ # resource_name: "arn:aws:elasticache:us-west-2:<my-account-id>:cluster:mycluster",
5425
+ # })
5426
+ #
5427
+ # resp.to_h outputs the following:
5428
+ # {
5429
+ # tag_list: [
5430
+ # {
5431
+ # key: "APIVersion",
5432
+ # value: "20150202",
5433
+ # },
5434
+ # {
5435
+ # key: "Service",
5436
+ # value: "ElastiCache",
5437
+ # },
5438
+ # ],
5439
+ # }
5440
+ #
3006
5441
  # @example Request syntax with placeholder values
3007
5442
  #
3008
5443
  # resp = client.list_tags_for_resource({
@@ -3308,6 +5743,47 @@ module Aws::ElastiCache
3308
5743
  #
3309
5744
  # * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
3310
5745
  #
5746
+ #
5747
+ # @example Example: ModifyCacheCluster
5748
+ #
5749
+ # # Copies a snapshot to a specified name.
5750
+ #
5751
+ # resp = client.modify_cache_cluster({
5752
+ # apply_immediately: true,
5753
+ # cache_cluster_id: "redis-cluster",
5754
+ # snapshot_retention_limit: 14,
5755
+ # })
5756
+ #
5757
+ # resp.to_h outputs the following:
5758
+ # {
5759
+ # cache_cluster: {
5760
+ # auto_minor_version_upgrade: true,
5761
+ # cache_cluster_create_time: Time.parse("2016-12-22T16:27:56.078Z"),
5762
+ # cache_cluster_id: "redis-cluster",
5763
+ # cache_cluster_status: "available",
5764
+ # cache_node_type: "cache.r3.large",
5765
+ # cache_parameter_group: {
5766
+ # cache_node_ids_to_reboot: [
5767
+ # ],
5768
+ # cache_parameter_group_name: "default.redis3.2",
5769
+ # parameter_apply_status: "in-sync",
5770
+ # },
5771
+ # cache_security_groups: [
5772
+ # ],
5773
+ # cache_subnet_group_name: "default",
5774
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
5775
+ # engine: "redis",
5776
+ # engine_version: "3.2.4",
5777
+ # num_cache_nodes: 1,
5778
+ # pending_modified_values: {
5779
+ # },
5780
+ # preferred_availability_zone: "us-east-1e",
5781
+ # preferred_maintenance_window: "fri:09:00-fri:10:00",
5782
+ # snapshot_retention_limit: 14,
5783
+ # snapshot_window: "07:00-08:00",
5784
+ # },
5785
+ # }
5786
+ #
3311
5787
  # @example Request syntax with placeholder values
3312
5788
  #
3313
5789
  # resp = client.modify_cache_cluster({
@@ -3402,6 +5878,30 @@ module Aws::ElastiCache
3402
5878
  #
3403
5879
  # * {Types::CacheParameterGroupNameMessage#cache_parameter_group_name #cache_parameter_group_name} => String
3404
5880
  #
5881
+ #
5882
+ # @example Example: ModifyCacheParameterGroup
5883
+ #
5884
+ # # Modifies one or more parameter values in the specified parameter group. You cannot modify any default parameter group.
5885
+ #
5886
+ # resp = client.modify_cache_parameter_group({
5887
+ # cache_parameter_group_name: "custom-mem1-4",
5888
+ # parameter_name_values: [
5889
+ # {
5890
+ # parameter_name: "binding_protocol",
5891
+ # parameter_value: "ascii",
5892
+ # },
5893
+ # {
5894
+ # parameter_name: "chunk_size",
5895
+ # parameter_value: "96",
5896
+ # },
5897
+ # ],
5898
+ # })
5899
+ #
5900
+ # resp.to_h outputs the following:
5901
+ # {
5902
+ # cache_parameter_group_name: "custom-mem1-4",
5903
+ # }
5904
+ #
3405
5905
  # @example Request syntax with placeholder values
3406
5906
  #
3407
5907
  # resp = client.modify_cache_parameter_group({
@@ -3448,6 +5948,59 @@ module Aws::ElastiCache
3448
5948
  #
3449
5949
  # * {Types::ModifyCacheSubnetGroupResult#cache_subnet_group #cache_subnet_group} => Types::CacheSubnetGroup
3450
5950
  #
5951
+ #
5952
+ # @example Example: ModifyCacheSubnetGroup
5953
+ #
5954
+ # # Modifies an existing ElastiCache subnet group.
5955
+ #
5956
+ # resp = client.modify_cache_subnet_group({
5957
+ # cache_subnet_group_name: "my-sn-grp",
5958
+ # subnet_ids: [
5959
+ # "subnet-bcde2345",
5960
+ # ],
5961
+ # })
5962
+ #
5963
+ # resp.to_h outputs the following:
5964
+ # {
5965
+ # cache_subnet_group: {
5966
+ # cache_subnet_group_description: "My subnet group.",
5967
+ # cache_subnet_group_name: "my-sn-grp",
5968
+ # subnets: [
5969
+ # {
5970
+ # subnet_availability_zone: {
5971
+ # name: "us-east-1c",
5972
+ # },
5973
+ # subnet_identifier: "subnet-a1b2c3d4",
5974
+ # },
5975
+ # {
5976
+ # subnet_availability_zone: {
5977
+ # name: "us-east-1e",
5978
+ # },
5979
+ # subnet_identifier: "subnet-1a2b3c4d",
5980
+ # },
5981
+ # {
5982
+ # subnet_availability_zone: {
5983
+ # name: "us-east-1e",
5984
+ # },
5985
+ # subnet_identifier: "subnet-bcde2345",
5986
+ # },
5987
+ # {
5988
+ # subnet_availability_zone: {
5989
+ # name: "us-east-1c",
5990
+ # },
5991
+ # subnet_identifier: "subnet-1234abcd",
5992
+ # },
5993
+ # {
5994
+ # subnet_availability_zone: {
5995
+ # name: "us-east-1b",
5996
+ # },
5997
+ # subnet_identifier: "subnet-abcd1234",
5998
+ # },
5999
+ # ],
6000
+ # vpc_id: "vpc-91280df6",
6001
+ # },
6002
+ # }
6003
+ #
3451
6004
  # @example Request syntax with placeholder values
3452
6005
  #
3453
6006
  # resp = client.modify_cache_subnet_group({
@@ -3644,6 +6197,79 @@ module Aws::ElastiCache
3644
6197
  #
3645
6198
  # * {Types::ModifyReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
3646
6199
  #
6200
+ #
6201
+ # @example Example: ModifyReplicationGroup
6202
+ #
6203
+ # #
6204
+ #
6205
+ # resp = client.modify_replication_group({
6206
+ # apply_immediately: true,
6207
+ # replication_group_description: "Modified replication group",
6208
+ # replication_group_id: "my-redis-rg",
6209
+ # snapshot_retention_limit: 30,
6210
+ # snapshotting_cluster_id: "my-redis-rg-001",
6211
+ # })
6212
+ #
6213
+ # resp.to_h outputs the following:
6214
+ # {
6215
+ # replication_group: {
6216
+ # automatic_failover: "enabled",
6217
+ # description: "Modified replication group",
6218
+ # member_clusters: [
6219
+ # "my-redis-rg-001",
6220
+ # "my-redis-rg-002",
6221
+ # "my-redis-rg-003",
6222
+ # ],
6223
+ # node_groups: [
6224
+ # {
6225
+ # node_group_id: "0001",
6226
+ # node_group_members: [
6227
+ # {
6228
+ # cache_cluster_id: "my-redis-rg-001",
6229
+ # cache_node_id: "0001",
6230
+ # current_role: "primary",
6231
+ # preferred_availability_zone: "us-east-1b",
6232
+ # read_endpoint: {
6233
+ # address: "my-redis-rg-001.abcdef.0001.use1.cache.amazonaws.com",
6234
+ # port: 6379,
6235
+ # },
6236
+ # },
6237
+ # {
6238
+ # cache_cluster_id: "my-redis-rg-002",
6239
+ # cache_node_id: "0001",
6240
+ # current_role: "replica",
6241
+ # preferred_availability_zone: "us-east-1a",
6242
+ # read_endpoint: {
6243
+ # address: "my-redis-rg-002.abcdef.0001.use1.cache.amazonaws.com",
6244
+ # port: 6379,
6245
+ # },
6246
+ # },
6247
+ # {
6248
+ # cache_cluster_id: "my-redis-rg-003",
6249
+ # cache_node_id: "0001",
6250
+ # current_role: "replica",
6251
+ # preferred_availability_zone: "us-east-1c",
6252
+ # read_endpoint: {
6253
+ # address: "my-redis-rg-003.abcdef.0001.use1.cache.amazonaws.com",
6254
+ # port: 6379,
6255
+ # },
6256
+ # },
6257
+ # ],
6258
+ # primary_endpoint: {
6259
+ # address: "my-redis-rg.abcdef.ng.0001.use1.cache.amazonaws.com",
6260
+ # port: 6379,
6261
+ # },
6262
+ # status: "available",
6263
+ # },
6264
+ # ],
6265
+ # pending_modified_values: {
6266
+ # },
6267
+ # replication_group_id: "my-redis-rg",
6268
+ # snapshotting_cluster_id: "my-redis-rg-002",
6269
+ # status: "available",
6270
+ # },
6271
+ # }
6272
+ #
3647
6273
  # @example Request syntax with placeholder values
3648
6274
  #
3649
6275
  # resp = client.modify_replication_group({
@@ -3734,6 +6360,15 @@ module Aws::ElastiCache
3734
6360
  #
3735
6361
  # * {Types::PurchaseReservedCacheNodesOfferingResult#reserved_cache_node #reserved_cache_node} => Types::ReservedCacheNode
3736
6362
  #
6363
+ #
6364
+ # @example Example: PurchaseReservedCacheNodesOfferings
6365
+ #
6366
+ # # Allows you to purchase a reserved cache node offering.
6367
+ #
6368
+ # resp = client.purchase_reserved_cache_nodes_offering({
6369
+ # reserved_cache_nodes_offering_id: "1ef01f5b-94ff-433f-a530-61a56bfc8e7a",
6370
+ # })
6371
+ #
3737
6372
  # @example Request syntax with placeholder values
3738
6373
  #
3739
6374
  # resp = client.purchase_reserved_cache_nodes_offering({
@@ -3792,6 +6427,51 @@ module Aws::ElastiCache
3792
6427
  #
3793
6428
  # * {Types::RebootCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
3794
6429
  #
6430
+ #
6431
+ # @example Example: RebootCacheCluster
6432
+ #
6433
+ # # Reboots the specified nodes in the names cluster.
6434
+ #
6435
+ # resp = client.reboot_cache_cluster({
6436
+ # cache_cluster_id: "custom-mem1-4 ",
6437
+ # cache_node_ids_to_reboot: [
6438
+ # "0001",
6439
+ # "0002",
6440
+ # ],
6441
+ # })
6442
+ #
6443
+ # resp.to_h outputs the following:
6444
+ # {
6445
+ # cache_cluster: {
6446
+ # auto_minor_version_upgrade: true,
6447
+ # cache_cluster_create_time: Time.parse("2016-12-21T21:59:43.794Z"),
6448
+ # cache_cluster_id: "my-mem-cluster",
6449
+ # cache_cluster_status: "rebooting cache cluster nodes",
6450
+ # cache_node_type: "cache.t2.medium",
6451
+ # cache_parameter_group: {
6452
+ # cache_node_ids_to_reboot: [
6453
+ # ],
6454
+ # cache_parameter_group_name: "default.memcached1.4",
6455
+ # parameter_apply_status: "in-sync",
6456
+ # },
6457
+ # cache_security_groups: [
6458
+ # ],
6459
+ # cache_subnet_group_name: "default",
6460
+ # client_download_landing_page: "https://console.aws.amazon.com/elasticache/home#client-download:",
6461
+ # configuration_endpoint: {
6462
+ # address: "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com",
6463
+ # port: 11211,
6464
+ # },
6465
+ # engine: "memcached",
6466
+ # engine_version: "1.4.24",
6467
+ # num_cache_nodes: 2,
6468
+ # pending_modified_values: {
6469
+ # },
6470
+ # preferred_availability_zone: "Multiple",
6471
+ # preferred_maintenance_window: "wed:06:00-wed:07:00",
6472
+ # },
6473
+ # }
6474
+ #
3795
6475
  # @example Request syntax with placeholder values
3796
6476
  #
3797
6477
  # resp = client.reboot_cache_cluster({
@@ -3878,6 +6558,46 @@ module Aws::ElastiCache
3878
6558
  #
3879
6559
  # * {Types::TagListMessage#tag_list #tag_list} => Array&lt;Types::Tag&gt;
3880
6560
  #
6561
+ #
6562
+ # @example Example: RemoveTagsFromResource
6563
+ #
6564
+ # # Removes tags identified by a list of tag keys from the list of tags on the specified resource.
6565
+ #
6566
+ # resp = client.remove_tags_from_resource({
6567
+ # resource_name: "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster",
6568
+ # tag_keys: [
6569
+ # "A",
6570
+ # "C",
6571
+ # "E",
6572
+ # ],
6573
+ # })
6574
+ #
6575
+ # resp.to_h outputs the following:
6576
+ # {
6577
+ # tag_list: [
6578
+ # {
6579
+ # key: "B",
6580
+ # value: "Banana",
6581
+ # },
6582
+ # {
6583
+ # key: "D",
6584
+ # value: "Dog",
6585
+ # },
6586
+ # {
6587
+ # key: "F",
6588
+ # value: "Fox",
6589
+ # },
6590
+ # {
6591
+ # key: "I",
6592
+ # value: "",
6593
+ # },
6594
+ # {
6595
+ # key: "K",
6596
+ # value: "Kite",
6597
+ # },
6598
+ # ],
6599
+ # }
6600
+ #
3881
6601
  # @example Request syntax with placeholder values
3882
6602
  #
3883
6603
  # resp = client.remove_tags_from_resource({
@@ -3926,6 +6646,21 @@ module Aws::ElastiCache
3926
6646
  #
3927
6647
  # * {Types::CacheParameterGroupNameMessage#cache_parameter_group_name #cache_parameter_group_name} => String
3928
6648
  #
6649
+ #
6650
+ # @example Example: ResetCacheParameterGroup
6651
+ #
6652
+ # # Modifies the parameters of a cache parameter group to the engine or system default value.
6653
+ #
6654
+ # resp = client.reset_cache_parameter_group({
6655
+ # cache_parameter_group_name: "custom-mem1-4",
6656
+ # reset_all_parameters: true,
6657
+ # })
6658
+ #
6659
+ # resp.to_h outputs the following:
6660
+ # {
6661
+ # cache_parameter_group_name: "custom-mem1-4",
6662
+ # }
6663
+ #
3929
6664
  # @example Request syntax with placeholder values
3930
6665
  #
3931
6666
  # resp = client.reset_cache_parameter_group({
@@ -3971,6 +6706,17 @@ module Aws::ElastiCache
3971
6706
  #
3972
6707
  # * {Types::RevokeCacheSecurityGroupIngressResult#cache_security_group #cache_security_group} => Types::CacheSecurityGroup
3973
6708
  #
6709
+ #
6710
+ # @example Example: DescribeCacheSecurityGroups
6711
+ #
6712
+ # # Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group.
6713
+ #
6714
+ # resp = client.revoke_cache_security_group_ingress({
6715
+ # cache_security_group_name: "my-sec-grp",
6716
+ # ec2_security_group_name: "my-ec2-sec-grp",
6717
+ # ec2_security_group_owner_id: "1234567890",
6718
+ # })
6719
+ #
3974
6720
  # @example Request syntax with placeholder values
3975
6721
  #
3976
6722
  # resp = client.revoke_cache_security_group_ingress({
@@ -4126,7 +6872,7 @@ module Aws::ElastiCache
4126
6872
  params: params,
4127
6873
  config: config)
4128
6874
  context[:gem_name] = 'aws-sdk-elasticache'
4129
- context[:gem_version] = '1.0.0.rc6'
6875
+ context[:gem_version] = '1.0.0.rc7'
4130
6876
  Seahorse::Client::Request.new(handlers, context)
4131
6877
  end
4132
6878