aws-sdk-elasticache 1.77.0 → 1.78.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: 2c204e709741073ba5a388f2f0186ec8a5b492e8568290e170b4fd39978cd92c
4
- data.tar.gz: 04506e7cd1419082c42e0867ab25f3f9e9cd1ff07a93b1ba18769356c7438af0
3
+ metadata.gz: ad742c5fcd45c8c1319ebb948bfee75165bed83283261385827e034ffd843018
4
+ data.tar.gz: 0b43aa309142a6a6f16f56fcb17924c8cda8c6916c6b4adcb5be95ef38935a5b
5
5
  SHA512:
6
- metadata.gz: 46b5bc518b6afcf8f4724dff833e0fae4ffbb843c4004d4436f9a554205dbd60c53e1c0cdb79715594769414ebd62339e1f530ea97463c56cae649d571353756
7
- data.tar.gz: '0956c87a667def1b05db44d235c0d9845b5f976272031c9c0b72d569378f3ccdade5f91a749dc1065819e4a8719942701d30ca58c3fee584af7e6c460cd9eb74'
6
+ metadata.gz: 4810baf5b2444ed166484ac4246b5aad77021ef14b7b3df55912134c6a28b0d337d0895c4b16f521b357d6bfc5174ac517effae50b03b18befa74c9c0c45b789
7
+ data.tar.gz: '070087916fe270866d95d56905cca1e7a0e1671bde5046256f942f6137278f1dc97b745790fe3e199288e3b0bea53fe7b89f4be9c87f0d0572eb558ad4197d76'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2022-05-23)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.77.0 (2022-04-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -1080,9 +1080,7 @@ module Aws::ElastiCache
1080
1080
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
1081
1081
  # `cache.t2.medium`
1082
1082
  #
1083
- # * Previous generation: (not recommended. Existing clusters are still
1084
- # supported but creation of new clusters is not supported for these
1085
- # types.)
1083
+ # * Previous generation: (not recommended)
1086
1084
  #
1087
1085
  # **T1 node types:** `cache.t1.micro`
1088
1086
  #
@@ -1094,9 +1092,7 @@ module Aws::ElastiCache
1094
1092
  #
1095
1093
  # * Compute optimized:
1096
1094
  #
1097
- # * Previous generation: (not recommended. Existing clusters are still
1098
- # supported but creation of new clusters is not supported for these
1099
- # types.)
1095
+ # * Previous generation: (not recommended)
1100
1096
  #
1101
1097
  # **C1 node types:** `cache.c1.xlarge`
1102
1098
  #
@@ -1123,9 +1119,7 @@ module Aws::ElastiCache
1123
1119
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
1124
1120
  # `cache.r4.16xlarge`
1125
1121
  #
1126
- # * Previous generation: (not recommended. Existing clusters are still
1127
- # supported but creation of new clusters is not supported for these
1128
- # types.)
1122
+ # * Previous generation: (not recommended)
1129
1123
  #
1130
1124
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
1131
1125
  # `cache.m2.4xlarge`
@@ -1310,6 +1304,15 @@ module Aws::ElastiCache
1310
1304
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
1311
1305
  # Specifies the destination, format and type of the logs.
1312
1306
  #
1307
+ # @option params [Boolean] :transit_encryption_enabled
1308
+ # A flag that enables in-transit encryption when set to true. You cannot
1309
+ # modify the value of `TransitEncryptionEnabled` after the cluster is
1310
+ # created. To enable in-transit encryption on a cluster you must set
1311
+ # `TransitEncryptionEnabled` to true when you create a cluster.
1312
+ #
1313
+ # **Required:** Only available when creating a cache cluster in an
1314
+ # Amazon VPC using Memcached version `1.6.12` or later.
1315
+ #
1313
1316
  # @return [Types::CreateCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1314
1317
  #
1315
1318
  # * {Types::CreateCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
@@ -1453,6 +1456,7 @@ module Aws::ElastiCache
1453
1456
  # enabled: false,
1454
1457
  # },
1455
1458
  # ],
1459
+ # transit_encryption_enabled: false,
1456
1460
  # })
1457
1461
  #
1458
1462
  # @example Response structure
@@ -2087,9 +2091,7 @@ module Aws::ElastiCache
2087
2091
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
2088
2092
  # `cache.t2.medium`
2089
2093
  #
2090
- # * Previous generation: (not recommended. Existing clusters are still
2091
- # supported but creation of new clusters is not supported for these
2092
- # types.)
2094
+ # * Previous generation: (not recommended)
2093
2095
  #
2094
2096
  # **T1 node types:** `cache.t1.micro`
2095
2097
  #
@@ -2101,9 +2103,7 @@ module Aws::ElastiCache
2101
2103
  #
2102
2104
  # * Compute optimized:
2103
2105
  #
2104
- # * Previous generation: (not recommended. Existing clusters are still
2105
- # supported but creation of new clusters is not supported for these
2106
- # types.)
2106
+ # * Previous generation: (not recommended)
2107
2107
  #
2108
2108
  # **C1 node types:** `cache.c1.xlarge`
2109
2109
  #
@@ -2140,9 +2140,7 @@ module Aws::ElastiCache
2140
2140
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
2141
2141
  # `cache.r4.16xlarge`
2142
2142
  #
2143
- # * Previous generation: (not recommended. Existing clusters are still
2144
- # supported but creation of new clusters is not supported for these
2145
- # types.)
2143
+ # * Previous generation: (not recommended)
2146
2144
  #
2147
2145
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
2148
2146
  # `cache.m2.4xlarge`
@@ -6391,9 +6389,7 @@ module Aws::ElastiCache
6391
6389
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
6392
6390
  # `cache.t2.medium`
6393
6391
  #
6394
- # * Previous generation: (not recommended. Existing clusters are still
6395
- # supported but creation of new clusters is not supported for these
6396
- # types.)
6392
+ # * Previous generation: (not recommended)
6397
6393
  #
6398
6394
  # **T1 node types:** `cache.t1.micro`
6399
6395
  #
@@ -6405,9 +6401,7 @@ module Aws::ElastiCache
6405
6401
  #
6406
6402
  # * Compute optimized:
6407
6403
  #
6408
- # * Previous generation: (not recommended. Existing clusters are still
6409
- # supported but creation of new clusters is not supported for these
6410
- # types.)
6404
+ # * Previous generation: (not recommended)
6411
6405
  #
6412
6406
  # **C1 node types:** `cache.c1.xlarge`
6413
6407
  #
@@ -6444,9 +6438,7 @@ module Aws::ElastiCache
6444
6438
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
6445
6439
  # `cache.r4.16xlarge`
6446
6440
  #
6447
- # * Previous generation: (not recommended. Existing clusters are still
6448
- # supported but creation of new clusters is not supported for these
6449
- # types.)
6441
+ # * Previous generation: (not recommended)
6450
6442
  #
6451
6443
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
6452
6444
  # `cache.m2.4xlarge`
@@ -6613,9 +6605,7 @@ module Aws::ElastiCache
6613
6605
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
6614
6606
  # `cache.t2.medium`
6615
6607
  #
6616
- # * Previous generation: (not recommended. Existing clusters are still
6617
- # supported but creation of new clusters is not supported for these
6618
- # types.)
6608
+ # * Previous generation: (not recommended)
6619
6609
  #
6620
6610
  # **T1 node types:** `cache.t1.micro`
6621
6611
  #
@@ -6627,9 +6617,7 @@ module Aws::ElastiCache
6627
6617
  #
6628
6618
  # * Compute optimized:
6629
6619
  #
6630
- # * Previous generation: (not recommended. Existing clusters are still
6631
- # supported but creation of new clusters is not supported for these
6632
- # types.)
6620
+ # * Previous generation: (not recommended)
6633
6621
  #
6634
6622
  # **C1 node types:** `cache.c1.xlarge`
6635
6623
  #
@@ -6666,9 +6654,7 @@ module Aws::ElastiCache
6666
6654
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
6667
6655
  # `cache.r4.16xlarge`
6668
6656
  #
6669
- # * Previous generation: (not recommended. Existing clusters are still
6670
- # supported but creation of new clusters is not supported for these
6671
- # types.)
6657
+ # * Previous generation: (not recommended)
6672
6658
  #
6673
6659
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
6674
6660
  # `cache.m2.4xlarge`
@@ -10239,7 +10225,7 @@ module Aws::ElastiCache
10239
10225
  params: params,
10240
10226
  config: config)
