aws-sdk-elasticache 1.80.0 → 1.82.0

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
  SHA256:
3
- metadata.gz: 0b7e1917184c7c35948cc967451c1b075f8d7eeaa3b432f9e49ec61ce0e1fbd0
4
- data.tar.gz: f8766f023647b41b0a79772f02ef47e7cd41b9a7daf1ce06a9935142bf0e6d32
3
+ metadata.gz: 935f20896aa6453e9eb6799ff9754694695d787f4003893b4f3aa937952cac19
4
+ data.tar.gz: aceb5ad1a07c68029b0834fbf0525e469bfbce9c9841e8a830a9bf752690e540
5
5
  SHA512:
6
- metadata.gz: 0d79a8c4d086a9ab86d7d2acd8e261573c928ca52b80a1ad47f85e0f6e79946925e1ba72299bb77fe33d97d565a44f5992ec7503a37e66f568a9b3191237609c
7
- data.tar.gz: d8126ec35ff860f07da005306a21151935deebf1d0a252a77c9cddce3000c30859061995fc058432af6925d13eedc2674d76cf8b11a7a5b4073a23b9035584ec
6
+ metadata.gz: 533f4cb24367ed15fe855679dd699c3955ad102ba0d487e4dec1fd95677a769680a01d442a03eaf932163bf7ef4798ed4a8faac5d0be2e7f5a332da41caa205a
7
+ data.tar.gz: 82dc5e0032054cdd2c82a2d577e6da476d711a60bb2d9a11e5b991c38b43509c18838eb688123fd4f0adfc7b040610fa19139ff0236c97d3ac6d977bbb3a1399
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2022-11-16)
5
+ ------------------
6
+
7
+ * Feature - for Redis now supports AWS Identity and Access Management authentication access to Redis clusters starting with redis-engine version 7.0
8
+
9
+ 1.81.0 (2022-11-07)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.80.0 (2022-10-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.82.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 `TransitEncryptionEnabled` after the cluster is
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
- # **Required:** Only available when creating a cache cluster in an
1338
- # Amazon VPC using Memcached version `1.6.12` or later.
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
  #
@@ -2922,6 +2964,9 @@ module Aws::ElastiCache
2922
2964
  # pair. A tag key must be accompanied by a tag value, although null is
2923
2965
  # accepted.
2924
2966
  #
2967
+ # @option params [Types::AuthenticationMode] :authentication_mode
2968
+ # Specifies how to authenticate the user.
2969
+ #
2925
2970
  # @return [Types::User] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2926
2971
  #
2927
2972
  # * {Types::User#user_id #user_id} => String
@@ -2949,6 +2994,10 @@ module Aws::ElastiCache
2949
2994
  # value: "String",
2950
2995
  # },
2951
2996
  # ],
2997
+ # authentication_mode: {
2998
+ # type: "password", # accepts password, no-password-required, iam
2999
+ # passwords: ["String"],
3000
+ # },
2952
3001
  # })
2953
3002
  #
2954
3003
  # @example Response structure
@@ -2961,7 +3010,7 @@ module Aws::ElastiCache
2961
3010
  # resp.access_string #=> String
2962
3011
  # resp.user_group_ids #=> Array
2963
3012
  # resp.user_group_ids[0] #=> String
2964
- # resp.authentication.type #=> String, one of "password", "no-password"
3013
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
2965
3014
  # resp.authentication.password_count #=> Integer
2966
3015
  # resp.arn #=> String
2967
3016
  #
@@ -3250,6 +3299,8 @@ module Aws::ElastiCache
3250
3299
  # resp.replication_group.replication_group_create_time #=> Time
3251
3300
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3252
3301
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
3302
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3303
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
3253
3304
  #
3254
3305
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3255
3306
  #
@@ -3411,6 +3462,8 @@ module Aws::ElastiCache
3411
3462
  # resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3412
3463
  # resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3413
3464
  # resp.cache_cluster.log_delivery_configurations[0].message #=> String
3465
+ # resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3466
+ # resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
3414
3467
  #
3415
3468
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteCacheCluster AWS API Documentation
3416
3469
  #
@@ -3740,6 +3793,8 @@ module Aws::ElastiCache
3740
3793
  # resp.replication_group.replication_group_create_time #=> Time
3741
3794
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3742
3795
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
3796
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3797
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
3743
3798
  #
3744
3799
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3745
3800
  #
@@ -3907,7 +3962,7 @@ module Aws::ElastiCache
3907
3962
  # resp.access_string #=> String
3908
3963
  # resp.user_group_ids #=> Array
3909
3964
  # resp.user_group_ids[0] #=> String
3910
- # resp.authentication.type #=> String, one of "password", "no-password"
3965
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
3911
3966
  # resp.authentication.password_count #=> Integer
3912
3967
  # resp.arn #=> String
3913
3968
  #
@@ -4226,6 +4281,8 @@ module Aws::ElastiCache
4226
4281
  # resp.cache_clusters[0].log_delivery_configurations[0].log_format #=> String, one of "text", "json"
4227
4282
  # resp.cache_clusters[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
4228
4283
  # resp.cache_clusters[0].log_delivery_configurations[0].message #=> String
4284
+ # resp.cache_clusters[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
4285
+ # resp.cache_clusters[0].ip_discovery #=> String, one of "ipv4", "ipv6"
4229
4286
  #
4230
4287
  #
4231
4288
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5222,7 +5279,11 @@ module Aws::ElastiCache
5222
5279
  # resp.cache_subnet_groups[0].subnets[0].subnet_identifier #=> String
5223
5280
  # resp.cache_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
5224
5281
  # resp.cache_subnet_groups[0].subnets[0].subnet_outpost.subnet_outpost_arn #=> String
5282
+ # resp.cache_subnet_groups[0].subnets[0].supported_network_types #=> Array
5283
+ # resp.cache_subnet_groups[0].subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
5225
5284
  # resp.cache_subnet_groups[0].arn #=> String
5285
+ # resp.cache_subnet_groups[0].supported_network_types #=> Array
5286
+ # resp.cache_subnet_groups[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
5226
5287
  #
5227
5288
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheSubnetGroups AWS API Documentation
5228
5289
  #
@@ -6356,6 +6417,8 @@ module Aws::ElastiCache
6356
6417
  # resp.replication_groups[0].replication_group_create_time #=> Time
6357
6418
  # resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
6358
6419
  # resp.replication_groups[0].auto_minor_version_upgrade #=> Boolean
6420
+ # resp.replication_groups[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
6421
+ # resp.replication_groups[0].ip_discovery #=> String, one of "ipv4", "ipv6"
6359
6422
  #
6360
6423
  #
6361
6424
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6396,7 +6459,7 @@ module Aws::ElastiCache
6396
6459
  #
6397
6460
  # * Current generation:
6398
6461
  #
6399
- # **M6g node types:** (available only for Redis engine version 5.0.6
6462
+ # **M6g node types** (available only for Redis engine version 5.0.6
6400
6463
  # onward and for Memcached engine version 1.5.16 onward):
6401
6464
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
6402
6465
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -6414,7 +6477,7 @@ module Aws::ElastiCache
6414
6477
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6415
6478
  #
6416
6479
  # **T4g node types** (available only for Redis engine version 5.0.6
6417
- # onward and for Memcached engine version 1.5.16 onward):
6480
+ # onward and Memcached engine version 1.5.16 onward):
6418
6481
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6419
6482
  #
6420
6483
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -6443,16 +6506,6 @@ module Aws::ElastiCache
6443
6506
  #
6444
6507
  # **C1 node types:** `cache.c1.xlarge`
6445
6508
  #
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
6509
  # * Memory optimized:
6457
6510
  #
6458
6511
  # * Current generation:
@@ -6618,8 +6671,8 @@ module Aws::ElastiCache
6618
6671
  #
6619
6672
  # * Current generation:
6620
6673
  #
6621
- # **M6g node types:** (available only for Redis engine version 5.0.6
6622
- # onward and for Memcached engine version 1.5.16 onward)
6674
+ # **M6g node types** (available only for Redis engine version 5.0.6
6675
+ # onward and for Memcached engine version 1.5.16 onward):
6623
6676
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
6624
6677
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
6625
6678
  # `cache.m6g.16xlarge`
@@ -6636,7 +6689,7 @@ module Aws::ElastiCache
6636
6689
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6637
6690
  #
6638
6691
  # **T4g node types** (available only for Redis engine version 5.0.6
6639
- # onward and for Memcached engine version 1.5.16 onward):
6692
+ # onward and Memcached engine version 1.5.16 onward):
6640
6693
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6641
6694
  #
6642
6695
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -6665,16 +6718,6 @@ module Aws::ElastiCache
6665
6718
  #
6666
6719
  # **C1 node types:** `cache.c1.xlarge`
6667
6720
  #
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
6721
  # * Memory optimized:
6679
6722
  #
6680
6723
  # * Current generation:
@@ -7576,7 +7619,7 @@ module Aws::ElastiCache
7576
7619
  # resp.users[0].access_string #=> String
7577
7620
  # resp.users[0].user_group_ids #=> Array
7578
7621
  # resp.users[0].user_group_ids[0] #=> String
7579
- # resp.users[0].authentication.type #=> String, one of "password", "no-password"
7622
+ # resp.users[0].authentication.type #=> String, one of "password", "no-password", "iam"
7580
7623
  # resp.users[0].authentication.password_count #=> Integer
7581
7624
  # resp.users[0].arn #=> String
7582
7625
  # resp.marker #=> String
@@ -7650,9 +7693,9 @@ module Aws::ElastiCache
7650
7693
  req.send_request(options)
7651
7694
  end
7652
7695
 
7653
- # Used to failover the primary region to a selected secondary region.
7654
- # The selected secondary region will become primary, and all other
7655
- # clusters will become secondary.
7696
+ # Used to failover the primary region to a secondary region. The
7697
+ # secondary region will become primary, and all other clusters will
7698
+ # become secondary.
7656
7699
  #
7657
7700
  # @option params [required, String] :global_replication_group_id
7658
7701
  # The name of the Global datastore
@@ -7896,6 +7939,8 @@ module Aws::ElastiCache
7896
7939
  # resp.replication_group.replication_group_create_time #=> Time
7897
7940
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
7898
7941
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
7942
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
7943
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
7899
7944
  #
7900
7945
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7901
7946
  #
@@ -8385,6 +8430,16 @@ module Aws::ElastiCache
8385
8430
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
8386
8431
  # Specifies the destination, format and type of the logs.
8387
8432
  #
8433
+ # @option params [String] :ip_discovery
8434
+ # The network type you choose when modifying a cluster, either `ipv4` \|
8435
+ # `ipv6`. IPv6 is supported for workloads using Redis engine version 6.2
8436
+ # onward or Memcached engine version 1.6.6 on all instances built on the
8437
+ # [Nitro system][1].
8438
+ #
8439
+ #
8440
+ #
8441
+ # [1]: https://aws.amazon.com/ec2/nitro/
8442
+ #
8388
8443
  # @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8389
8444
  #
8390
8445
  # * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
@@ -8468,6 +8523,7 @@ module Aws::ElastiCache
8468
8523
  # enabled: false,
8469
8524
  # },
8470
8525
  # ],
8526
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
8471
8527
  # })
8472
8528
  #
8473
8529
  # @example Response structure
@@ -8538,6 +8594,8 @@ module Aws::ElastiCache
8538
8594
  # resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
8539
8595
  # resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
8540
8596
  # resp.cache_cluster.log_delivery_configurations[0].message #=> String
8597
+ # resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
8598
+ # resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
8541
8599
  #
8542
8600
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheCluster AWS API Documentation
8543
8601
  #
@@ -8705,7 +8763,11 @@ module Aws::ElastiCache
8705
8763
  # resp.cache_subnet_group.subnets[0].subnet_identifier #=> String
8706
8764
  # resp.cache_subnet_group.subnets[0].subnet_availability_zone.name #=> String
8707
8765
  # resp.cache_subnet_group.subnets[0].subnet_outpost.subnet_outpost_arn #=> String
8766
+ # resp.cache_subnet_group.subnets[0].supported_network_types #=> Array
8767
+ # resp.cache_subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
8708
8768
  # resp.cache_subnet_group.arn #=> String
8769
+ # resp.cache_subnet_group.supported_network_types #=> Array
8770
+ # resp.cache_subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
8709
8771
  #
8710
8772
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheSubnetGroup AWS API Documentation
8711
8773
  #
@@ -9010,6 +9072,16 @@ module Aws::ElastiCache
9010
9072
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
9011
9073
  # Specifies the destination, format and type of the logs.
9012
9074
  #
9075
+ # @option params [String] :ip_discovery
9076
+ # The network type you choose when modifying a cluster, either `ipv4` \|
9077
+ # `ipv6`. IPv6 is supported for workloads using Redis engine version 6.2
9078
+ # onward or Memcached engine version 1.6.6 on all instances built on the
9079
+ # [Nitro system][1].
9080
+ #
9081
+ #
9082
+ #
9083
+ # [1]: https://aws.amazon.com/ec2/nitro/
9084
+ #
9013
9085
  # @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9014
9086
  #
9015
9087
  # * {Types::ModifyReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -9128,6 +9200,7 @@ module Aws::ElastiCache
9128
9200
  # enabled: false,
9129
9201
  # },
9130
9202
  # ],
9203
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
9131
9204
  # })
9132
9205
  #
9133
9206
  # @example Response structure
@@ -9199,6 +9272,8 @@ module Aws::ElastiCache
9199
9272
  # resp.replication_group.replication_group_create_time #=> Time
9200
9273
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9201
9274
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
9275
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
9276
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
9202
9277
  #
9203
9278
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9204
9279
  #
@@ -9344,6 +9419,8 @@ module Aws::ElastiCache
9344
9419
  # resp.replication_group.replication_group_create_time #=> Time
9345
9420
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9346
9421
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
9422
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
9423
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
9347
9424
  #
9348
9425
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9349
9426
  #
@@ -9371,6 +9448,9 @@ module Aws::ElastiCache
9371
9448
  # @option params [Boolean] :no_password_required
9372
9449
  # Indicates no password is required for the user.
9373
9450
  #
9451
+ # @option params [Types::AuthenticationMode] :authentication_mode
9452
+ # Specifies how to authenticate the user.
9453
+ #
9374
9454
  # @return [Types::User] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9375
9455
  #
9376
9456
  # * {Types::User#user_id #user_id} => String
@@ -9391,6 +9471,10 @@ module Aws::ElastiCache
9391
9471
  # append_access_string: "AccessString",
9392
9472
  # passwords: ["String"],
9393
9473
  # no_password_required: false,
9474
+ # authentication_mode: {
9475
+ # type: "password", # accepts password, no-password-required, iam
9476
+ # passwords: ["String"],
9477
+ # },
9394
9478
  # })
9395
9479
  #
9396
9480
  # @example Response structure
@@ -9403,7 +9487,7 @@ module Aws::ElastiCache
9403
9487
  # resp.access_string #=> String
9404
9488
  # resp.user_group_ids #=> Array
9405
9489
  # resp.user_group_ids[0] #=> String
9406
- # resp.authentication.type #=> String, one of "password", "no-password"
9490
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
9407
9491
  # resp.authentication.password_count #=> Integer
9408
9492
  # resp.arn #=> String
9409
9493
  #
@@ -9769,6 +9853,8 @@ module Aws::ElastiCache
9769
9853
  # resp.cache_cluster.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9770
9854
  # resp.cache_cluster.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9771
9855
  # resp.cache_cluster.log_delivery_configurations[0].message #=> String
9856
+ # resp.cache_cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
9857
+ # resp.cache_cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
9772
9858
  #
9773
9859
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RebootCacheCluster AWS API Documentation
9774
9860
  #
@@ -10094,6 +10180,8 @@ module Aws::ElastiCache
10094
10180
  # resp.replication_group.replication_group_create_time #=> Time
10095
10181
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10096
10182
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
10183
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
10184
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
10097
10185
  #
10098
10186
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
10099
10187
  #
@@ -10253,6 +10341,8 @@ module Aws::ElastiCache
10253
10341
  # resp.replication_group.replication_group_create_time #=> Time
10254
10342
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10255
10343
  # resp.replication_group.auto_minor_version_upgrade #=> Boolean
10344
+ # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
10345
+ # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
10256
10346
  #
10257
10347
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10258
10348
  #
@@ -10276,7 +10366,7 @@ module Aws::ElastiCache
10276
10366
  params: params,
10277
10367
  config: config)
