aws-sdk-elasticache 1.76.0 → 1.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0714d6abf453fd72a6941e7a189bede8e9bea57e46cf0909345037c507e0f8fa
4
- data.tar.gz: a1af5f8885eb87c5649ff9a22c82a843d16e6728edcad86db7b6564598de329b
3
+ metadata.gz: d3146ae7ef46b48bd6baa863832e858f9826091c91a0508e804c74b6dd98ad06
4
+ data.tar.gz: b444bcf1be4aceec6fc8c520572257eddceed98aeadddccd5346eec17642a95c
5
5
  SHA512:
6
- metadata.gz: cd9ba2019b757dc80924ee24882ee6326ce5c65bbe60a6f8b8bf4b371ee3d70c3a1f90cc363465f23b040e0eb53567bcf603af2bed166428c6c1eb47da5432eb
7
- data.tar.gz: e38461a7de1d12dd83333be7c18746f81f036144ecc0edea7e5bd883987768d071367815595b62a95c27a8c26f0c1f584ce31eeb95efec60b349b1b1bfb40bba
6
+ metadata.gz: e21be0e1707979199700a1d06abebbdb0311439cbf3f03384d72ac5f301e7b8f86a91f11fcad938df01712576080bdea4b91882fd2b4aea7443265266c0e45b6
7
+ data.tar.gz: b25e49c64ad4b6e565ce88297e72ac2854fcd8c345550e6f0358db06e64c55746a2ee40125aaab4dab3a9d808be54adad03cef98ba1bb1a0a861befdb77ce58c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2022-07-18)
5
+ ------------------
6
+
7
+ * Feature - Adding AutoMinorVersionUpgrade in the DescribeReplicationGroups API
8
+
9
+ 1.78.0 (2022-05-23)
10
+ ------------------
11
+
12
+ * Feature - Added support for encryption in transit for Memcached clusters. Customers can now launch Memcached cluster with encryption in transit enabled when using Memcached version 1.6.12 or later.
13
+
14
+ 1.77.0 (2022-04-21)
15
+ ------------------
16
+
17
+ * Feature - Doc only update for ElastiCache
18
+
4
19
  1.76.0 (2022-03-23)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.79.0
@@ -715,6 +715,7 @@ module Aws::ElastiCache
715
715
  # resp.replication_group.log_delivery_configurations[0].message #=> String
716
716
  # resp.replication_group.replication_group_create_time #=> Time
717
717
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
718
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
718
719
  #
719
720
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
720
721
  #
@@ -1080,7 +1081,9 @@ module Aws::ElastiCache
1080
1081
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
1081
1082
  # `cache.t2.medium`
1082
1083
  #
1083
- # * Previous generation: (not recommended)
1084
+ # * Previous generation: (not recommended. Existing clusters are still
1085
+ # supported but creation of new clusters is not supported for these
1086
+ # types.)
1084
1087
  #
1085
1088
  # **T1 node types:** `cache.t1.micro`
1086
1089
  #
@@ -1092,7 +1095,9 @@ module Aws::ElastiCache
1092
1095
  #
1093
1096
  # * Compute optimized:
1094
1097
  #
1095
- # * Previous generation: (not recommended)
1098
+ # * Previous generation: (not recommended. Existing clusters are still
1099
+ # supported but creation of new clusters is not supported for these
1100
+ # types.)
1096
1101
  #
1097
1102
  # **C1 node types:** `cache.c1.xlarge`
1098
1103
  #
@@ -1119,7 +1124,9 @@ module Aws::ElastiCache
1119
1124
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
1120
1125
  # `cache.r4.16xlarge`
1121
1126
  #
1122
- # * Previous generation: (not recommended)
1127
+ # * Previous generation: (not recommended. Existing clusters are still
1128
+ # supported but creation of new clusters is not supported for these
1129
+ # types.)
1123
1130
  #
1124
1131
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
1125
1132
  # `cache.m2.4xlarge`
@@ -1304,6 +1311,15 @@ module Aws::ElastiCache
1304
1311
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
1305
1312
  # Specifies the destination, format and type of the logs.
1306
1313
  #