10241
10227
  context[:gem_name] = 'aws-sdk-elasticache'
10242
- context[:gem_version] = '1.77.0'
10228
+ context[:gem_version] = '1.78.0'
10243
10229
  Seahorse::Client::Request.new(handlers, context)
10244
10230
  end
10245
10231
 
@@ -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"))
@@ -314,9 +314,7 @@ 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. Existing clusters are
318
- # still supported but creation of new clusters is not supported
319
- # for these types.)
317
+ # * Previous generation: (not recommended)
320
318
  #
321
319
  # **T1 node types:** `cache.t1.micro`
322
320
  #
@@ -328,9 +326,7 @@ module Aws::ElastiCache
328
326
  #
329
327
  # * Compute optimized:
330
328
  #
331
- # * Previous generation: (not recommended. Existing clusters are
332
- # still supported but creation of new clusters is not supported
333
- # for these types.)
329
+ # * Previous generation: (not recommended)
334
330
  #
335
331
  # **C1 node types:** `cache.c1.xlarge`
336
332
  #
@@ -368,9 +364,7 @@ module Aws::ElastiCache
368
364
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
369
365
  # `cache.r4.16xlarge`
370
366
  #
371
- # * Previous generation: (not recommended. Existing clusters are
372
- # still supported but creation of new clusters is not supported
373
- # for these types.)
367
+ # * Previous generation: (not recommended)
374
368
  #
