aws-sdk-elasticache 1.80.0 → 1.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +118 -42
- data/lib/aws-sdk-elasticache/client_api.rb +17 -0
- data/lib/aws-sdk-elasticache/types.rb +173 -118
- data/lib/aws-sdk-elasticache.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a3248b4a28fd0f6d813e45406cc65f094137dc22cb1f3ae19218211b14a8153
|
4
|
+
data.tar.gz: 1d6a9ff4e6bb0fd8e2b9b4c93bfd5c46a21a910e51b71c541fa3ae05e9053137
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '005383495c0cf2c1fc49ca0dd29c42e9ec1fdc008fbfa236be0b7433bbf8f667075fa722259afc6d1815255f7d89da7ddfc0c0a03d86e71f13cb6fb7ec6c8544'
|
7
|
+
data.tar.gz: 92ae3a7e5a7301191d69afe36397b8402dcada2081d5d2ae2b50f5faf57259354c375ed2654b50d0d91b3f84b3272993f808f3544aa26f51ef580df249231251
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.0 (2022-11-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for IPv6 and dual stack for Memcached and Redis clusters. Customers can now launch new Redis and Memcached clusters with IPv6 and dual stack networking support.
|
8
|
+
|
4
9
|
1.80.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
@@ -733,6 +733,8 @@ module Aws::ElastiCache
|
|
733
733
|
# resp.replication_group.replication_group_create_time #=> Time
|
734
734
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
735
735
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
736
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
737
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
736
738
|
#
|
737
739
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
|
738
740
|
#
|
@@ -1330,12 +1332,31 @@ module Aws::ElastiCache
|
|
1330
1332
|
#
|
1331
1333
|
# @option params [Boolean] :transit_encryption_enabled
|
1332
1334
|
# A flag that enables in-transit encryption when set to true. You cannot
|
1333
|
-
# modify the value of
|
1335
|
+
# modify the value of TransitEncryptionEnabled after the cluster is
|
1334
1336
|
# created. To enable in-transit encryption on a cluster you must set
|
1335
1337
|
# `TransitEncryptionEnabled` to true when you create a cluster.
|
1336
1338
|
#
|
1337
|
-
#
|
1338
|
-
#
|
1339
|
+
# Only available when creating a cache cluster in an Amazon VPC using
|
1340
|
+
# Memcached version 1.6.12 or later.
|
1341
|
+
#
|
1342
|
+
# @option params [String] :network_type
|
1343
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
1344
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
1345
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
1346
|
+
#
|
1347
|
+
#
|
1348
|
+
#
|
1349
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
1350
|
+
#
|
1351
|
+
# @option params [String] :ip_discovery
|
1352
|
+
# The network type you choose when modifying a cluster, either `ipv4` \|
|
1353
|
+
# `ipv6`. IPv6 is supported for workloads using Redis engine version 6.2
|
1354
|
+
# onward or Memcached engine version 1.6.6 on all instances built on the
|
1355
|
+
# [Nitro system][1].
|
1356
|
+
#
|
1357
|
+
#
|
1358
|
+
#
|
1359
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
1339
1360
|
#
|
1340
1361
|
# @return [Types::CreateCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1341
1362
|
#
|
@@ -1481,6 +1502,8 @@ module Aws::ElastiCache
|
|
1481
1502
|
# },
|
1482
1503
|
# ],
|
1483
1504
|
# transit_encryption_enabled: false,
|
1505
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
1506
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
1484
1507
|
# })
|
1485
1508
|
#
|
1486
1509
|
# @example Response structure
|
@@ -1551,6 +1574,8 @@ module Aws::ElastiCache
|
|
1551
1574
|
# resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
|
1552
1575
|
# resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
1553
1576
|
# resp.cache_cluster.log_delivery_configurations[0].message #=> String
|
1577
|
+
# resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1578
|
+
# resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
1554
1579
|
#
|
1555
1580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheCluster AWS API Documentation
|
1556
1581
|
#
|
@@ -1826,7 +1851,11 @@ module Aws::ElastiCache
|
|
1826
1851
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
1827
1852
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1828
1853
|
# resp.cache_subnet_group.subnets[0].subnet_outpost.subnet_outpost_arn #=> String
|
1854
|
+
# resp.cache_subnet_group.subnets[0].supported_network_types #=> Array
|
1855
|
+
# resp.cache_subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1829
1856
|
# resp.cache_subnet_group.arn #=> String
|
1857
|
+
# resp.cache_subnet_group.supported_network_types #=> Array
|
1858
|
+
# resp.cache_subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1830
1859
|
#
|
1831
1860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSubnetGroup AWS API Documentation
|
1832
1861
|
#
|
@@ -2135,16 +2164,6 @@ module Aws::ElastiCache
|
|
2135
2164
|
#
|
2136
2165
|
# **C1 node types:** `cache.c1.xlarge`
|
2137
2166
|
#
|
2138
|
-
# * Memory optimized with data tiering:
|
2139
|
-
#
|
2140
|
-
# * Current generation:
|
2141
|
-
#
|
2142
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
2143
|
-
# onward).
|
2144
|
-
#
|
2145
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
2146
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
2147
|
-
#
|
2148
2167
|
# * Memory optimized:
|
2149
2168
|
#
|
2150
2169
|
# * Current generation:
|
@@ -2423,6 +2442,25 @@ module Aws::ElastiCache
|
|
2423
2442
|
#
|
2424
2443
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
2425
2444
|
#
|
2445
|
+
# @option params [String] :network_type
|
2446
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
2447
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
2448
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
2449
|
+
#
|
2450
|
+
#
|
2451
|
+
#
|
2452
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2453
|
+
#
|
2454
|
+
# @option params [String] :ip_discovery
|
2455
|
+
# The network type you choose when creating a replication group, either
|
2456
|
+
# `ipv4` \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
2457
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all instances
|
2458
|
+
# built on the [Nitro system][1].
|
2459
|
+
#
|
2460
|
+
#
|
2461
|
+
#
|
2462
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2463
|
+
#
|
2426
2464
|
# @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2427
2465
|
#
|
2428
2466
|
# * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
|
@@ -2585,6 +2623,8 @@ module Aws::ElastiCache
|
|
2585
2623
|
# },
|
2586
2624
|
# ],
|
2587
2625
|
# data_tiering_enabled: false,
|
2626
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
2627
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
2588
2628
|
# })
|
2589
2629
|
#
|
2590
2630
|
# @example Response structure
|
@@ -2656,6 +2696,8 @@ module Aws::ElastiCache
|
|
2656
2696
|
# resp.replication_group.replication_group_create_time #=> Time
|
2657
2697
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
2658
2698
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
2699
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
2700
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
2659
2701
|
#
|
2660
2702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
|
2661
2703
|
#
|
@@ -3250,6 +3292,8 @@ module Aws::ElastiCache
|
|
3250
3292
|
# resp.replication_group.replication_group_create_time #=> Time
|
3251
3293
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
3252
3294
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
3295
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3296
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
3253
3297
|
#
|
3254
3298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
|
3255
3299
|
#
|
@@ -3411,6 +3455,8 @@ module Aws::ElastiCache
|
|
3411
3455
|
# resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
|
3412
3456
|
# resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
3413
3457
|
# resp.cache_cluster.log_delivery_configurations[0].message #=> String
|
3458
|
+
# resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3459
|
+
# resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
3414
3460
|
#
|
3415
3461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteCacheCluster AWS API Documentation
|
3416
3462
|
#
|
@@ -3740,6 +3786,8 @@ module Aws::ElastiCache
|
|
3740
3786
|
# resp.replication_group.replication_group_create_time #=> Time
|
3741
3787
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
3742
3788
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
3789
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3790
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
3743
3791
|
#
|
3744
3792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
|
3745
3793
|
#
|
@@ -4226,6 +4274,8 @@ module Aws::ElastiCache
|
|
4226
4274
|
# resp.cache_clusters[0].log_delivery_configurations[0].log_format #=> String, one of "text", "json"
|
4227
4275
|
# resp.cache_clusters[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
4228
4276
|
# resp.cache_clusters[0].log_delivery_configurations[0].message #=> String
|
4277
|
+
# resp.cache_clusters[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
4278
|
+
# resp.cache_clusters[0].ip_discovery #=> String, one of "ipv4", "ipv6"
|
4229
4279
|
#
|
4230
4280
|
#
|
4231
4281
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5222,7 +5272,11 @@ module Aws::ElastiCache
|
|
5222
5272
|
# resp.cache_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
5223
5273
|
# resp.cache_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
5224
5274
|
# resp.cache_subnet_groups[0].subnets[0].subnet_outpost.subnet_outpost_arn #=> String
|
5275
|
+
# resp.cache_subnet_groups[0].subnets[0].supported_network_types #=> Array
|
5276
|
+
# resp.cache_subnet_groups[0].subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
5225
5277
|
# resp.cache_subnet_groups[0].arn #=> String
|
5278
|
+
# resp.cache_subnet_groups[0].supported_network_types #=> Array
|
5279
|
+
# resp.cache_subnet_groups[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
5226
5280
|
#
|
5227
5281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSubnetGroups AWS API Documentation
|
5228
5282
|
#
|
@@ -6356,6 +6410,8 @@ module Aws::ElastiCache
|
|
6356
6410
|
# resp.replication_groups[0].replication_group_create_time #=> Time
|
6357
6411
|
# resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
|
6358
6412
|
# resp.replication_groups[0].auto_minor_version_upgrade #=> Boolean
|
6413
|
+
# resp.replication_groups[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
6414
|
+
# resp.replication_groups[0].ip_discovery #=> String, one of "ipv4", "ipv6"
|
6359
6415
|
#
|
6360
6416
|
#
|
6361
6417
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -6396,7 +6452,7 @@ module Aws::ElastiCache
|
|
6396
6452
|
#
|
6397
6453
|
# * Current generation:
|
6398
6454
|
#
|
6399
|
-
# **M6g node types
|
6455
|
+
# **M6g node types** (available only for Redis engine version 5.0.6
|
6400
6456
|
# onward and for Memcached engine version 1.5.16 onward):
|
6401
6457
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
6402
6458
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -6414,7 +6470,7 @@ module Aws::ElastiCache
|
|
6414
6470
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
6415
6471
|
#
|
6416
6472
|
# **T4g node types** (available only for Redis engine version 5.0.6
|
6417
|
-
# onward and
|
6473
|
+
# onward and Memcached engine version 1.5.16 onward):
|
6418
6474
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
6419
6475
|
#
|
6420
6476
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -6443,16 +6499,6 @@ module Aws::ElastiCache
|
|
6443
6499
|
#
|
6444
6500
|
# **C1 node types:** `cache.c1.xlarge`
|
6445
6501
|
#
|
6446
|
-
# * Memory optimized with data tiering:
|
6447
|
-
#
|
6448
|
-
# * Current generation:
|
6449
|
-
#
|
6450
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
6451
|
-
# onward).
|
6452
|
-
#
|
6453
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
6454
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
6455
|
-
#
|
6456
6502
|
# * Memory optimized:
|
6457
6503
|
#
|
6458
6504
|
# * Current generation:
|
@@ -6618,8 +6664,8 @@ module Aws::ElastiCache
|
|
6618
6664
|
#
|
6619
6665
|
# * Current generation:
|
6620
6666
|
#
|
6621
|
-
# **M6g node types
|
6622
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
6667
|
+
# **M6g node types** (available only for Redis engine version 5.0.6
|
6668
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
6623
6669
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
6624
6670
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
6625
6671
|
# `cache.m6g.16xlarge`
|
@@ -6636,7 +6682,7 @@ module Aws::ElastiCache
|
|
6636
6682
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
6637
6683
|
#
|
6638
6684
|
# **T4g node types** (available only for Redis engine version 5.0.6
|
6639
|
-
# onward and
|
6685
|
+
# onward and Memcached engine version 1.5.16 onward):
|
6640
6686
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
6641
6687
|
#
|
6642
6688
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -6665,16 +6711,6 @@ module Aws::ElastiCache
|
|
6665
6711
|
#
|
6666
6712
|
# **C1 node types:** `cache.c1.xlarge`
|
6667
6713
|
#
|
6668
|
-
# * Memory optimized with data tiering:
|
6669
|
-
#
|
6670
|
-
# * Current generation:
|
6671
|
-
#
|
6672
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
6673
|
-
# onward).
|
6674
|
-
#
|
6675
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
6676
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
6677
|
-
#
|
6678
6714
|
# * Memory optimized:
|
6679
6715
|
#
|
6680
6716
|
# * Current generation:
|
@@ -7650,9 +7686,9 @@ module Aws::ElastiCache
|
|
7650
7686
|
req.send_request(options)
|
7651
7687
|
end
|
7652
7688
|
|
7653
|
-
# Used to failover the primary region to a
|
7654
|
-
#
|
7655
|
-
#
|
7689
|
+
# Used to failover the primary region to a secondary region. The
|
7690
|
+
# secondary region will become primary, and all other clusters will
|
7691
|
+
# become secondary.
|
7656
7692
|
#
|
7657
7693
|
# @option params [required, String] :global_replication_group_id
|
7658
7694
|
# The name of the Global datastore
|
@@ -7896,6 +7932,8 @@ module Aws::ElastiCache
|
|
7896
7932
|
# resp.replication_group.replication_group_create_time #=> Time
|
7897
7933
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
7898
7934
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
7935
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
7936
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
7899
7937
|
#
|
7900
7938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
|
7901
7939
|
#
|
@@ -8385,6 +8423,16 @@ module Aws::ElastiCache
|
|
8385
8423
|
# @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
|
8386
8424
|
# Specifies the destination, format and type of the logs.
|
8387
8425
|
#
|
8426
|
+
# @option params [String] :ip_discovery
|
8427
|
+
# The network type you choose when modifying a cluster, either `ipv4` \|
|
8428
|
+
# `ipv6`. IPv6 is supported for workloads using Redis engine version 6.2
|
8429
|
+
# onward or Memcached engine version 1.6.6 on all instances built on the
|
8430
|
+
# [Nitro system][1].
|
8431
|
+
#
|
8432
|
+
#
|
8433
|
+
#
|
8434
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
8435
|
+
#
|
8388
8436
|
# @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8389
8437
|
#
|
8390
8438
|
# * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
|
@@ -8468,6 +8516,7 @@ module Aws::ElastiCache
|
|
8468
8516
|
# enabled: false,
|
8469
8517
|
# },
|
8470
8518
|
# ],
|
8519
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
8471
8520
|
# })
|
8472
8521
|
#
|
8473
8522
|
# @example Response structure
|
@@ -8538,6 +8587,8 @@ module Aws::ElastiCache
|
|
8538
8587
|
# resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
|
8539
8588
|
# resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
8540
8589
|
# resp.cache_cluster.log_delivery_configurations[0].message #=> String
|
8590
|
+
# resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
8591
|
+
# resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
8541
8592
|
#
|
8542
8593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheCluster AWS API Documentation
|
8543
8594
|
#
|
@@ -8705,7 +8756,11 @@ module Aws::ElastiCache
|
|
8705
8756
|
# resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
|
8706
8757
|
# resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
8707
8758
|
# resp.cache_subnet_group.subnets[0].subnet_outpost.subnet_outpost_arn #=> String
|
8759
|
+
# resp.cache_subnet_group.subnets[0].supported_network_types #=> Array
|
8760
|
+
# resp.cache_subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
8708
8761
|
# resp.cache_subnet_group.arn #=> String
|
8762
|
+
# resp.cache_subnet_group.supported_network_types #=> Array
|
8763
|
+
# resp.cache_subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
8709
8764
|
#
|
8710
8765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheSubnetGroup AWS API Documentation
|
8711
8766
|
#
|
@@ -9010,6 +9065,16 @@ module Aws::ElastiCache
|
|
9010
9065
|
# @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
|
9011
9066
|
# Specifies the destination, format and type of the logs.
|
9012
9067
|
#
|
9068
|
+
# @option params [String] :ip_discovery
|
9069
|
+
# The network type you choose when modifying a cluster, either `ipv4` \|
|
9070
|
+
# `ipv6`. IPv6 is supported for workloads using Redis engine version 6.2
|
9071
|
+
# onward or Memcached engine version 1.6.6 on all instances built on the
|
9072
|
+
# [Nitro system][1].
|
9073
|
+
#
|
9074
|
+
#
|
9075
|
+
#
|
9076
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
9077
|
+
#
|
9013
9078
|
# @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9014
9079
|
#
|
9015
9080
|
# * {Types::ModifyReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
|
@@ -9128,6 +9193,7 @@ module Aws::ElastiCache
|
|
9128
9193
|
# enabled: false,
|
9129
9194
|
# },
|
9130
9195
|
# ],
|
9196
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
9131
9197
|
# })
|
9132
9198
|
#
|
9133
9199
|
# @example Response structure
|
@@ -9199,6 +9265,8 @@ module Aws::ElastiCache
|
|
9199
9265
|
# resp.replication_group.replication_group_create_time #=> Time
|
9200
9266
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
9201
9267
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
9268
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
9269
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
9202
9270
|
#
|
9203
9271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
|
9204
9272
|
#
|
@@ -9344,6 +9412,8 @@ module Aws::ElastiCache
|
|
9344
9412
|
# resp.replication_group.replication_group_create_time #=> Time
|
9345
9413
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
9346
9414
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
9415
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
9416
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
9347
9417
|
#
|
9348
9418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
|
9349
9419
|
#
|
@@ -9769,6 +9839,8 @@ module Aws::ElastiCache
|
|
9769
9839
|
# resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
|
9770
9840
|
# resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
9771
9841
|
# resp.cache_cluster.log_delivery_configurations[0].message #=> String
|
9842
|
+
# resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
9843
|
+
# resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
9772
9844
|
#
|
9773
9845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebootCacheCluster AWS API Documentation
|
9774
9846
|
#
|
@@ -10094,6 +10166,8 @@ module Aws::ElastiCache
|
|
10094
10166
|
# resp.replication_group.replication_group_create_time #=> Time
|
10095
10167
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
10096
10168
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
10169
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
10170
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
10097
10171
|
#
|
10098
10172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
|
10099
10173
|
#
|
@@ -10253,6 +10327,8 @@ module Aws::ElastiCache
|
|
10253
10327
|
# resp.replication_group.replication_group_create_time #=> Time
|
10254
10328
|
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
10255
10329
|
# resp.replication_group.auto_minor_version_upgrade #=> Boolean
|
10330
|
+
# resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
10331
|
+
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
10256
10332
|
#
|
10257
10333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
|
10258
10334
|
#
|
@@ -10276,7 +10352,7 @@ module Aws::ElastiCache
|
|
10276
10352
|
params: params,
|
10277
10353
|
config: config)
|
10278
10354
|
context[:gem_name] = 'aws-sdk-elasticache'
|
10279
|
-
context[:gem_version] = '1.
|
10355
|
+
context[:gem_version] = '1.81.0'
|
10280
10356
|
Seahorse::Client::Request.new(handlers, context)
|
10281
10357
|
end
|
10282
10358
|
|
@@ -200,6 +200,7 @@ module Aws::ElastiCache
|
|
200
200
|
InvalidUserGroupStateFault = Shapes::StructureShape.new(name: 'InvalidUserGroupStateFault')
|
201
201
|
InvalidUserStateFault = Shapes::StructureShape.new(name: 'InvalidUserStateFault')
|
202
202
|
InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
|
203
|
+
IpDiscovery = Shapes::StringShape.new(name: 'IpDiscovery')
|
203
204
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
204
205
|
KinesisFirehoseDestinationDetails = Shapes::StructureShape.new(name: 'KinesisFirehoseDestinationDetails')
|
205
206
|
ListAllowedNodeTypeModificationsMessage = Shapes::StructureShape.new(name: 'ListAllowedNodeTypeModificationsMessage')
|
@@ -225,6 +226,8 @@ module Aws::ElastiCache
|
|
225
226
|
ModifyUserGroupMessage = Shapes::StructureShape.new(name: 'ModifyUserGroupMessage')
|
226
227
|
ModifyUserMessage = Shapes::StructureShape.new(name: 'ModifyUserMessage')
|
227
228
|
MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
|
229
|
+
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
230
|
+
NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
|
228
231
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
229
232
|
NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
|
230
233
|
NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
|
@@ -443,6 +446,8 @@ module Aws::ElastiCache
|
|
443
446
|
CacheCluster.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
444
447
|
CacheCluster.add_member(:replication_group_log_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReplicationGroupLogDeliveryEnabled"))
|
445
448
|
CacheCluster.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
|
449
|
+
CacheCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
450
|
+
CacheCluster.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
446
451
|
CacheCluster.struct_class = Types::CacheCluster
|
447
452
|
|
448
453
|
CacheClusterAlreadyExistsFault.struct_class = Types::CacheClusterAlreadyExistsFault
|
@@ -579,6 +584,7 @@ module Aws::ElastiCache
|
|
579
584
|
CacheSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
580
585
|
CacheSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
581
586
|
CacheSubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
587
|
+
CacheSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
|
582
588
|
CacheSubnetGroup.struct_class = Types::CacheSubnetGroup
|
583
589
|
|
584
590
|
CacheSubnetGroupAlreadyExistsFault.struct_class = Types::CacheSubnetGroupAlreadyExistsFault
|
@@ -655,6 +661,8 @@ module Aws::ElastiCache
|
|
655
661
|
CreateCacheClusterMessage.add_member(:preferred_outpost_arns, Shapes::ShapeRef.new(shape: PreferredOutpostArnList, location_name: "PreferredOutpostArns"))
|
656
662
|
CreateCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
|
657
663
|
CreateCacheClusterMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
664
|
+
CreateCacheClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
665
|
+
CreateCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
658
666
|
CreateCacheClusterMessage.struct_class = Types::CreateCacheClusterMessage
|
659
667
|
|
660
668
|
CreateCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
|
@@ -728,6 +736,8 @@ module Aws::ElastiCache
|
|
728
736
|
CreateReplicationGroupMessage.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdListInput, location_name: "UserGroupIds"))
|
729
737
|
CreateReplicationGroupMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
|
730
738
|
CreateReplicationGroupMessage.add_member(:data_tiering_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DataTieringEnabled"))
|
739
|
+
CreateReplicationGroupMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
740
|
+
CreateReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
731
741
|
CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
|
732
742
|
|
733
743
|
CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
|
@@ -1171,6 +1181,7 @@ module Aws::ElastiCache
|
|
1171
1181
|
ModifyCacheClusterMessage.add_member(:auth_token, Shapes::ShapeRef.new(shape: String, location_name: "AuthToken"))
|
1172
1182
|
ModifyCacheClusterMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
|
1173
1183
|
ModifyCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
|
1184
|
+
ModifyCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
1174
1185
|
ModifyCacheClusterMessage.struct_class = Types::ModifyCacheClusterMessage
|
1175
1186
|
|
1176
1187
|
ModifyCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
|
@@ -1225,6 +1236,7 @@ module Aws::ElastiCache
|
|
1225
1236
|
ModifyReplicationGroupMessage.add_member(:user_group_ids_to_remove, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIdsToRemove"))
|
1226
1237
|
ModifyReplicationGroupMessage.add_member(:remove_user_groups, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RemoveUserGroups"))
|
1227
1238
|
ModifyReplicationGroupMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
|
1239
|
+
ModifyReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
1228
1240
|
ModifyReplicationGroupMessage.struct_class = Types::ModifyReplicationGroupMessage
|
1229
1241
|
|
1230
1242
|
ModifyReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
|
@@ -1253,6 +1265,8 @@ module Aws::ElastiCache
|
|
1253
1265
|
ModifyUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
|
1254
1266
|
ModifyUserMessage.struct_class = Types::ModifyUserMessage
|
1255
1267
|
|
1268
|
+
NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
|
1269
|
+
|
1256
1270
|
NoOperationFault.struct_class = Types::NoOperationFault
|
1257
1271
|
|
1258
1272
|
NodeGroup.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, location_name: "NodeGroupId"))
|
@@ -1456,6 +1470,8 @@ module Aws::ElastiCache
|
|
1456
1470
|
ReplicationGroup.add_member(:replication_group_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationGroupCreateTime"))
|
1457
1471
|
ReplicationGroup.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
|
1458
1472
|
ReplicationGroup.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoMinorVersionUpgrade"))
|
1473
|
+
ReplicationGroup.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
1474
|
+
ReplicationGroup.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
1459
1475
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
1460
1476
|
|
1461
1477
|
ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
|
@@ -1640,6 +1656,7 @@ module Aws::ElastiCache
|
|
1640
1656
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
1641
1657
|
Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
|
1642
1658
|
Subnet.add_member(:subnet_outpost, Shapes::ShapeRef.new(shape: SubnetOutpost, location_name: "SubnetOutpost"))
|
1659
|
+
Subnet.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
|
1643
1660
|
Subnet.struct_class = Types::Subnet
|
1644
1661
|
|
1645
1662
|
SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
|
@@ -287,7 +287,7 @@ module Aws::ElastiCache
|
|
287
287
|
#
|
288
288
|
# * Current generation:
|
289
289
|
#
|
290
|
-
# **M6g node types
|
290
|
+
# **M6g node types** (available only for Redis engine version
|
291
291
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
292
292
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
293
293
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -305,7 +305,7 @@ module Aws::ElastiCache
|
|
305
305
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
306
306
|
#
|
307
307
|
# **T4g node types** (available only for Redis engine version
|
308
|
-
# 5.0.6 onward and
|
308
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
309
309
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
310
310
|
#
|
311
311
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -334,17 +334,6 @@ module Aws::ElastiCache
|
|
334
334
|
#
|
335
335
|
# **C1 node types:** `cache.c1.xlarge`
|
336
336
|
#
|
337
|
-
# * Memory optimized with data tiering:
|
338
|
-
#
|
339
|
-
# * Current generation:
|
340
|
-
#
|
341
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
342
|
-
# onward).
|
343
|
-
#
|
344
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
345
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
346
|
-
# `cache.r6gd.16xlarge`
|
347
|
-
#
|
348
337
|
# * Memory optimized:
|
349
338
|
#
|
350
339
|
# * Current generation:
|
@@ -572,6 +561,28 @@ module Aws::ElastiCache
|
|
572
561
|
# Returns the destination, format and type of the logs.
|
573
562
|
# @return [Array<Types::LogDeliveryConfiguration>]
|
574
563
|
#
|
564
|
+
# @!attribute [rw] network_type
|
565
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
566
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
567
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
568
|
+
# system][1].
|
569
|
+
#
|
570
|
+
#
|
571
|
+
#
|
572
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
573
|
+
# @return [String]
|
574
|
+
#
|
575
|
+
# @!attribute [rw] ip_discovery
|
576
|
+
# The network type associated with the cluster, either `ipv4` \|
|
577
|
+
# `ipv6`. IPv6 is supported for workloads using Redis engine version
|
578
|
+
# 6.2 onward or Memcached engine version 1.6.6 on all instances built
|
579
|
+
# on the [Nitro system][1].
|
580
|
+
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
584
|
+
# @return [String]
|
585
|
+
#
|
575
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
576
587
|
#
|
577
588
|
class CacheCluster < Struct.new(
|
@@ -604,7 +615,9 @@ module Aws::ElastiCache
|
|
604
615
|
:at_rest_encryption_enabled,
|
605
616
|
:arn,
|
606
617
|
:replication_group_log_delivery_enabled,
|
607
|
-
:log_delivery_configurations
|
618
|
+
:log_delivery_configurations,
|
619
|
+
:network_type,
|
620
|
+
:ip_discovery)
|
608
621
|
SENSITIVE = []
|
609
622
|
include Aws::Structure
|
610
623
|
end
|
@@ -713,7 +726,7 @@ module Aws::ElastiCache
|
|
713
726
|
#
|
714
727
|
# * Current generation:
|
715
728
|
#
|
716
|
-
# **M6g node types
|
729
|
+
# **M6g node types** (available only for Redis engine version 5.0.6
|
717
730
|
# onward and for Memcached engine version 1.5.16 onward):
|
718
731
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
719
732
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -731,7 +744,7 @@ module Aws::ElastiCache
|
|
731
744
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
732
745
|
#
|
733
746
|
# **T4g node types** (available only for Redis engine version 5.0.6
|
734
|
-
# onward and
|
747
|
+
# onward and Memcached engine version 1.5.16 onward):
|
735
748
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
736
749
|
#
|
737
750
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -760,16 +773,6 @@ module Aws::ElastiCache
|
|
760
773
|
#
|
761
774
|
# **C1 node types:** `cache.c1.xlarge`
|
762
775
|
#
|
763
|
-
# * Memory optimized with data tiering:
|
764
|
-
#
|
765
|
-
# * Current generation:
|
766
|
-
#
|
767
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
768
|
-
# onward).
|
769
|
-
#
|
770
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
771
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
772
|
-
#
|
773
776
|
# * Memory optimized:
|
774
777
|
#
|
775
778
|
# * Current generation:
|
@@ -1289,6 +1292,16 @@ module Aws::ElastiCache
|
|
1289
1292
|
# The ARN (Amazon Resource Name) of the cache subnet group.
|
1290
1293
|
# @return [String]
|
1291
1294
|
#
|
1295
|
+
# @!attribute [rw] supported_network_types
|
1296
|
+
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
1297
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
1298
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
1299
|
+
#
|
1300
|
+
#
|
1301
|
+
#
|
1302
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
1303
|
+
# @return [Array<String>]
|
1304
|
+
#
|
1292
1305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
|
1293
1306
|
#
|
1294
1307
|
class CacheSubnetGroup < Struct.new(
|
@@ -1296,7 +1309,8 @@ module Aws::ElastiCache
|
|
1296
1309
|
:cache_subnet_group_description,
|
1297
1310
|
:vpc_id,
|
1298
1311
|
:subnets,
|
1299
|
-
:arn
|
1312
|
+
:arn,
|
1313
|
+
:supported_network_types)
|
1300
1314
|
SENSITIVE = []
|
1301
1315
|
include Aws::Structure
|
1302
1316
|
end
|
@@ -1627,6 +1641,8 @@ module Aws::ElastiCache
|
|
1627
1641
|
# },
|
1628
1642
|
# ],
|
1629
1643
|
# transit_encryption_enabled: false,
|
1644
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
1645
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
1630
1646
|
# }
|
1631
1647
|
#
|
1632
1648
|
# @!attribute [rw] cache_cluster_id
|
@@ -2015,15 +2031,37 @@ module Aws::ElastiCache
|
|
2015
2031
|
#
|
2016
2032
|
# @!attribute [rw] transit_encryption_enabled
|
2017
2033
|
# A flag that enables in-transit encryption when set to true. You
|
2018
|
-
# cannot modify the value of
|
2034
|
+
# cannot modify the value of TransitEncryptionEnabled after the
|
2019
2035
|
# cluster is created. To enable in-transit encryption on a cluster you
|
2020
2036
|
# must set `TransitEncryptionEnabled` to true when you create a
|
2021
2037
|
# cluster.
|
2022
2038
|
#
|
2023
|
-
#
|
2024
|
-
#
|
2039
|
+
# Only available when creating a cache cluster in an Amazon VPC using
|
2040
|
+
# Memcached version 1.6.12 or later.
|
2025
2041
|
# @return [Boolean]
|
2026
2042
|
#
|
2043
|
+
# @!attribute [rw] network_type
|
2044
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2045
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
2046
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
2047
|
+
# system][1].
|
2048
|
+
#
|
2049
|
+
#
|
2050
|
+
#
|
2051
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2052
|
+
# @return [String]
|
2053
|
+
#
|
2054
|
+
# @!attribute [rw] ip_discovery
|
2055
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
2056
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
2057
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
2058
|
+
# instances built on the [Nitro system][1].
|
2059
|
+
#
|
2060
|
+
#
|
2061
|
+
#
|
2062
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2063
|
+
# @return [String]
|
2064
|
+
#
|
2027
2065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
|
2028
2066
|
#
|
2029
2067
|
class CreateCacheClusterMessage < Struct.new(
|
@@ -2054,7 +2092,9 @@ module Aws::ElastiCache
|
|
2054
2092
|
:preferred_outpost_arn,
|
2055
2093
|
:preferred_outpost_arns,
|
2056
2094
|
:log_delivery_configurations,
|
2057
|
-
:transit_encryption_enabled
|
2095
|
+
:transit_encryption_enabled,
|
2096
|
+
:network_type,
|
2097
|
+
:ip_discovery)
|
2058
2098
|
SENSITIVE = []
|
2059
2099
|
include Aws::Structure
|
2060
2100
|
end
|
@@ -2403,6 +2443,8 @@ module Aws::ElastiCache
|
|
2403
2443
|
# },
|
2404
2444
|
# ],
|
2405
2445
|
# data_tiering_enabled: false,
|
2446
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
2447
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
2406
2448
|
# }
|
2407
2449
|
#
|
2408
2450
|
# @!attribute [rw] replication_group_id
|
@@ -2582,17 +2624,6 @@ module Aws::ElastiCache
|
|
2582
2624
|
#
|
2583
2625
|
# **C1 node types:** `cache.c1.xlarge`
|
2584
2626
|
#
|
2585
|
-
# * Memory optimized with data tiering:
|
2586
|
-
#
|
2587
|
-
# * Current generation:
|
2588
|
-
#
|
2589
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
2590
|
-
# onward).
|
2591
|
-
#
|
2592
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
2593
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
2594
|
-
# `cache.r6gd.16xlarge`
|
2595
|
-
#
|
2596
2627
|
# * Memory optimized:
|
2597
2628
|
#
|
2598
2629
|
# * Current generation:
|
@@ -2896,6 +2927,28 @@ module Aws::ElastiCache
|
|
2896
2927
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
2897
2928
|
# @return [Boolean]
|
2898
2929
|
#
|
2930
|
+
# @!attribute [rw] network_type
|
2931
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2932
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
2933
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
2934
|
+
# system][1].
|
2935
|
+
#
|
2936
|
+
#
|
2937
|
+
#
|
2938
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2939
|
+
# @return [String]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] ip_discovery
|
2942
|
+
# The network type you choose when creating a replication group,
|
2943
|
+
# either `ipv4` \| `ipv6`. IPv6 is supported for workloads using Redis
|
2944
|
+
# engine version 6.2 onward or Memcached engine version 1.6.6 on all
|
2945
|
+
# instances built on the [Nitro system][1].
|
2946
|
+
#
|
2947
|
+
#
|
2948
|
+
#
|
2949
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
2950
|
+
# @return [String]
|
2951
|
+
#
|
2899
2952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
|
2900
2953
|
#
|
2901
2954
|
class CreateReplicationGroupMessage < Struct.new(
|
@@ -2932,7 +2985,9 @@ module Aws::ElastiCache
|
|
2932
2985
|
:kms_key_id,
|
2933
2986
|
:user_group_ids,
|
2934
2987
|
:log_delivery_configurations,
|
2935
|
-
:data_tiering_enabled
|
2988
|
+
:data_tiering_enabled,
|
2989
|
+
:network_type,
|
2990
|
+
:ip_discovery)
|
2936
2991
|
SENSITIVE = []
|
2937
2992
|
include Aws::Structure
|
2938
2993
|
end
|
@@ -4216,7 +4271,7 @@ module Aws::ElastiCache
|
|
4216
4271
|
#
|
4217
4272
|
# * Current generation:
|
4218
4273
|
#
|
4219
|
-
# **M6g node types
|
4274
|
+
# **M6g node types** (available only for Redis engine version
|
4220
4275
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4221
4276
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4222
4277
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -4234,7 +4289,7 @@ module Aws::ElastiCache
|
|
4234
4289
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4235
4290
|
#
|
4236
4291
|
# **T4g node types** (available only for Redis engine version
|
4237
|
-
# 5.0.6 onward and
|
4292
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4238
4293
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4239
4294
|
#
|
4240
4295
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -4263,17 +4318,6 @@ module Aws::ElastiCache
|
|
4263
4318
|
#
|
4264
4319
|
# **C1 node types:** `cache.c1.xlarge`
|
4265
4320
|
#
|
4266
|
-
# * Memory optimized with data tiering:
|
4267
|
-
#
|
4268
|
-
# * Current generation:
|
4269
|
-
#
|
4270
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
4271
|
-
# onward).
|
4272
|
-
#
|
4273
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
4274
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
4275
|
-
# `cache.r6gd.16xlarge`
|
4276
|
-
#
|
4277
4321
|
# * Memory optimized:
|
4278
4322
|
#
|
4279
4323
|
# * Current generation:
|
@@ -4416,8 +4460,8 @@ module Aws::ElastiCache
|
|
4416
4460
|
#
|
4417
4461
|
# * Current generation:
|
4418
4462
|
#
|
4419
|
-
# **M6g node types
|
4420
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
4463
|
+
# **M6g node types** (available only for Redis engine version
|
4464
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4421
4465
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4422
4466
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
4423
4467
|
# `cache.m6g.16xlarge`
|
@@ -4434,7 +4478,7 @@ module Aws::ElastiCache
|
|
4434
4478
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4435
4479
|
#
|
4436
4480
|
# **T4g node types** (available only for Redis engine version
|
4437
|
-
# 5.0.6 onward and
|
4481
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4438
4482
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4439
4483
|
#
|
4440
4484
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -4463,17 +4507,6 @@ module Aws::ElastiCache
|
|
4463
4507
|
#
|
4464
4508
|
# **C1 node types:** `cache.c1.xlarge`
|
4465
4509
|
#
|
4466
|
-
# * Memory optimized with data tiering:
|
4467
|
-
#
|
4468
|
-
# * Current generation:
|
4469
|
-
#
|
4470
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
4471
|
-
# onward).
|
4472
|
-
#
|
4473
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
4474
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
4475
|
-
# `cache.r6gd.16xlarge`
|
4476
|
-
#
|
4477
4510
|
# * Memory optimized:
|
4478
4511
|
#
|
4479
4512
|
# * Current generation:
|
@@ -5920,6 +5953,7 @@ module Aws::ElastiCache
|
|
5920
5953
|
# enabled: false,
|
5921
5954
|
# },
|
5922
5955
|
# ],
|
5956
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
5923
5957
|
# }
|
5924
5958
|
#
|
5925
5959
|
# @!attribute [rw] cache_cluster_id
|
@@ -6255,6 +6289,17 @@ module Aws::ElastiCache
|
|
6255
6289
|
# Specifies the destination, format and type of the logs.
|
6256
6290
|
# @return [Array<Types::LogDeliveryConfigurationRequest>]
|
6257
6291
|
#
|
6292
|
+
# @!attribute [rw] ip_discovery
|
6293
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
6294
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6295
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6296
|
+
# instances built on the [Nitro system][1].
|
6297
|
+
#
|
6298
|
+
#
|
6299
|
+
#
|
6300
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
6301
|
+
# @return [String]
|
6302
|
+
#
|
6258
6303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
|
6259
6304
|
#
|
6260
6305
|
class ModifyCacheClusterMessage < Struct.new(
|
@@ -6277,7 +6322,8 @@ module Aws::ElastiCache
|
|
6277
6322
|
:cache_node_type,
|
6278
6323
|
:auth_token,
|
6279
6324
|
:auth_token_update_strategy,
|
6280
|
-
:log_delivery_configurations
|
6325
|
+
:log_delivery_configurations,
|
6326
|
+
:ip_discovery)
|
6281
6327
|
SENSITIVE = []
|
6282
6328
|
include Aws::Structure
|
6283
6329
|
end
|
@@ -6514,6 +6560,7 @@ module Aws::ElastiCache
|
|
6514
6560
|
# enabled: false,
|
6515
6561
|
# },
|
6516
6562
|
# ],
|
6563
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
6517
6564
|
# }
|
6518
6565
|
#
|
6519
6566
|
# @!attribute [rw] replication_group_id
|
@@ -6742,6 +6789,17 @@ module Aws::ElastiCache
|
|
6742
6789
|
# Specifies the destination, format and type of the logs.
|
6743
6790
|
# @return [Array<Types::LogDeliveryConfigurationRequest>]
|
6744
6791
|
#
|
6792
|
+
# @!attribute [rw] ip_discovery
|
6793
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
6794
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6795
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6796
|
+
# instances built on the [Nitro system][1].
|
6797
|
+
#
|
6798
|
+
#
|
6799
|
+
#
|
6800
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
6801
|
+
# @return [String]
|
6802
|
+
#
|
6745
6803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
|
6746
6804
|
#
|
6747
6805
|
class ModifyReplicationGroupMessage < Struct.new(
|
@@ -6769,7 +6827,8 @@ module Aws::ElastiCache
|
|
6769
6827
|
:user_group_ids_to_add,
|
6770
6828
|
:user_group_ids_to_remove,
|
6771
6829
|
:remove_user_groups,
|
6772
|
-
:log_delivery_configurations
|
6830
|
+
:log_delivery_configurations,
|
6831
|
+
:ip_discovery)
|
6773
6832
|
SENSITIVE = []
|
6774
6833
|
include Aws::Structure
|
6775
6834
|
end
|
@@ -7926,12 +7985,34 @@ module Aws::ElastiCache
|
|
7926
7985
|
# @return [String]
|
7927
7986
|
#
|
7928
7987
|
# @!attribute [rw] auto_minor_version_upgrade
|
7929
|
-
#
|
7988
|
+
# If you are running Redis engine version 6.0 or later, set this
|
7930
7989
|
# parameter to yes if you want to opt-in to the next auto minor
|
7931
7990
|
# version upgrade campaign. This parameter is disabled for previous
|
7932
|
-
# versions.
|
7991
|
+
# versions.
|
7933
7992
|
# @return [Boolean]
|
7934
7993
|
#
|
7994
|
+
# @!attribute [rw] network_type
|
7995
|
+
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
7996
|
+
# for workloads using Redis engine version 6.2 onward or Memcached
|
7997
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
7998
|
+
# system][1].
|
7999
|
+
#
|
8000
|
+
#
|
8001
|
+
#
|
8002
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
8003
|
+
# @return [String]
|
8004
|
+
#
|
8005
|
+
# @!attribute [rw] ip_discovery
|
8006
|
+
# The network type you choose when modifying a cluster, either `ipv4`
|
8007
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
8008
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
8009
|
+
# instances built on the [Nitro system][1].
|
8010
|
+
#
|
8011
|
+
#
|
8012
|
+
#
|
8013
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
8014
|
+
# @return [String]
|
8015
|
+
#
|
7935
8016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
7936
8017
|
#
|
7937
8018
|
class ReplicationGroup < Struct.new(
|
@@ -7961,7 +8042,9 @@ module Aws::ElastiCache
|
|
7961
8042
|
:log_delivery_configurations,
|
7962
8043
|
:replication_group_create_time,
|
7963
8044
|
:data_tiering,
|
7964
|
-
:auto_minor_version_upgrade
|
8045
|
+
:auto_minor_version_upgrade,
|
8046
|
+
:network_type,
|
8047
|
+
:ip_discovery)
|
7965
8048
|
SENSITIVE = []
|
7966
8049
|
include Aws::Structure
|
7967
8050
|
end
|
@@ -8076,7 +8159,7 @@ module Aws::ElastiCache
|
|
8076
8159
|
#
|
8077
8160
|
# * Current generation:
|
8078
8161
|
#
|
8079
|
-
# **M6g node types
|
8162
|
+
# **M6g node types** (available only for Redis engine version
|
8080
8163
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8081
8164
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8082
8165
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8123,17 +8206,6 @@ module Aws::ElastiCache
|
|
8123
8206
|
#
|
8124
8207
|
# **C1 node types:** `cache.c1.xlarge`
|
8125
8208
|
#
|
8126
|
-
# * Memory optimized with data tiering:
|
8127
|
-
#
|
8128
|
-
# * Current generation:
|
8129
|
-
#
|
8130
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8131
|
-
# onward).
|
8132
|
-
#
|
8133
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8134
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8135
|
-
# `cache.r6gd.16xlarge`
|
8136
|
-
#
|
8137
8209
|
# * Memory optimized:
|
8138
8210
|
#
|
8139
8211
|
# * Current generation:
|
@@ -8306,7 +8378,7 @@ module Aws::ElastiCache
|
|
8306
8378
|
#
|
8307
8379
|
# * Current generation:
|
8308
8380
|
#
|
8309
|
-
# **M6g node types
|
8381
|
+
# **M6g node types** (available only for Redis engine version
|
8310
8382
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8311
8383
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8312
8384
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8353,17 +8425,6 @@ module Aws::ElastiCache
|
|
8353
8425
|
#
|
8354
8426
|
# **C1 node types:** `cache.c1.xlarge`
|
8355
8427
|
#
|
8356
|
-
# * Memory optimized with data tiering:
|
8357
|
-
#
|
8358
|
-
# * Current generation:
|
8359
|
-
#
|
8360
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8361
|
-
# onward).
|
8362
|
-
#
|
8363
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8364
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8365
|
-
# `cache.r6gd.16xlarge`
|
8366
|
-
#
|
8367
8428
|
# * Memory optimized:
|
8368
8429
|
#
|
8369
8430
|
# * Current generation:
|
@@ -8814,8 +8875,7 @@ module Aws::ElastiCache
|
|
8814
8875
|
# * Current generation:
|
8815
8876
|
#
|
8816
8877
|
# **M6g node types** (available only for Redis engine version
|
8817
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
8818
|
-
#
|
8878
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8819
8879
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8820
8880
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
8821
8881
|
# `cache.m6g.16xlarge`
|
@@ -8833,7 +8893,6 @@ module Aws::ElastiCache
|
|
8833
8893
|
#
|
8834
8894
|
# **T4g node types** (available only for Redis engine version
|
8835
8895
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
8836
|
-
#
|
8837
8896
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
8838
8897
|
#
|
8839
8898
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -8862,17 +8921,6 @@ module Aws::ElastiCache
|
|
8862
8921
|
#
|
8863
8922
|
# **C1 node types:** `cache.c1.xlarge`
|
8864
8923
|
#
|
8865
|
-
# * Memory optimized with data tiering:
|
8866
|
-
#
|
8867
|
-
# * Current generation:
|
8868
|
-
#
|
8869
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
8870
|
-
# onward).
|
8871
|
-
#
|
8872
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
8873
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
8874
|
-
# `cache.r6gd.16xlarge`
|
8875
|
-
#
|
8876
8924
|
# * Memory optimized:
|
8877
8925
|
#
|
8878
8926
|
# * Current generation:
|
@@ -8888,10 +8936,6 @@ module Aws::ElastiCache
|
|
8888
8936
|
#
|
8889
8937
|
# </note>
|
8890
8938
|
#
|
8891
|
-
# <note markdown="1"> For region availability, see [Supported Node Types][1]
|
8892
|
-
#
|
8893
|
-
# </note>
|
8894
|
-
#
|
8895
8939
|
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
8896
8940
|
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
8897
8941
|
# `cache.r5.24xlarge`
|
@@ -9195,12 +9239,23 @@ module Aws::ElastiCache
|
|
9195
9239
|
# The outpost ARN of the subnet.
|
9196
9240
|
# @return [Types::SubnetOutpost]
|
9197
9241
|
#
|
9242
|
+
# @!attribute [rw] supported_network_types
|
9243
|
+
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
9244
|
+
# workloads using Redis engine version 6.2 onward or Memcached engine
|
9245
|
+
# version 1.6.6 on all instances built on the [Nitro system][1].
|
9246
|
+
#
|
9247
|
+
#
|
9248
|
+
#
|
9249
|
+
# [1]: https://aws.amazon.com/ec2/nitro/
|
9250
|
+
# @return [Array<String>]
|
9251
|
+
#
|
9198
9252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Subnet AWS API Documentation
|
9199
9253
|
#
|
9200
9254
|
class Subnet < Struct.new(
|
9201
9255
|
:subnet_identifier,
|
9202
9256
|
:subnet_availability_zone,
|
9203
|
-
:subnet_outpost
|
9257
|
+
:subnet_outpost,
|
9258
|
+
:supported_network_types)
|
9204
9259
|
SENSITIVE = []
|
9205
9260
|
include Aws::Structure
|
9206
9261
|
end
|
data/lib/aws-sdk-elasticache.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|