1314
+ # @option params [Boolean] :transit_encryption_enabled
1315
+ # A flag that enables in-transit encryption when set to true. You cannot
1316
+ # modify the value of `TransitEncryptionEnabled` after the cluster is
1317
+ # created. To enable in-transit encryption on a cluster you must set
1318
+ # `TransitEncryptionEnabled` to true when you create a cluster.
1319
+ #
1320
+ # **Required:** Only available when creating a cache cluster in an
1321
+ # Amazon VPC using Memcached version `1.6.12` or later.
1322
+ #
1307
1323
  # @return [Types::CreateCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1308
1324
  #
1309
1325
  # * {Types::CreateCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
@@ -1447,6 +1463,7 @@ module Aws::ElastiCache
1447
1463
  # enabled: false,
1448
1464
  # },
1449
1465
  # ],
1466
+ # transit_encryption_enabled: false,
1450
1467
  # })
1451
1468
  #
1452
1469
  # @example Response structure
@@ -2081,7 +2098,9 @@ module Aws::ElastiCache
2081
2098
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
2082
2099
  # `cache.t2.medium`
2083
2100
  #
2084
- # * Previous generation: (not recommended)
2101
+ # * Previous generation: (not recommended. Existing clusters are still
2102
+ # supported but creation of new clusters is not supported for these
2103
+ # types.)
2085
2104
  #
2086
2105
  # **T1 node types:** `cache.t1.micro`
2087
2106
  #
@@ -2093,7 +2112,9 @@ module Aws::ElastiCache
2093
2112
  #
2094
2113
  # * Compute optimized:
2095
2114
  #
2096
- # * Previous generation: (not recommended)
2115
+ # * Previous generation: (not recommended. Existing clusters are still
2116
+ # supported but creation of new clusters is not supported for these
2117
+ # types.)
2097
2118
  #
2098
2119
  # **C1 node types:** `cache.c1.xlarge`
2099
2120
  #
@@ -2130,7 +2151,9 @@ module Aws::ElastiCache
2130
2151
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
2131
2152
  # `cache.r4.16xlarge`
2132
2153
  #
2133
- # * Previous generation: (not recommended)
2154
+ # * Previous generation: (not recommended. Existing clusters are still
2155
+ # supported but creation of new clusters is not supported for these
2156
+ # types.)
2134
2157
  #
2135
2158
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
2136
2159
  # `cache.m2.4xlarge`
@@ -2615,6 +2638,7 @@ module Aws::ElastiCache
2615
2638
  # resp.replication_group.log_delivery_configurations[0].message #=> String
2616
2639
  # resp.replication_group.replication_group_create_time #=> Time
2617
2640
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
2641
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
2618
2642
  #
2619
2643
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2620
2644
  #
@@ -3208,6 +3232,7 @@ module Aws::ElastiCache
3208
3232
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3209
3233
  # resp.replication_group.replication_group_create_time #=> Time
3210
3234
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3235
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
3211
3236
  #
3212
3237
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3213
3238
  #
@@ -3697,6 +3722,7 @@ module Aws::ElastiCache
3697
3722
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3698
3723
  # resp.replication_group.replication_group_create_time #=> Time
3699
3724
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3725
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
3700
3726
  #
3701
3727
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3702
3728
  #
@@ -6312,6 +6338,7 @@ module Aws::ElastiCache
6312
6338
  # resp.replication_groups[0].log_delivery_configurations[0].message #=> String
6313
6339
  # resp.replication_groups[0].replication_group_create_time #=> Time
6314
6340
  # resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
6341
+ # resp.replication_groups[0].auto_minor_version_upgrade #=> Boolean
6315
6342
  #
6316
6343
  #
6317
6344
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6379,7 +6406,9 @@ module Aws::ElastiCache
6379
6406
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
6380
6407
  # `cache.t2.medium`
6381
6408
  #
6382
- # * Previous generation: (not recommended)
6409
+ # * Previous generation: (not recommended. Existing clusters are still
6410
+ # supported but creation of new clusters is not supported for these
6411
+ # types.)
6383
6412
  #
6384
6413
  # **T1 node types:** `cache.t1.micro`
6385
6414
  #
@@ -6391,7 +6420,9 @@ module Aws::ElastiCache
6391
6420
  #