10278
10368
  context[:gem_name] = 'aws-sdk-elasticache'
10279
- context[:gem_version] = '1.80.0'
10369
+ context[:gem_version] = '1.82.0'
10280
10370
  Seahorse::Client::Request.new(handlers, context)
10281
10371
  end
10282
10372
 
@@ -22,6 +22,7 @@ module Aws::ElastiCache
22
22
  AuthTokenUpdateStatus = Shapes::StringShape.new(name: 'AuthTokenUpdateStatus')
23
23
  AuthTokenUpdateStrategyType = Shapes::StringShape.new(name: 'AuthTokenUpdateStrategyType')
24
24
  Authentication = Shapes::StructureShape.new(name: 'Authentication')
25
+ AuthenticationMode = Shapes::StructureShape.new(name: 'AuthenticationMode')
25
26
  AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
26
27
  AuthorizationAlreadyExistsFault = Shapes::StructureShape.new(name: 'AuthorizationAlreadyExistsFault')
27
28
  AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault')
@@ -183,6 +184,7 @@ module Aws::ElastiCache
183
184
  IncreaseNodeGroupsInGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'IncreaseNodeGroupsInGlobalReplicationGroupResult')
184
185
  IncreaseReplicaCountMessage = Shapes::StructureShape.new(name: 'IncreaseReplicaCountMessage')