375
369
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
376
370
  # `cache.m2.4xlarge`
@@ -740,9 +734,7 @@ module Aws::ElastiCache
740
734
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
741
735
  # `cache.t2.medium`
742
736
  #
743
- # * Previous generation: (not recommended. Existing clusters are still
744
- # supported but creation of new clusters is not supported for these
745
- # types.)
737
+ # * Previous generation: (not recommended)
746
738
  #
747
739
  # **T1 node types:** `cache.t1.micro`
748
740
  #
@@ -754,9 +746,7 @@ module Aws::ElastiCache
754
746
  #
755
747
  # * Compute optimized:
756
748
  #
757
- # * Previous generation: (not recommended. Existing clusters are still
758
- # supported but creation of new clusters is not supported for these
759
- # types.)
749
+ # * Previous generation: (not recommended)
760
750
  #
761
751
  # **C1 node types:** `cache.c1.xlarge`
762
752
  #
@@ -793,9 +783,7 @@ module Aws::ElastiCache
793
783
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
794
784
  # `cache.r4.16xlarge`
795
785
  #
796
- # * Previous generation: (not recommended. Existing clusters are still
797
- # supported but creation of new clusters is not supported for these
798
- # types.)
786
+ # * Previous generation: (not recommended)
799
787
  #
800
788
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
801
789
  # `cache.m2.4xlarge`
@@ -1626,6 +1614,7 @@ module Aws::ElastiCache
1626
1614
  # enabled: false,
1627
1615
  # },
1628
1616
  # ],
1617
+ # transit_encryption_enabled: false,
1629
1618
  # }
1630
1619
  #
1631
1620
  # @!attribute [rw] cache_cluster_id
@@ -1758,9 +1747,7 @@ module Aws::ElastiCache
1758
1747
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
1759
1748
  # `cache.t2.medium`
1760
1749
  #
1761
- # * Previous generation: (not recommended. Existing clusters are
1762
- # still supported but creation of new clusters is not supported
1763
- # for these types.)
1750
+ # * Previous generation: (not recommended)
1764
1751
  #
1765
1752
  # **T1 node types:** `cache.t1.micro`
1766
1753
  #
@@ -1772,9 +1759,7 @@ module Aws::ElastiCache
1772
1759
  #
1773
1760
  # * Compute optimized:
1774
1761
  #
1775
- # * Previous generation: (not recommended. Existing clusters are
1776
- # still supported but creation of new clusters is not supported
1777
- # for these types.)
1762
+ # * Previous generation: (not recommended)
1778
1763
  #
1779
1764
  # **C1 node types:** `cache.c1.xlarge`
1780
1765
  #
@@ -1801,9 +1786,7 @@ module Aws::ElastiCache
1801
1786
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
1802
1787
  # `cache.r4.16xlarge`
1803
1788
  #
1804
- # * Previous generation: (not recommended. Existing clusters are
1805
- # still supported but creation of new clusters is not supported
1806
- # for these types.)
1789
+ # * Previous generation: (not recommended)
1807
1790
  #
1808
1791
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
1809
1792
  # `cache.m2.4xlarge`
@@ -2012,6 +1995,17 @@ module Aws::ElastiCache
2012
1995
  # Specifies the destination, format and type of the logs.
2013
1996
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
2014
1997
  #
1998
+ # @!attribute [rw] transit_encryption_enabled
1999
+ # A flag that enables in-transit encryption when set to true. You
2000
+ # cannot modify the value of `TransitEncryptionEnabled` after the
2001
+ # cluster is created. To enable in-transit encryption on a cluster you
2002
+ # must set `TransitEncryptionEnabled` to true when you create a
2003
+ # cluster.
2004
+ #
2005
+ # **Required:** Only available when creating a cache cluster in an
2006
+ # Amazon VPC using Memcached version `1.6.12` or later.
2007
+ # @return [Boolean]
2008
+ #
2015
2009
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
2016
2010
  #