6392
6421
  # * Compute optimized:
6393
6422
  #
6394
- # * Previous generation: (not recommended)
6423
+ # * Previous generation: (not recommended. Existing clusters are still
6424
+ # supported but creation of new clusters is not supported for these
6425
+ # types.)
6395
6426
  #
6396
6427
  # **C1 node types:** `cache.c1.xlarge`
6397
6428
  #
@@ -6428,7 +6459,9 @@ module Aws::ElastiCache
6428
6459
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
6429
6460
  # `cache.r4.16xlarge`
6430
6461
  #
6431
- # * Previous generation: (not recommended)
6462
+ # * Previous generation: (not recommended. Existing clusters are still
6463
+ # supported but creation of new clusters is not supported for these
6464
+ # types.)
6432
6465
  #
6433
6466
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
6434
6467
  # `cache.m2.4xlarge`
@@ -6595,7 +6628,9 @@ module Aws::ElastiCache
6595
6628
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
6596
6629
  # `cache.t2.medium`
6597
6630
  #
6598
- # * Previous generation: (not recommended)
6631
+ # * Previous generation: (not recommended. Existing clusters are still
6632
+ # supported but creation of new clusters is not supported for these
6633
+ # types.)
6599
6634
  #
6600
6635
  # **T1 node types:** `cache.t1.micro`
6601
6636
  #
@@ -6607,7 +6642,9 @@ module Aws::ElastiCache
6607
6642
  #
6608
6643
  # * Compute optimized:
6609
6644
  #
6610
- # * Previous generation: (not recommended)
6645
+ # * Previous generation: (not recommended. Existing clusters are still
6646
+ # supported but creation of new clusters is not supported for these
6647
+ # types.)
6611
6648
  #
6612
6649
  # **C1 node types:** `cache.c1.xlarge`
6613
6650
  #
@@ -6644,7 +6681,9 @@ module Aws::ElastiCache
6644
6681
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
6645
6682
  # `cache.r4.16xlarge`
6646
6683
  #
6647
- # * Previous generation: (not recommended)
6684
+ # * Previous generation: (not recommended. Existing clusters are still
6685
+ # supported but creation of new clusters is not supported for these
6686
+ # types.)
6648
6687
  #
6649
6688
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
6650
6689
  # `cache.m2.4xlarge`
@@ -7839,6 +7878,7 @@ module Aws::ElastiCache
7839
7878
  # resp.replication_group.log_delivery_configurations[0].message #=> String
7840
7879
  # resp.replication_group.replication_group_create_time #=> Time
7841
7880
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
7881
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
7842
7882
  #
7843
7883
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7844
7884
  #
@@ -9141,6 +9181,7 @@ module Aws::ElastiCache
9141
9181
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9142
9182
  # resp.replication_group.replication_group_create_time #=> Time
9143
9183
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9184
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
9144
9185
  #
9145
9186
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9146
9187
  #
@@ -9285,6 +9326,7 @@ module Aws::ElastiCache
9285
9326
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9286
9327
  # resp.replication_group.replication_group_create_time #=> Time
9287
9328
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9329
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
9288
9330
  #
9289
9331
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9290
9332
  #
@@ -10034,6 +10076,7 @@ module Aws::ElastiCache
10034
10076
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10035
10077
  # resp.replication_group.replication_group_create_time #=> Time
10036
10078
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10079
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
10037
10080
  #
10038
10081
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
10039
10082
  #
@@ -10192,6 +10235,7 @@ module Aws::ElastiCache
10192
10235
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10193
10236
  # resp.replication_group.replication_group_create_time #=> Time
10194
10237
  # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10238
+ # resp.replication_group.auto_minor_version_upgrade #=> Boolean
10195
10239
  #
10196
10240
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10197
10241
  #
@@ -10215,7 +10259,7 @@ module Aws::ElastiCache
10215
10259
  params: params,
10216
10260
  config: config)
10217
10261
  context[:gem_name] = 'aws-sdk-elasticache'
10218
- context[:gem_version] = '1.76.0'
10262
+ context[:gem_version] = '1.79.0'
10219
10263
  Seahorse::Client::Request.new(handlers, context)
10220
10264
  end
10221
10265
 