185
186
  IncreaseReplicaCountResult = Shapes::StructureShape.new(name: 'IncreaseReplicaCountResult')
187
+ InputAuthenticationType = Shapes::StringShape.new(name: 'InputAuthenticationType')
186
188
  InsufficientCacheClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientCacheClusterCapacityFault')
187
189
  Integer = Shapes::IntegerShape.new(name: 'Integer')
188
190
  IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
@@ -200,6 +202,7 @@ module Aws::ElastiCache
200
202
  InvalidUserGroupStateFault = Shapes::StructureShape.new(name: 'InvalidUserGroupStateFault')
201
203
  InvalidUserStateFault = Shapes::StructureShape.new(name: 'InvalidUserStateFault')
202
204
  InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
205
+ IpDiscovery = Shapes::StringShape.new(name: 'IpDiscovery')
203
206
  KeyList = Shapes::ListShape.new(name: 'KeyList')
204
207
  KinesisFirehoseDestinationDetails = Shapes::StructureShape.new(name: 'KinesisFirehoseDestinationDetails')
205
208
  ListAllowedNodeTypeModificationsMessage = Shapes::StructureShape.new(name: 'ListAllowedNodeTypeModificationsMessage')
@@ -225,6 +228,8 @@ module Aws::ElastiCache
225
228
  ModifyUserGroupMessage = Shapes::StructureShape.new(name: 'ModifyUserGroupMessage')