2017
2011
  class CreateCacheClusterMessage < Struct.new(
@@ -2041,7 +2035,8 @@ module Aws::ElastiCache
2041
2035
  :outpost_mode,
2042
2036
  :preferred_outpost_arn,
2043
2037
  :preferred_outpost_arns,
2044
- :log_delivery_configurations)
2038
+ :log_delivery_configurations,
2039
+ :transit_encryption_enabled)
2045
2040
  SENSITIVE = []
2046
2041
  include Aws::Structure
2047
2042
  end
@@ -2549,9 +2544,7 @@ module Aws::ElastiCache
2549
2544
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
2550
2545
  # `cache.t2.medium`
2551
2546
  #
2552
- # * Previous generation: (not recommended. Existing clusters are
2553
- # still supported but creation of new clusters is not supported
2554
- # for these types.)
2547
+ # * Previous generation: (not recommended)
2555
2548
  #
2556
2549
  # **T1 node types:** `cache.t1.micro`
2557
2550
  #
@@ -2563,9 +2556,7 @@ module Aws::ElastiCache
2563
2556
  #
2564
2557
  # * Compute optimized:
2565
2558
  #
2566
- # * Previous generation: (not recommended. Existing clusters are
2567
- # still supported but creation of new clusters is not supported
2568
- # for these types.)
2559
+ # * Previous generation: (not recommended)
2569
2560
  #
2570
2561
  # **C1 node types:** `cache.c1.xlarge`
2571
2562
  #
@@ -2603,9 +2594,7 @@ module Aws::ElastiCache
2603
2594
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
2604
2595
  # `cache.r4.16xlarge`
2605
2596
  #
2606
- # * Previous generation: (not recommended. Existing clusters are
2607
- # still supported but creation of new clusters is not supported
2608
- # for these types.)
2597
+ # * Previous generation: (not recommended)
2609
2598
  #
2610
2599
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
2611
2600
  # `cache.m2.4xlarge`
@@ -4230,9 +4219,7 @@ module Aws::ElastiCache
4230
4219
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
4231
4220
  # `cache.t2.medium`
4232
4221
  #
4233
- # * Previous generation: (not recommended. Existing clusters are
4234
- # still supported but creation of new clusters is not supported
4235
- # for these types.)
4222
+ # * Previous generation: (not recommended)
4236
4223
  #
4237
4224
  # **T1 node types:** `cache.t1.micro`
4238
4225
  #
@@ -4244,9 +4231,7 @@ module Aws::ElastiCache
4244
4231
  #
4245
4232
  # * Compute optimized:
4246
4233
  #
4247
- # * Previous generation: (not recommended. Existing clusters are
4248
- # still supported but creation of new clusters is not supported
4249
- # for these types.)
4234
+ # * Previous generation: (not recommended)
4250
4235
  #
4251
4236
  # **C1 node types:** `cache.c1.xlarge`
4252
4237
  #
@@ -4284,9 +4269,7 @@ module Aws::ElastiCache
4284
4269
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
4285
4270
  # `cache.r4.16xlarge`
4286
4271
  #
4287
- # * Previous generation: (not recommended. Existing clusters are
4288
- # still supported but creation of new clusters is not supported
4289
- # for these types.)
4272
+ # * Previous generation: (not recommended)
4290
4273
  #
4291
4274
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
4292
4275
  # `cache.m2.4xlarge`
@@ -4430,9 +4413,7 @@ module Aws::ElastiCache
4430
4413
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
4431
4414
  # `cache.t2.medium`
4432
4415
  #
4433
- # * Previous generation: (not recommended. Existing clusters are
4434
- # still supported but creation of new clusters is not supported
4435
- # for these types.)
4416
+ # * Previous generation: (not recommended)
4436
4417
  #
4437
4418
  # **T1 node types:** `cache.t1.micro`
4438
4419
  #
@@ -4444,9 +4425,7 @@ module Aws::ElastiCache
4444
4425
  #
4445
4426
  # * Compute optimized:
4446
4427
  #
4447
- # * Previous generation: (not recommended. Existing clusters are
4448
- # still supported but creation of new clusters is not supported
4449
- # for these types.)
4428
+ # * Previous generation: (not recommended)
4450
4429
  #
4451
4430
  # **C1 node types:** `cache.c1.xlarge`
4452
4431
  #
@@ -4484,9 +4463,7 @@ module Aws::ElastiCache
4484
4463
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
4485
4464
  # `cache.r4.16xlarge`
4486
4465
  #
4487
- # * Previous generation: (not recommended. Existing clusters are
4488
- # still supported but creation of new clusters is not supported
4489
- # for these types.)
4466
+ # * Previous generation: (not recommended)
4490
4467
  #