@@ -654,6 +654,7 @@ module Aws::ElastiCache
654
654
  CreateCacheClusterMessage.add_member(:preferred_outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "PreferredOutpostArn"))
655
655
  CreateCacheClusterMessage.add_member(:preferred_outpost_arns, Shapes::ShapeRef.new(shape: PreferredOutpostArnList, location_name: "PreferredOutpostArns"))
656
656
  CreateCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
657
+ CreateCacheClusterMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
657
658
  CreateCacheClusterMessage.struct_class = Types::CreateCacheClusterMessage
658
659
 
659
660
  CreateCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
@@ -1454,6 +1455,7 @@ module Aws::ElastiCache
1454
1455
  ReplicationGroup.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
1455
1456
  ReplicationGroup.add_member(:replication_group_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationGroupCreateTime"))
1456
1457
  ReplicationGroup.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
1458
+ ReplicationGroup.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoMinorVersionUpgrade"))
1457
1459
  ReplicationGroup.struct_class = Types::ReplicationGroup
1458
1460
 
1459
1461
  ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
@@ -314,7 +314,9 @@ module Aws::ElastiCache
314
314
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
315
315
  # `cache.t2.medium`
316
316
  #
317
- # * Previous generation: (not recommended)
317
+ # * Previous generation: (not recommended. Existing clusters are
318
+ # still supported but creation of new clusters is not supported
319
+ # for these types.)
318
320
  #
319
321
  # **T1 node types:** `cache.t1.micro`
320
322
  #
@@ -326,7 +328,9 @@ module Aws::ElastiCache
326
328
  #
327
329
  # * Compute optimized:
328
330
  #
329
- # * Previous generation: (not recommended)
331
+ # * Previous generation: (not recommended. Existing clusters are
332
+ # still supported but creation of new clusters is not supported
333
+ # for these types.)
330
334
  #
331
335
  # **C1 node types:** `cache.c1.xlarge`
332
336
  #
@@ -364,7 +368,9 @@ module Aws::ElastiCache
364
368
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
365
369
  # `cache.r4.16xlarge`
366
370
  #
367
- # * Previous generation: (not recommended)
371
+ # * Previous generation: (not recommended. Existing clusters are
372
+ # still supported but creation of new clusters is not supported
373
+ # for these types.)
368
374
  #
369
375
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
370
376
  # `cache.m2.4xlarge`
@@ -734,7 +740,9 @@ module Aws::ElastiCache
734
740
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
735
741
  # `cache.t2.medium`
736
742
  #
737
- # * Previous generation: (not recommended)
743
+ # * Previous generation: (not recommended. Existing clusters are still
744
+ # supported but creation of new clusters is not supported for these
745
+ # types.)
738
746
  #
739
747
  # **T1 node types:** `cache.t1.micro`
740
748
  #
@@ -746,7 +754,9 @@ module Aws::ElastiCache
746
754
  #
747
755
  # * Compute optimized:
748
756
  #
749
- # * Previous generation: (not recommended)
757
+ # * Previous generation: (not recommended. Existing clusters are still
758
+ # supported but creation of new clusters is not supported for these
759
+ # types.)
750
760
  #
751
761
  # **C1 node types:** `cache.c1.xlarge`
752
762
  #
@@ -783,7 +793,9 @@ module Aws::ElastiCache
783
793
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
784
794
  # `cache.r4.16xlarge`
785
795
  #
786
- # * Previous generation: (not recommended)
796
+ # * Previous generation: (not recommended. Existing clusters are still
797
+ # supported but creation of new clusters is not supported for these
798
+ # types.)
787
799
  #
788
800
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
789
801
  # `cache.m2.4xlarge`
@@ -1614,6 +1626,7 @@ module Aws::ElastiCache
1614
1626
  # enabled: false,
1615
1627
  # },
1616
1628
  # ],
1629
+ # transit_encryption_enabled: false,
1617
1630
  # }
1618
1631
  #
1619
1632
  # @!attribute [rw] cache_cluster_id
@@ -1746,7 +1759,9 @@ module Aws::ElastiCache
1746
1759
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
1747
1760
  # `cache.t2.medium`
1748
1761
  #
1749
- # * Previous generation: (not recommended)
1762
+ # * Previous generation: (not recommended. Existing clusters are
1763
+ # still supported but creation of new clusters is not supported
1764
+ # for these types.)
1750
1765
  #
1751
1766
  # **T1 node types:** `cache.t1.micro`
1752
1767
  #
@@ -1758,7 +1773,9 @@ module Aws::ElastiCache
1758
1773
  #
1759
1774
  # * Compute optimized:
1760
1775
  #
1761
- # * Previous generation: (not recommended)
1776
+ # * Previous generation: (not recommended. Existing clusters are
1777
+ # still supported but creation of new clusters is not supported
1778
+ # for these types.)
1762
1779
  #
1763
1780
  # **C1 node types:** `cache.c1.xlarge`
1764
1781
  #
@@ -1785,7 +1802,9 @@ module Aws::ElastiCache
1785
1802
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
1786
1803
  # `cache.r4.16xlarge`
1787
1804
  #
1788
- # * Previous generation: (not recommended)
1805
+ # * Previous generation: (not recommended. Existing clusters are
1806
+ # still supported but creation of new clusters is not supported
1807
+ # for these types.)
1789
1808
  #
1790
1809
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
1791
1810
  # `cache.m2.4xlarge`
@@ -1994,6 +2013,17 @@ module Aws::ElastiCache
1994
2013
  # Specifies the destination, format and type of the logs.
1995
2014
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
1996
2015
  #
2016
+ # @!attribute [rw] transit_encryption_enabled
2017
+ # A flag that enables in-transit encryption when set to true. You
2018
+ # cannot modify the value of `TransitEncryptionEnabled` after the
2019
+ # cluster is created. To enable in-transit encryption on a cluster you
2020
+ # must set `TransitEncryptionEnabled` to true when you create a
2021
+ # cluster.
2022
+ #
2023
+ # **Required:** Only available when creating a cache cluster in an
2024
+ # Amazon VPC using Memcached version `1.6.12` or later.
2025
+ # @return [Boolean]
2026
+ #
1997
2027
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
1998
2028
  #
1999
2029
  class CreateCacheClusterMessage < Struct.new(
@@ -2023,7 +2053,8 @@ module Aws::ElastiCache
2023
2053
  :outpost_mode,
2024
2054
  :preferred_outpost_arn,
2025
2055
  :preferred_outpost_arns,
2026
- :log_delivery_configurations)
2056
+ :log_delivery_configurations,
2057
+ :transit_encryption_enabled)
2027
2058
  SENSITIVE = []