226
229
  ModifyUserMessage = Shapes::StructureShape.new(name: 'ModifyUserMessage')
227
230
  MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
231
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
232
+ NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
228
233
  NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
229
234
  NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
230
235
  NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
@@ -386,6 +391,10 @@ module Aws::ElastiCache
386
391
  Authentication.add_member(:password_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PasswordCount"))
387
392
  Authentication.struct_class = Types::Authentication
388
393
 
394
+ AuthenticationMode.add_member(:type, Shapes::ShapeRef.new(shape: InputAuthenticationType, location_name: "Type"))
395
+ AuthenticationMode.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
396
+ AuthenticationMode.struct_class = Types::AuthenticationMode
397
+
389
398
  AuthorizationAlreadyExistsFault.struct_class = Types::AuthorizationAlreadyExistsFault
390
399
 
391
400
  AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
@@ -443,6 +452,8 @@ module Aws::ElastiCache
443
452
  CacheCluster.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
444
453
  CacheCluster.add_member(:replication_group_log_delivery_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReplicationGroupLogDeliveryEnabled"))
445
454
  CacheCluster.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
455
+ CacheCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
456
+ CacheCluster.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
446
457
  CacheCluster.struct_class = Types::CacheCluster
447
458
 
448
459
  CacheClusterAlreadyExistsFault.struct_class = Types::CacheClusterAlreadyExistsFault
@@ -579,6 +590,7 @@ module Aws::ElastiCache
579
590
  CacheSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
580
591
  CacheSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
581
592
  CacheSubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
593
+ CacheSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
582
594
  CacheSubnetGroup.struct_class = Types::CacheSubnetGroup
583
595
 
584
596
  CacheSubnetGroupAlreadyExistsFault.struct_class = Types::CacheSubnetGroupAlreadyExistsFault
@@ -655,6 +667,8 @@ module Aws::ElastiCache
655
667
  CreateCacheClusterMessage.add_member(:preferred_outpost_arns, Shapes::ShapeRef.new(shape: PreferredOutpostArnList, location_name: "PreferredOutpostArns"))
656
668
  CreateCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
657
669
  CreateCacheClusterMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
670
+ CreateCacheClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
671
+ CreateCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
658
672
  CreateCacheClusterMessage.struct_class = Types::CreateCacheClusterMessage
659
673
 
660
674
  CreateCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
@@ -728,6 +742,8 @@ module Aws::ElastiCache
728
742
  CreateReplicationGroupMessage.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdListInput, location_name: "UserGroupIds"))
729
743
  CreateReplicationGroupMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