4491
4468
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
4492
4469
  # `cache.m2.4xlarge`
@@ -8082,9 +8059,7 @@ module Aws::ElastiCache
8082
8059
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8083
8060
  # `cache.t2.medium`
8084
8061
  #
8085
- # * Previous generation: (not recommended. Existing clusters are
8086
- # still supported but creation of new clusters is not supported
8087
- # for these types.)
8062
+ # * Previous generation: (not recommended)
8088
8063
  #
8089
8064
  # **T1 node types:** `cache.t1.micro`
8090
8065
  #
@@ -8096,9 +8071,7 @@ module Aws::ElastiCache
8096
8071
  #
8097
8072
  # * Compute optimized:
8098
8073
  #
8099
- # * Previous generation: (not recommended. Existing clusters are
8100
- # still supported but creation of new clusters is not supported
8101
- # for these types.)
8074
+ # * Previous generation: (not recommended)
8102
8075
  #
8103
8076
  # **C1 node types:** `cache.c1.xlarge`
8104
8077
  #
@@ -8136,9 +8109,7 @@ module Aws::ElastiCache
8136
8109
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8137
8110
  # `cache.r4.16xlarge`
8138
8111
  #
8139
- # * Previous generation: (not recommended. Existing clusters are
8140
- # still supported but creation of new clusters is not supported
8141
- # for these types.)
8112
+ # * Previous generation: (not recommended)
8142
8113
  #
8143
8114
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8144
8115
  # `cache.m2.4xlarge`
@@ -8312,9 +8283,7 @@ module Aws::ElastiCache
8312
8283
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8313
8284
  # `cache.t2.medium`
8314
8285
  #
8315
- # * Previous generation: (not recommended. Existing clusters are
8316
- # still supported but creation of new clusters is not supported
8317
- # for these types.)
8286
+ # * Previous generation: (not recommended)
8318
8287
  #
8319
8288
  # **T1 node types:** `cache.t1.micro`
8320
8289
  #
@@ -8326,9 +8295,7 @@ module Aws::ElastiCache
8326
8295
  #
8327
8296
  # * Compute optimized:
8328
8297
  #
8329
- # * Previous generation: (not recommended. Existing clusters are
8330
- # still supported but creation of new clusters is not supported
8331
- # for these types.)
8298
+ # * Previous generation: (not recommended)
8332
8299
  #
8333
8300
  # **C1 node types:** `cache.c1.xlarge`
8334
8301
  #
@@ -8366,9 +8333,7 @@ module Aws::ElastiCache
8366
8333
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8367
8334
  # `cache.r4.16xlarge`
8368
8335
  #
8369
- # * Previous generation: (not recommended. Existing clusters are
8370
- # still supported but creation of new clusters is not supported
8371
- # for these types.)
8336
+ # * Previous generation: (not recommended)
8372
8337
  #
8373
8338
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8374
8339
  # `cache.m2.4xlarge`
@@ -8821,9 +8786,7 @@ module Aws::ElastiCache
8821
8786
  # **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
8822
8787
  # `cache.t2.medium`
8823
8788
  #
8824
- # * Previous generation: (not recommended. Existing clusters are
8825
- # still supported but creation of new clusters is not supported
8826
- # for these types.)
8789
+ # * Previous generation: (not recommended)
8827
8790
  #
8828
8791
  # **T1 node types:** `cache.t1.micro`
8829
8792
  #
@@ -8835,9 +8798,7 @@ module Aws::ElastiCache
8835
8798
  #
8836
8799
  # * Compute optimized:
8837
8800
  #
8838
- # * Previous generation: (not recommended. Existing clusters are
8839
- # still supported but creation of new clusters is not supported
8840
- # for these types.)
8801
+ # * Previous generation: (not recommended)
8841
8802
  #
8842
8803
  # **C1 node types:** `cache.c1.xlarge`
8843
8804
  #
@@ -8879,9 +8840,7 @@ module Aws::ElastiCache
8879
8840
  # `cache.r4.2xlarge`, `cache.r4.4xlarge`, `cache.r4.8xlarge`,
8880
8841
  # `cache.r4.16xlarge`
8881
8842
  #
8882
- # * Previous generation: (not recommended. Existing clusters are
8883
- # still supported but creation of new clusters is not supported
8884
- # for these types.)
8843
+ # * Previous generation: (not recommended)
8885
8844
  #
8886
8845
  # **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
8887
8846
  # `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.77.0'
52
+ GEM_VERSION = '1.78.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.77.0
4
+ version: 1.78.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-04-21 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core