2028
2059
  include Aws::Structure
2029
2060
  end
@@ -2531,7 +2562,9 @@ module Aws::ElastiCache
2531
2562
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
2532
2563
  # `cache.t2.medium`
2533
2564
  #
2534
- # * Previous generation: (not recommended)
2565
+ # * Previous generation: (not recommended. Existing clusters are
2566
+ # still supported but creation of new clusters is not supported
2567
+ # for these types.)
2535
2568
  #
2536
2569
  # **T1 node types:** `cache.t1.micro`
2537
2570
  #
@@ -2543,7 +2576,9 @@ module Aws::ElastiCache
2543
2576
  #
2544
2577
  # * Compute optimized:
2545
2578
  #
2546
- # * Previous generation: (not recommended)
2579
+ # * Previous generation: (not recommended. Existing clusters are
2580
+ # still supported but creation of new clusters is not supported
2581
+ # for these types.)
2547
2582
  #
2548
2583
  # **C1 node types:** `cache.c1.xlarge`
2549
2584
  #
@@ -2581,7 +2616,9 @@ module Aws::ElastiCache
2581
2616
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
2582
2617
  # `cache.r4.16xlarge`
2583
2618
  #
2584
- # * Previous generation: (not recommended)
2619
+ # * Previous generation: (not recommended. Existing clusters are
2620
+ # still supported but creation of new clusters is not supported
2621
+ # for these types.)
2585
2622
  #
2586
2623
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
2587
2624
  # `cache.m2.4xlarge`
@@ -4206,7 +4243,9 @@ module Aws::ElastiCache
4206
4243
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
4207
4244
  # `cache.t2.medium`