730
744
  CreateReplicationGroupMessage.add_member(:data_tiering_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DataTieringEnabled"))
745
+ CreateReplicationGroupMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
746
+ CreateReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
731
747
  CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
732
748
 
733
749
  CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -756,6 +772,7 @@ module Aws::ElastiCache
756
772
  CreateUserMessage.add_member(:access_string, Shapes::ShapeRef.new(shape: AccessString, required: true, location_name: "AccessString"))
757
773
  CreateUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
758
774
  CreateUserMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
775
+ CreateUserMessage.add_member(:authentication_mode, Shapes::ShapeRef.new(shape: AuthenticationMode, location_name: "AuthenticationMode"))
759
776
  CreateUserMessage.struct_class = Types::CreateUserMessage
760
777
 
761
778
  CustomerNodeEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
@@ -1171,6 +1188,7 @@ module Aws::ElastiCache
1171
1188
  ModifyCacheClusterMessage.add_member(:auth_token, Shapes::ShapeRef.new(shape: String, location_name: "AuthToken"))
1172
1189
  ModifyCacheClusterMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
1173
1190
  ModifyCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
1191
+ ModifyCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1174
1192
  ModifyCacheClusterMessage.struct_class = Types::ModifyCacheClusterMessage
1175
1193
 
1176
1194
  ModifyCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
@@ -1225,6 +1243,7 @@ module Aws::ElastiCache
1225
1243
  ModifyReplicationGroupMessage.add_member(:user_group_ids_to_remove, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIdsToRemove"))
1226
1244
  ModifyReplicationGroupMessage.add_member(:remove_user_groups, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RemoveUserGroups"))
1227
1245
  ModifyReplicationGroupMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
1246
+ ModifyReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1228
1247
  ModifyReplicationGroupMessage.struct_class = Types::ModifyReplicationGroupMessage
1229
1248
 
1230
1249
  ModifyReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -1251,8 +1270,11 @@ module Aws::ElastiCache
1251
1270
  ModifyUserMessage.add_member(:append_access_string, Shapes::ShapeRef.new(shape: AccessString, location_name: "AppendAccessString"))
1252
1271
  ModifyUserMessage.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
1253
1272
  ModifyUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
1273
+ ModifyUserMessage.add_member(:authentication_mode, Shapes::ShapeRef.new(shape: AuthenticationMode, location_name: "AuthenticationMode"))
1254
1274
  ModifyUserMessage.struct_class = Types::ModifyUserMessage
1255
1275
 
1276
+ NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
1277
+
1256
1278
  NoOperationFault.struct_class = Types::NoOperationFault
1257
1279
 
1258
1280
  NodeGroup.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, location_name: "NodeGroupId"))
@@ -1456,6 +1478,8 @@ module Aws::ElastiCache
1456
1478
  ReplicationGroup.add_member(:replication_group_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationGroupCreateTime"))
1457
1479
  ReplicationGroup.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
1458
1480
  ReplicationGroup.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoMinorVersionUpgrade"))
1481
+ ReplicationGroup.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
1482
+ ReplicationGroup.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1459
1483
  ReplicationGroup.struct_class = Types::ReplicationGroup
1460
1484
 
1461
1485
  ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
@@ -1640,6 +1664,7 @@ module Aws::ElastiCache
1640
1664
  Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
1641
1665
  Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
1642
1666
  Subnet.add_member(:subnet_outpost, Shapes::ShapeRef.new(shape: SubnetOutpost, location_name: "SubnetOutpost"))
1667
+ Subnet.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
1643
1668
  Subnet.struct_class = Types::Subnet
1644
1669
 
1645
1670
  SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
@@ -109,6 +109,35 @@ module Aws::ElastiCache
109
109
  include Aws::Structure
110
110
  end
111
111
 
112
+ # Specifies the authentication mode to use.
113
+ #
114
+ # @note When making an API call, you may pass AuthenticationMode
115
+ # data as a hash:
116
+ #
117
+ # {
118
+ # type: "password", # accepts password, no-password-required, iam
119
+ # passwords: ["String"],
120
+ # }
121
+ #
122
+ # @!attribute [rw] type
123
+ # Specifies the authentication type. Possible options are IAM
124
+ # authentication, password and no password.
125
+ # @return [String]
126
+ #
127
+ # @!attribute [rw] passwords
128
+ # Specifies the passwords to use for authentication if `Type` is set
129
+ # to `password`.
130
+ # @return [Array<String>]
131
+ #
132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthenticationMode AWS API Documentation
133
+ #
134
+ class AuthenticationMode < Struct.new(
135
+ :type,
136
+ :passwords)
137
+ SENSITIVE = []
138
+ include Aws::Structure
139
+ end
140
+
112
141
  # The specified Amazon EC2 security group is already authorized for the
113
142
  # specified cache security group.
114
143
  #
@@ -287,7 +316,7 @@ module Aws::ElastiCache
287
316
  #
288
317
  # * Current generation:
289
318
  #
290
- # **M6g node types:** (available only for Redis engine version
319
+ # **M6g node types** (available only for Redis engine version
291
320
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
292
321
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
293
322
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -305,7 +334,7 @@ module Aws::ElastiCache
305
334
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
306
335
  #
307
336
  # **T4g node types** (available only for Redis engine version
308
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
337
+ # 5.0.6 onward and Memcached engine version 1.5.16 onward):
309
338
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
310
339
  #
311
340
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -334,17 +363,6 @@ module Aws::ElastiCache
334
363
  #
335
364
  # **C1 node types:** `cache.c1.xlarge`
336
365
  #
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
366
  # * Memory optimized:
349
367
  #
350
368
  # * Current generation:
@@ -572,6 +590,28 @@ module Aws::ElastiCache
572
590
  # Returns the destination, format and type of the logs.
573
591
  # @return [Array<Types::LogDeliveryConfiguration>]
574
592
  #
593
+ # @!attribute [rw] network_type
594
+ # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
595
+ # for workloads using Redis engine version 6.2 onward or Memcached
596
+ # engine version 1.6.6 on all instances built on the [Nitro
597
+ # system][1].
598
+ #
599
+ #
600
+ #
601
+ # [1]: https://aws.amazon.com/ec2/nitro/
602
+ # @return [String]
603
+ #
604
+ # @!attribute [rw] ip_discovery
605
+ # The network type associated with the cluster, either `ipv4` \|
606
+ # `ipv6`. IPv6 is supported for workloads using Redis engine version
607
+ # 6.2 onward or Memcached engine version 1.6.6 on all instances built
608
+ # on the [Nitro system][1].
609
+ #
610
+ #
611
+ #
612
+ # [1]: https://aws.amazon.com/ec2/nitro/
613
+ # @return [String]
614
+ #
575
615
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
576
616
  #
577
617
  class CacheCluster < Struct.new(
@@ -604,7 +644,9 @@ module Aws::ElastiCache
604
644
  :at_rest_encryption_enabled,
605
645
  :arn,
606
646
  :replication_group_log_delivery_enabled,
607
- :log_delivery_configurations)
647
+ :log_delivery_configurations,
648
+ :network_type,
649
+ :ip_discovery)
608
650
  SENSITIVE = []
609
651
  include Aws::Structure
610
652
  end
@@ -713,7 +755,7 @@ module Aws::ElastiCache
713
755
  #
714
756
  # * Current generation:
715
757
  #
716
- # **M6g node types:** (available only for Redis engine version 5.0.6
758
+ # **M6g node types** (available only for Redis engine version 5.0.6
717
759
  # onward and for Memcached engine version 1.5.16 onward):
718
760
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
719
761
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -731,7 +773,7 @@ module Aws::ElastiCache
731
773
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
732
774
  #
733
775
  # **T4g node types** (available only for Redis engine version 5.0.6
734
- # onward and for Memcached engine version 1.5.16 onward):
776
+ # onward and Memcached engine version 1.5.16 onward):
735
777
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
736
778
  #
737
779
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -760,16 +802,6 @@ module Aws::ElastiCache
760
802
  #
761
803
  # **C1 node types:** `cache.c1.xlarge`
762
804
  #
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
805
  # * Memory optimized:
774
806
  #
775
807
  # * Current generation:
@@ -1289,6 +1321,16 @@ module Aws::ElastiCache
1289
1321
  # The ARN (Amazon Resource Name) of the cache subnet group.
1290
1322
  # @return [String]
1291
1323
  #
1324
+ # @!attribute [rw] supported_network_types
1325
+ # Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
1326
+ # workloads using Redis engine version 6.2 onward or Memcached engine
1327
+ # version 1.6.6 on all instances built on the [Nitro system][1].
1328
+ #
1329
+ #
1330
+ #
1331
+ # [1]: https://aws.amazon.com/ec2/nitro/
1332
+ # @return [Array<String>]
1333
+ #
1292
1334
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
1293
1335
  #
1294
1336
  class CacheSubnetGroup < Struct.new(
@@ -1296,7 +1338,8 @@ module Aws::ElastiCache
1296
1338
  :cache_subnet_group_description,
1297
1339
  :vpc_id,
1298
1340
  :subnets,
1299
- :arn)
1341
+ :arn,
1342
+ :supported_network_types)
1300
1343
  SENSITIVE = []
1301
1344
  include Aws::Structure
1302
1345
  end
@@ -1627,6 +1670,8 @@ module Aws::ElastiCache
1627
1670
  # },
1628
1671
  # ],
1629
1672
  # transit_encryption_enabled: false,
1673
+ # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
1674
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
1630
1675
  # }
1631
1676
  #
1632
1677
  # @!attribute [rw] cache_cluster_id
@@ -2015,15 +2060,37 @@ module Aws::ElastiCache
2015
2060
  #
2016
2061
  # @!attribute [rw] transit_encryption_enabled
2017
2062
  # A flag that enables in-transit encryption when set to true. You
2018
- # cannot modify the value of `TransitEncryptionEnabled` after the
2063
+ # cannot modify the value of TransitEncryptionEnabled after the
2019
2064
  # cluster is created. To enable in-transit encryption on a cluster you
2020
2065
  # must set `TransitEncryptionEnabled` to true when you create a
2021
2066
  # cluster.
2022
2067
  #
2023
- # **Required:** Only available when creating a cache cluster in an
2024
- # Amazon VPC using Memcached version `1.6.12` or later.
2068
+ # Only available when creating a cache cluster in an Amazon VPC using
2069
+ # Memcached version 1.6.12 or later.
2025
2070
  # @return [Boolean]
2026
2071
  #
2072
+ # @!attribute [rw] network_type
2073
+ # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
2074
+ # for workloads using Redis engine version 6.2 onward or Memcached
2075
+ # engine version 1.6.6 on all instances built on the [Nitro
2076
+ # system][1].
2077
+ #
2078
+ #
2079
+ #
2080
+ # [1]: https://aws.amazon.com/ec2/nitro/
2081
+ # @return [String]
2082
+ #
2083
+ # @!attribute [rw] ip_discovery
2084
+ # The network type you choose when modifying a cluster, either `ipv4`
2085
+ # \| `ipv6`. IPv6 is supported for workloads using Redis engine
2086
+ # version 6.2 onward or Memcached engine version 1.6.6 on all
2087
+ # instances built on the [Nitro system][1].
2088
+ #
2089
+ #
2090
+ #
2091
+ # [1]: https://aws.amazon.com/ec2/nitro/
2092
+ # @return [String]
2093
+ #
2027
2094
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
2028
2095
  #
2029
2096
  class CreateCacheClusterMessage < Struct.new(
@@ -2054,7 +2121,9 @@ module Aws::ElastiCache
2054
2121
  :preferred_outpost_arn,
2055
2122
  :preferred_outpost_arns,
2056
2123
  :log_delivery_configurations,
2057
- :transit_encryption_enabled)
2124
+ :transit_encryption_enabled,
2125
+ :network_type,
2126
+ :ip_discovery)
2058
2127
  SENSITIVE = []
2059
2128
  include Aws::Structure
2060
2129
  end
@@ -2403,6 +2472,8 @@ module Aws::ElastiCache
2403
2472
  # },
2404
2473
  # ],
2405
2474
  # data_tiering_enabled: false,
2475
+ # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
2476
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
2406
2477
  # }
2407
2478
  #
2408
2479
  # @!attribute [rw] replication_group_id
@@ -2582,17 +2653,6 @@ module Aws::ElastiCache
2582
2653
  #
2583
2654
  # **C1 node types:** `cache.c1.xlarge`
2584
2655
  #
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
2656
  # * Memory optimized:
2597
2657
  #
2598
2658
  # * Current generation:
@@ -2896,6 +2956,28 @@ module Aws::ElastiCache
2896
2956
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2897
2957
  # @return [Boolean]
2898
2958
  #
2959
+ # @!attribute [rw] network_type
2960
+ # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
2961
+ # for workloads using Redis engine version 6.2 onward or Memcached
2962
+ # engine version 1.6.6 on all instances built on the [Nitro
2963
+ # system][1].
2964
+ #
2965
+ #
2966
+ #
2967
+ # [1]: https://aws.amazon.com/ec2/nitro/
2968
+ # @return [String]
2969
+ #
2970
+ # @!attribute [rw] ip_discovery
2971
+ # The network type you choose when creating a replication group,
2972
+ # either `ipv4` \| `ipv6`. IPv6 is supported for workloads using Redis
2973
+ # engine version 6.2 onward or Memcached engine version 1.6.6 on all
2974
+ # instances built on the [Nitro system][1].
2975
+ #
2976
+ #
2977
+ #
2978
+ # [1]: https://aws.amazon.com/ec2/nitro/
2979
+ # @return [String]
2980
+ #
2899
2981
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
2900
2982
  #
2901
2983
  class CreateReplicationGroupMessage < Struct.new(
@@ -2932,7 +3014,9 @@ module Aws::ElastiCache
2932
3014
  :kms_key_id,
2933
3015
  :user_group_ids,
2934
3016
  :log_delivery_configurations,
2935
- :data_tiering_enabled)
3017
+ :data_tiering_enabled,
3018
+ :network_type,
3019
+ :ip_discovery)
2936
3020
  SENSITIVE = []
2937
3021
  include Aws::Structure
2938
3022
  end
@@ -3077,6 +3161,10 @@ module Aws::ElastiCache
3077
3161
  # value: "String",
3078
3162
  # },
3079
3163
  # ],
3164
+ # authentication_mode: {
3165
+ # type: "password", # accepts password, no-password-required, iam
3166
+ # passwords: ["String"],
3167
+ # },
3080
3168
  # }
3081
3169
  #
3082
3170
  # @!attribute [rw] user_id
@@ -3110,6 +3198,10 @@ module Aws::ElastiCache
3110
3198
  # accepted.
3111
3199
  # @return [Array<Types::Tag>]
3112
3200
  #
3201
+ # @!attribute [rw] authentication_mode
3202
+ # Specifies how to authenticate the user.
3203
+ # @return [Types::AuthenticationMode]
3204
+ #
3113
3205
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserMessage AWS API Documentation
3114
3206
  #
3115
3207
  class CreateUserMessage < Struct.new(
@@ -3119,7 +3211,8 @@ module Aws::ElastiCache
3119
3211
  :passwords,
3120
3212
  :access_string,
3121
3213
  :no_password_required,
3122
- :tags)
3214
+ :tags,
3215
+ :authentication_mode)
3123
3216
  SENSITIVE = []
3124
3217
  include Aws::Structure