4208
4245
  #
4209
- # * Previous generation: (not recommended)
4246
+ # * Previous generation: (not recommended. Existing clusters are
4247
+ # still supported but creation of new clusters is not supported
4248
+ # for these types.)
4210
4249
  #
4211
4250
  # **T1 node types:** `cache.t1.micro`
4212
4251
  #
@@ -4218,7 +4257,9 @@ module Aws::ElastiCache
4218
4257
  #
4219
4258
  # * Compute optimized:
4220
4259
  #
4221
- # * Previous generation: (not recommended)
4260
+ # * Previous generation: (not recommended. Existing clusters are
4261
+ # still supported but creation of new clusters is not supported
4262
+ # for these types.)
4222
4263
  #
4223
4264
  # **C1 node types:** `cache.c1.xlarge`
4224
4265
  #
@@ -4256,7 +4297,9 @@ module Aws::ElastiCache
4256
4297
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
4257
4298
  # `cache.r4.16xlarge`
4258
4299
  #
4259
- # * Previous generation: (not recommended)
4300
+ # * Previous generation: (not recommended. Existing clusters are
4301
+ # still supported but creation of new clusters is not supported
4302
+ # for these types.)
4260
4303
  #
4261
4304
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
4262
4305
  # `cache.m2.4xlarge`
@@ -4400,7 +4443,9 @@ module Aws::ElastiCache
4400
4443
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
4401
4444
  # `cache.t2.medium`
4402
4445
  #
4403
- # * Previous generation: (not recommended)
4446
+ # * Previous generation: (not recommended. Existing clusters are
4447
+ # still supported but creation of new clusters is not supported
4448
+ # for these types.)
4404
4449
  #
4405
4450
  # **T1 node types:** `cache.t1.micro`
4406
4451
  #
@@ -4412,7 +4457,9 @@ module Aws::ElastiCache
4412
4457
  #
4413
4458
  # * Compute optimized:
4414
4459
  #
4415
- # * Previous generation: (not recommended)
4460
+ # * Previous generation: (not recommended. Existing clusters are
4461
+ # still supported but creation of new clusters is not supported
4462
+ # for these types.)
4416
4463
  #
4417
4464
  # **C1 node types:** `cache.c1.xlarge`
4418
4465
  #
@@ -4450,7 +4497,9 @@ module Aws::ElastiCache
4450
4497
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
4451
4498
  # `cache.r4.16xlarge`
4452
4499
  #
4453
- # * Previous generation: (not recommended)
4500
+ # * Previous generation: (not recommended. Existing clusters are
4501
+ # still supported but creation of new clusters is not supported
4502
+ # for these types.)
4454
4503
  #
4455
4504
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
4456
4505
  # `cache.m2.4xlarge`
@@ -7876,6 +7925,13 @@ module Aws::ElastiCache
7876
7925
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
7877
7926
  # @return [String]
7878
7927
  #
7928
+ # @!attribute [rw] auto_minor_version_upgrade
7929
+ #  If you are running Redis engine version 6.0 or later, set this
7930
+ # parameter to yes if you want to opt-in to the next auto minor
7931
+ # version upgrade campaign. This parameter is disabled for previous
7932
+ # versions. 
7933
+ # @return [Boolean]
7934
+ #
7879
7935
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7880
7936
  #
7881
7937
  class ReplicationGroup < Struct.new(
@@ -7904,7 +7960,8 @@ module Aws::ElastiCache
7904
7960
  :user_group_ids,
7905
7961
  :log_delivery_configurations,
7906
7962
  :replication_group_create_time,
7907
- :data_tiering)
7963
+ :data_tiering,
7964
+ :auto_minor_version_upgrade)
7908
7965
  SENSITIVE = []
7909
7966
  include Aws::Structure
7910
7967
  end
@@ -8046,7 +8103,9 @@ module Aws::ElastiCache
8046
8103
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8047
8104
  # `cache.t2.medium`
8048
8105
  #
8049
- # * Previous generation: (not recommended)
8106
+ # * Previous generation: (not recommended. Existing clusters are
8107
+ # still supported but creation of new clusters is not supported
8108
+ # for these types.)
8050
8109
  #