3125
3218
  end
@@ -4216,7 +4309,7 @@ module Aws::ElastiCache
4216
4309
  #
4217
4310
  # * Current generation:
4218
4311
  #
4219
- # **M6g node types:** (available only for Redis engine version
4312
+ # **M6g node types** (available only for Redis engine version
4220
4313
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4221
4314
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
4222
4315
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -4234,7 +4327,7 @@ module Aws::ElastiCache
4234
4327
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
4235
4328
  #
4236
4329
  # **T4g node types** (available only for Redis engine version
4237
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4330
+ # 5.0.6 onward and Memcached engine version 1.5.16 onward):
4238
4331
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
4239
4332
  #
4240
4333
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -4263,17 +4356,6 @@ module Aws::ElastiCache
4263
4356
  #
4264
4357
  # **C1 node types:** `cache.c1.xlarge`
4265
4358
  #
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
4359
  # * Memory optimized:
4278
4360
  #
4279
4361
  # * Current generation:
@@ -4416,8 +4498,8 @@ module Aws::ElastiCache
4416
4498
  #
4417
4499
  # * Current generation:
4418
4500
  #
4419
- # **M6g node types:** (available only for Redis engine version
4420
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward)
4501
+ # **M6g node types** (available only for Redis engine version
4502
+ # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4421
4503
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
4422
4504
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
4423
4505
  # `cache.m6g.16xlarge`
@@ -4434,7 +4516,7 @@ module Aws::ElastiCache
4434
4516
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
4435
4517
  #
4436
4518
  # **T4g node types** (available only for Redis engine version
4437
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4519
+ # 5.0.6 onward and Memcached engine version 1.5.16 onward):
4438
4520
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
4439
4521
  #
4440
4522
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -4463,17 +4545,6 @@ module Aws::ElastiCache
4463
4545
  #
4464
4546
  # **C1 node types:** `cache.c1.xlarge`
4465
4547
  #
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
4548
  # * Memory optimized:
4478
4549
  #
4479
4550
  # * Current generation:
@@ -5920,6 +5991,7 @@ module Aws::ElastiCache
5920
5991
  # enabled: false,
5921
5992
  # },
5922
5993
  # ],
5994
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
5923
5995
  # }
5924
5996
  #
5925
5997
  # @!attribute [rw] cache_cluster_id
@@ -6255,6 +6327,17 @@ module Aws::ElastiCache
6255
6327
  # Specifies the destination, format and type of the logs.
6256
6328
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
6257
6329
  #
6330
+ # @!attribute [rw] ip_discovery
6331
+ # The network type you choose when modifying a cluster, either `ipv4`
6332
+ # \| `ipv6`. IPv6 is supported for workloads using Redis engine
6333
+ # version 6.2 onward or Memcached engine version 1.6.6 on all
6334
+ # instances built on the [Nitro system][1].
6335
+ #
6336
+ #
6337
+ #
6338
+ # [1]: https://aws.amazon.com/ec2/nitro/
6339
+ # @return [String]
6340
+ #
6258
6341
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
6259
6342
  #
6260
6343
  class ModifyCacheClusterMessage < Struct.new(
@@ -6277,7 +6360,8 @@ module Aws::ElastiCache
6277
6360
  :cache_node_type,
6278
6361
  :auth_token,
6279
6362
  :auth_token_update_strategy,
6280
- :log_delivery_configurations)
6363
+ :log_delivery_configurations,
6364
+ :ip_discovery)
6281
6365
  SENSITIVE = []
6282
6366
  include Aws::Structure
6283
6367
  end
@@ -6514,6 +6598,7 @@ module Aws::ElastiCache
6514
6598
  # enabled: false,
6515
6599
  # },
6516
6600
  # ],
6601
+ # ip_discovery: "ipv4", # accepts ipv4, ipv6
6517
6602
  # }
6518
6603
  #
6519
6604
  # @!attribute [rw] replication_group_id
@@ -6742,6 +6827,17 @@ module Aws::ElastiCache
6742
6827
  # Specifies the destination, format and type of the logs.
6743
6828
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
6744
6829
  #
6830
+ # @!attribute [rw] ip_discovery
6831
+ # The network type you choose when modifying a cluster, either `ipv4`
6832
+ # \| `ipv6`. IPv6 is supported for workloads using Redis engine
6833
+ # version 6.2 onward or Memcached engine version 1.6.6 on all
6834
+ # instances built on the [Nitro system][1].
6835
+ #
6836
+ #
6837
+ #
6838
+ # [1]: https://aws.amazon.com/ec2/nitro/
6839
+ # @return [String]
6840
+ #
6745
6841
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
6746
6842
  #
6747
6843
  class ModifyReplicationGroupMessage < Struct.new(
@@ -6769,7 +6865,8 @@ module Aws::ElastiCache
6769
6865
  :user_group_ids_to_add,
6770
6866
  :user_group_ids_to_remove,
6771
6867
  :remove_user_groups,
6772
- :log_delivery_configurations)
6868
+ :log_delivery_configurations,
6869
+ :ip_discovery)
6773
6870
  SENSITIVE = []
6774
6871
  include Aws::Structure
6775
6872
  end
@@ -6922,6 +7019,10 @@ module Aws::ElastiCache
6922
7019
  # append_access_string: "AccessString",
6923
7020
  # passwords: ["String"],
6924
7021
  # no_password_required: false,
7022
+ # authentication_mode: {
7023
+ # type: "password", # accepts password, no-password-required, iam
7024
+ # passwords: ["String"],
7025
+ # },
6925
7026
  # }
6926
7027
  #
6927
7028
  # @!attribute [rw] user_id
@@ -6944,6 +7045,10 @@ module Aws::ElastiCache
6944
7045
  # Indicates no password is required for the user.
6945
7046
  # @return [Boolean]
6946
7047
  #
7048
+ # @!attribute [rw] authentication_mode
7049
+ # Specifies how to authenticate the user.
7050
+ # @return [Types::AuthenticationMode]
7051
+ #
6947
7052
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyUserMessage AWS API Documentation
6948
7053
  #
6949
7054
  class ModifyUserMessage < Struct.new(
@@ -6951,7 +7056,8 @@ module Aws::ElastiCache
6951
7056
  :access_string,
6952
7057
  :append_access_string,
6953
7058
  :passwords,
6954
- :no_password_required)
7059
+ :no_password_required,
7060
+ :authentication_mode)
6955
7061
  SENSITIVE = []