8051
8110
  # **T1 node types:** `cache.t1.micro`
8052
8111
  #
@@ -8058,7 +8117,9 @@ module Aws::ElastiCache
8058
8117
  #
8059
8118
  # * Compute optimized:
8060
8119
  #
8061
- # * Previous generation: (not recommended)
8120
+ # * Previous generation: (not recommended. Existing clusters are
8121
+ # still supported but creation of new clusters is not supported
8122
+ # for these types.)
8062
8123
  #
8063
8124
  # **C1 node types:** `cache.c1.xlarge`
8064
8125
  #
@@ -8096,7 +8157,9 @@ module Aws::ElastiCache
8096
8157
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8097
8158
  # `cache.r4.16xlarge`
8098
8159
  #
8099
- # * Previous generation: (not recommended)
8160
+ # * Previous generation: (not recommended. Existing clusters are
8161
+ # still supported but creation of new clusters is not supported
8162
+ # for these types.)
8100
8163
  #
8101
8164
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8102
8165
  # `cache.m2.4xlarge`
@@ -8270,7 +8333,9 @@ module Aws::ElastiCache
8270
8333
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8271
8334
  # `cache.t2.medium`
8272
8335
  #
8273
- # * Previous generation: (not recommended)
8336
+ # * Previous generation: (not recommended. Existing clusters are
8337
+ # still supported but creation of new clusters is not supported
8338
+ # for these types.)
8274
8339
  #
8275
8340
  # **T1 node types:** `cache.t1.micro`
8276
8341
  #
@@ -8282,7 +8347,9 @@ module Aws::ElastiCache
8282
8347
  #
8283
8348
  # * Compute optimized:
8284
8349
  #
8285
- # * Previous generation: (not recommended)
8350
+ # * Previous generation: (not recommended. Existing clusters are
8351
+ # still supported but creation of new clusters is not supported
8352
+ # for these types.)
8286
8353
  #
8287
8354
  # **C1 node types:** `cache.c1.xlarge`
8288
8355
  #
@@ -8320,7 +8387,9 @@ module Aws::ElastiCache
8320
8387
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8321
8388
  # `cache.r4.16xlarge`
8322
8389
  #
8323
- # * Previous generation: (not recommended)
8390
+ # * Previous generation: (not recommended. Existing clusters are
8391
+ # still supported but creation of new clusters is not supported
8392
+ # for these types.)
8324
8393
  #
8325
8394
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8326
8395
  # `cache.m2.4xlarge`
@@ -8773,7 +8842,9 @@ module Aws::ElastiCache
8773
8842
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8774
8843
  # `cache.t2.medium`
8775
8844
  #
8776
- # * Previous generation: (not recommended)
8845
+ # * Previous generation: (not recommended. Existing clusters are
8846
+ # still supported but creation of new clusters is not supported
8847
+ # for these types.)
8777
8848
  #
8778
8849
  # **T1 node types:** `cache.t1.micro`
8779
8850
  #
@@ -8785,7 +8856,9 @@ module Aws::ElastiCache
8785
8856
  #
8786
8857
  # * Compute optimized:
8787
8858
  #
8788
- # * Previous generation: (not recommended)
8859
+ # * Previous generation: (not recommended. Existing clusters are
8860
+ # still supported but creation of new clusters is not supported
8861
+ # for these types.)
8789
8862
  #
8790
8863
  # **C1 node types:** `cache.c1.xlarge`
8791
8864
  #
@@ -8827,7 +8900,9 @@ module Aws::ElastiCache
8827
8900
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8828
8901
  # `cache.r4.16xlarge`
8829
8902
  #
8830
- # * Previous generation: (not recommended)
8903
+ # * Previous generation: (not recommended. Existing clusters are
8904
+ # still supported but creation of new clusters is not supported
8905
+ # for these types.)
8831
8906
  #
8832
8907
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8833
8908
  # `cache.m2.4xlarge`
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticache/customizations'
49
49
  # @!group service
50
50
  module Aws::ElastiCache
51
51
 
52
- GEM_VERSION = '1.76.0'
52
+ GEM_VERSION = '1.79.0'
53
53
 
54
54
  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.76.0
4
+ version: 1.79.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-03-23 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core