6956
7062
  include Aws::Structure
6957
7063
  end
@@ -7926,12 +8032,34 @@ module Aws::ElastiCache
7926
8032
  # @return [String]
7927
8033
  #
7928
8034
  # @!attribute [rw] auto_minor_version_upgrade
7929
- #  If you are running Redis engine version 6.0 or later, set this
8035
+ # If you are running Redis engine version 6.0 or later, set this
7930
8036
  # parameter to yes if you want to opt-in to the next auto minor
7931
8037
  # version upgrade campaign. This parameter is disabled for previous
7932
- # versions. 
8038
+ # versions.
7933
8039
  # @return [Boolean]
7934
8040
  #
8041
+ # @!attribute [rw] network_type
8042
+ # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
8043
+ # for workloads using Redis engine version 6.2 onward or Memcached
8044
+ # engine version 1.6.6 on all instances built on the [Nitro
8045
+ # system][1].
8046
+ #
8047
+ #
8048
+ #
8049
+ # [1]: https://aws.amazon.com/ec2/nitro/
8050
+ # @return [String]
8051
+ #
8052
+ # @!attribute [rw] ip_discovery
8053
+ # The network type you choose when modifying a cluster, either `ipv4`
8054
+ # \| `ipv6`. IPv6 is supported for workloads using Redis engine
8055
+ # version 6.2 onward or Memcached engine version 1.6.6 on all
8056
+ # instances built on the [Nitro system][1].
8057
+ #
8058
+ #
8059
+ #
8060
+ # [1]: https://aws.amazon.com/ec2/nitro/
8061
+ # @return [String]
8062
+ #
7935
8063
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7936
8064
  #
7937
8065
  class ReplicationGroup < Struct.new(
@@ -7961,7 +8089,9 @@ module Aws::ElastiCache
7961
8089
  :log_delivery_configurations,
7962
8090
  :replication_group_create_time,
7963
8091
  :data_tiering,
7964
- :auto_minor_version_upgrade)
8092
+ :auto_minor_version_upgrade,
8093
+ :network_type,
8094
+ :ip_discovery)
7965
8095
  SENSITIVE = []
7966
8096
  include Aws::Structure
7967
8097
  end
@@ -8076,7 +8206,7 @@ module Aws::ElastiCache
8076
8206
  #
8077
8207
  # * Current generation:
8078
8208
  #
8079
- # **M6g node types:** (available only for Redis engine version
8209
+ # **M6g node types** (available only for Redis engine version
8080
8210
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
8081
8211
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
8082
8212
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -8123,17 +8253,6 @@ module Aws::ElastiCache
8123
8253
  #
8124
8254
  # **C1 node types:** `cache.c1.xlarge`
8125
8255
  #
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
8256
  # * Memory optimized:
8138
8257
  #
8139
8258
  # * Current generation:
@@ -8306,7 +8425,7 @@ module Aws::ElastiCache
8306
8425
  #
8307
8426
  # * Current generation:
8308
8427
  #
8309
- # **M6g node types:** (available only for Redis engine version
8428
+ # **M6g node types** (available only for Redis engine version
8310
8429
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
8311
8430
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
8312
8431
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
@@ -8353,17 +8472,6 @@ module Aws::ElastiCache
8353
8472
  #
8354
8473
  # **C1 node types:** `cache.c1.xlarge`
8355
8474
  #
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
8475
  # * Memory optimized:
8368
8476
  #
8369
8477
  # * Current generation:
@@ -8814,8 +8922,7 @@ module Aws::ElastiCache
8814
8922
  # * Current generation:
8815
8923
  #
8816
8924
  # **M6g node types** (available only for Redis engine version
8817
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
8818
- #
8925
+ # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
8819
8926
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
8820
8927
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
8821
8928
  # `cache.m6g.16xlarge`
@@ -8833,7 +8940,6 @@ module Aws::ElastiCache
8833
8940
  #
8834
8941
  # **T4g node types** (available only for Redis engine version
8835
8942
  # 5.0.6 onward and Memcached engine version 1.5.16 onward):
8836
- #
8837
8943
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
8838
8944
  #
8839
8945
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -8862,17 +8968,6 @@ module Aws::ElastiCache
8862
8968
  #
8863
8969
  # **C1 node types:** `cache.c1.xlarge`
8864
8970
  #
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
8971
  # * Memory optimized:
8877
8972
  #
8878
8973
  # * Current generation:
@@ -8888,10 +8983,6 @@ module Aws::ElastiCache
8888
8983
  #
8889
8984
  # </note>
8890
8985
  #
8891
- # <note markdown="1"> For region availability, see [Supported Node Types][1]
8892
- #
8893
- # </note>
8894
- #
8895
8986
  # **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
8896
8987
  # `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
8897
8988
  # `cache.r5.24xlarge`
@@ -9195,12 +9286,23 @@ module Aws::ElastiCache
9195
9286
  # The outpost ARN of the subnet.
9196
9287
  # @return [Types::SubnetOutpost]
9197
9288
  #
9289
+ # @!attribute [rw] supported_network_types
9290
+ # Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
9291
+ # workloads using Redis engine version 6.2 onward or Memcached engine
9292
+ # version 1.6.6 on all instances built on the [Nitro system][1].
9293
+ #
9294
+ #
9295
+ #
9296
+ # [1]: https://aws.amazon.com/ec2/nitro/
9297
+ # @return [Array<String>]
9298
+ #
9198
9299
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Subnet AWS API Documentation
9199
9300
  #
9200
9301
  class Subnet < Struct.new(
9201
9302
  :subnet_identifier,
9202
9303
  :subnet_availability_zone,
9203
- :subnet_outpost)
9304
+ :subnet_outpost,
9305
+ :supported_network_types)
9204
9306
  SENSITIVE = []
9205
9307
  include Aws::Structure
9206
9308
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticache/customizations'
53
53
  # @!group service
54
54
  module Aws::ElastiCache
55
55
 
56
- GEM_VERSION = '1.80.0'
56
+ GEM_VERSION = '1.82.0'
57
57
 
58
58
  end
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.80.0
4
+ version: 1.82.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-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core