aws-sdk-elasticache 1.68.0 → 1.72.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: 2c0fd04d72920c811e3296d5a13c0e08863e08ff2685e91adc504cfb2a595147
4
- data.tar.gz: a1c037c2724ced7a2179c43a6ad4d9fc6f5f2405e498890c64a5a20c90f33b39
3
+ metadata.gz: a1ff438fef69c3d962278b3eaaa2f9fe968bee665c0190956d5c49793ce99cdd
4
+ data.tar.gz: 62c2003a8b8ef088ec6155de46ed61fea4e8d02c2fc4536721157182a8b37912
5
5
  SHA512:
6
- metadata.gz: e5cc150d3faa81e18df8b273098f175b8e346f82b75fc4b633cc9f69363bbc0db30f9693e125b1bd2689d7b6b4c64960a36d2d4f310c19aff0773cfddc31b0bd
7
- data.tar.gz: c443fa7e3443898f987a84676f73704dda1779535377f7760cbadfe387b1f52f8d40faf61c513b6cefdd444fda5176f2ea9e06b42667014177bf16e520fc922c
6
+ metadata.gz: 969817e368f4cd7845643e9605ae38eb7ad31265f4d94c6fed5b3867025a938947253310d1d77b8ad504e72daf2dc372596270f773200aa81f54850a6e2f399b
7
+ data.tar.gz: 6f657cffd4af57b45004d2fc678bdcdd24302b5bafb2c115bfcb27bc036eae0dfd55864b68b6027a3a47dc40503984267828211d8b2a29915d22a894b2307218
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.71.0 (2022-02-02)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for AWS ElastiCache
13
+
14
+ 1.70.0 (2022-01-13)
15
+ ------------------
16
+
17
+ * Feature - AWS ElastiCache for Redis has added a new Engine Log LogType in LogDelivery feature. You can now publish the Engine Log from your Amazon ElastiCache for Redis clusters to Amazon CloudWatch Logs and Amazon Kinesis Data Firehose.
18
+
19
+ 1.69.0 (2022-01-12)
20
+ ------------------
21
+
22
+ * Feature - Doc only update for ElastiCache
23
+
4
24
  1.68.0 (2021-12-21)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.72.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
33
  require 'aws-sdk-core/plugins/protocols/query.rb'
33
34
 
@@ -75,6 +76,7 @@ module Aws::ElastiCache
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
77
78
  add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
78
80
  add_plugin(Aws::Plugins::SignatureV4)
79
81
  add_plugin(Aws::Plugins::Protocols::Query)
80
82
 
@@ -659,7 +661,7 @@ module Aws::ElastiCache
659
661
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
660
662
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
661
663
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
662
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
664
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
663
665
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
664
666
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
665
667
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -702,7 +704,7 @@ module Aws::ElastiCache
702
704
  # resp.replication_group.user_group_ids #=> Array
703
705
  # resp.replication_group.user_group_ids[0] #=> String
704
706
  # resp.replication_group.log_delivery_configurations #=> Array
705
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
707
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
706
708
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
707
709
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
708
710
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -1066,7 +1068,7 @@ module Aws::ElastiCache
1066
1068
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
1067
1069
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
1068
1070
  #
1069
- # **T4g node types** (available only for Redis engine version 5.0.6
1071
+ # **T4g node types** (available only for Redis engine version 6.0
1070
1072
  # onward and Memcached engine version 1.5.16 onward):
1071
1073
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
1072
1074
  #
@@ -1231,7 +1233,7 @@ module Aws::ElastiCache
1231
1233
  # Specifies the weekly time range during which maintenance on the
1232
1234
  # cluster is performed. It is specified as a range in the format
1233
1235
  # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
1234
- # window is a 60 minute period. Valid values for `ddd` are:
1236
+ # window is a 60 minute period.
1235
1237
  #
1236
1238
  # @option params [Integer] :port
1237
1239
  # The port number on which each of the cache nodes accepts connections.
@@ -1439,7 +1441,7 @@ module Aws::ElastiCache
1439
1441
  # preferred_outpost_arns: ["String"],
1440
1442
  # log_delivery_configurations: [
1441
1443
  # {
1442
- # log_type: "slow-log", # accepts slow-log
1444
+ # log_type: "slow-log", # accepts slow-log, engine-log
1443
1445
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
1444
1446
  # destination_details: {
1445
1447
  # cloud_watch_logs_details: {
@@ -1477,7 +1479,7 @@ module Aws::ElastiCache
1477
1479
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
1478
1480
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
1479
1481
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
1480
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
1482
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
1481
1483
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
1482
1484
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
1483
1485
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -1516,7 +1518,7 @@ module Aws::ElastiCache
1516
1518
  # resp.cache_cluster.arn #=> String
1517
1519
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
1518
1520
  # resp.cache_cluster.log_delivery_configurations #=> Array
1519
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
1521
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
1520
1522
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
1521
1523
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
1522
1524
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -1561,7 +1563,7 @@ module Aws::ElastiCache
1561
1563
  #
1562
1564
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1563
1565
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
1564
- # \| `redis6.0` \| `redis6.2`
1566
+ # \| `redis6.x`
1565
1567
  #
1566
1568
  # @option params [required, String] :description
1567
1569
  # A user-specified description for the cache parameter group.
@@ -2077,7 +2079,7 @@ module Aws::ElastiCache
2077
2079
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
2078
2080
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
2079
2081
  #
2080
- # **T4g node types** (available only for Redis engine version 5.0.6
2082
+ # **T4g node types** (available only for Redis engine version 6.0
2081
2083
  # onward and Memcached engine version 1.5.16 onward):
2082
2084
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
2083
2085
  #
@@ -2536,7 +2538,7 @@ module Aws::ElastiCache
2536
2538
  # user_group_ids: ["UserGroupId"],
2537
2539
  # log_delivery_configurations: [
2538
2540
  # {
2539
- # log_type: "slow-log", # accepts slow-log
2541
+ # log_type: "slow-log", # accepts slow-log, engine-log
2540
2542
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
2541
2543
  # destination_details: {
2542
2544
  # cloud_watch_logs_details: {
@@ -2569,7 +2571,7 @@ module Aws::ElastiCache
2569
2571
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
2570
2572
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
2571
2573
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
2572
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
2574
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
2573
2575
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
2574
2576
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
2575
2577
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -2612,7 +2614,7 @@ module Aws::ElastiCache
2612
2614
  # resp.replication_group.user_group_ids #=> Array
2613
2615
  # resp.replication_group.user_group_ids[0] #=> String
2614
2616
  # resp.replication_group.log_delivery_configurations #=> Array
2615
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
2617
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
2616
2618
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
2617
2619
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
2618
2620
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3162,7 +3164,7 @@ module Aws::ElastiCache
3162
3164
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
3163
3165
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
3164
3166
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
3165
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3167
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3166
3168
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3167
3169
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3168
3170
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3205,7 +3207,7 @@ module Aws::ElastiCache
3205
3207
  # resp.replication_group.user_group_ids #=> Array
3206
3208
  # resp.replication_group.user_group_ids[0] #=> String
3207
3209
  # resp.replication_group.log_delivery_configurations #=> Array
3208
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3210
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3209
3211
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3210
3212
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3211
3213
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3329,7 +3331,7 @@ module Aws::ElastiCache
3329
3331
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
3330
3332
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
3331
3333
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
3332
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3334
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3333
3335
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3334
3336
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3335
3337
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3368,7 +3370,7 @@ module Aws::ElastiCache
3368
3370
  # resp.cache_cluster.arn #=> String
3369
3371
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
3370
3372
  # resp.cache_cluster.log_delivery_configurations #=> Array
3371
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3373
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3372
3374
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3373
3375
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3374
3376
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3651,7 +3653,7 @@ module Aws::ElastiCache
3651
3653
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
3652
3654
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
3653
3655
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
3654
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3656
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3655
3657
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3656
3658
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3657
3659
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3694,7 +3696,7 @@ module Aws::ElastiCache
3694
3696
  # resp.replication_group.user_group_ids #=> Array
3695
3697
  # resp.replication_group.user_group_ids[0] #=> String
3696
3698
  # resp.replication_group.log_delivery_configurations #=> Array
3697
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3699
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3698
3700
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3699
3701
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3700
3702
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -4143,7 +4145,7 @@ module Aws::ElastiCache
4143
4145
  # resp.cache_clusters[0].pending_modified_values.cache_node_type #=> String
4144
4146
  # resp.cache_clusters[0].pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
4145
4147
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations #=> Array
4146
- # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
4148
+ # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
4147
4149
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
4148
4150
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
4149
4151
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -4182,7 +4184,7 @@ module Aws::ElastiCache
4182
4184
  # resp.cache_clusters[0].arn #=> String
4183
4185
  # resp.cache_clusters[0].replication_group_log_delivery_enabled #=> Boolean
4184
4186
  # resp.cache_clusters[0].log_delivery_configurations #=> Array
4185
- # resp.cache_clusters[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log"
4187
+ # resp.cache_clusters[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
4186
4188
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
4187
4189
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
4188
4190
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6266,7 +6268,7 @@ module Aws::ElastiCache
6266
6268
  # resp.replication_groups[0].pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
6267
6269
  # resp.replication_groups[0].pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
6268
6270
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations #=> Array
6269
- # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
6271
+ # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
6270
6272
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
6271
6273
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
6272
6274
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6309,7 +6311,7 @@ module Aws::ElastiCache
6309
6311
  # resp.replication_groups[0].user_group_ids #=> Array
6310
6312
  # resp.replication_groups[0].user_group_ids[0] #=> String
6311
6313
  # resp.replication_groups[0].log_delivery_configurations #=> Array
6312
- # resp.replication_groups[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log"
6314
+ # resp.replication_groups[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
6313
6315
  # resp.replication_groups[0].log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
6314
6316
  # resp.replication_groups[0].log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
6315
6317
  # resp.replication_groups[0].log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6375,7 +6377,7 @@ module Aws::ElastiCache
6375
6377
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6376
6378
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6377
6379
  #
6378
- # **T4g node types** (available only for Redis engine version 5.0.6
6380
+ # **T4g node types** (available only for Redis engine version 6.0
6379
6381
  # onward and for Memcached engine version 1.5.16 onward):
6380
6382
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6381
6383
  #
@@ -6591,7 +6593,7 @@ module Aws::ElastiCache
6591
6593
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6592
6594
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6593
6595
  #
6594
- # **T4g node types** (available only for Redis engine version 5.0.6
6596
+ # **T4g node types** (available only for Redis engine version 6.0
6595
6597
  # onward and for Memcached engine version 1.5.16 onward):
6596
6598
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6597
6599
  #
@@ -7793,7 +7795,7 @@ module Aws::ElastiCache
7793
7795
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
7794
7796
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
7795
7797
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
7796
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
7798
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
7797
7799
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
7798
7800
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
7799
7801
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -7836,7 +7838,7 @@ module Aws::ElastiCache
7836
7838
  # resp.replication_group.user_group_ids #=> Array
7837
7839
  # resp.replication_group.user_group_ids[0] #=> String
7838
7840
  # resp.replication_group.log_delivery_configurations #=> Array
7839
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
7841
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
7840
7842
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
7841
7843
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
7842
7844
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -8403,7 +8405,7 @@ module Aws::ElastiCache
8403
8405
  # auth_token_update_strategy: "SET", # accepts SET, ROTATE, DELETE
8404
8406
  # log_delivery_configurations: [
8405
8407
  # {
8406
- # log_type: "slow-log", # accepts slow-log
8408
+ # log_type: "slow-log", # accepts slow-log, engine-log
8407
8409
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
8408
8410
  # destination_details: {
8409
8411
  # cloud_watch_logs_details: {
@@ -8441,7 +8443,7 @@ module Aws::ElastiCache
8441
8443
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
8442
8444
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
8443
8445
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
8444
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
8446
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
8445
8447
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
8446
8448
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
8447
8449
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -8480,7 +8482,7 @@ module Aws::ElastiCache
8480
8482
  # resp.cache_cluster.arn #=> String
8481
8483
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
8482
8484
  # resp.cache_cluster.log_delivery_configurations #=> Array
8483
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
8485
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
8484
8486
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
8485
8487
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
8486
8488
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9063,7 +9065,7 @@ module Aws::ElastiCache
9063
9065
  # remove_user_groups: false,
9064
9066
  # log_delivery_configurations: [
9065
9067
  # {
9066
- # log_type: "slow-log", # accepts slow-log
9068
+ # log_type: "slow-log", # accepts slow-log, engine-log
9067
9069
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
9068
9070
  # destination_details: {
9069
9071
  # cloud_watch_logs_details: {
@@ -9095,7 +9097,7 @@ module Aws::ElastiCache
9095
9097
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9096
9098
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9097
9099
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9098
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9100
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9099
9101
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9100
9102
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9101
9103
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9138,7 +9140,7 @@ module Aws::ElastiCache
9138
9140
  # resp.replication_group.user_group_ids #=> Array
9139
9141
  # resp.replication_group.user_group_ids[0] #=> String
9140
9142
  # resp.replication_group.log_delivery_configurations #=> Array
9141
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9143
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9142
9144
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9143
9145
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9144
9146
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9239,7 +9241,7 @@ module Aws::ElastiCache
9239
9241
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9240
9242
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9241
9243
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9242
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9244
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9243
9245
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9244
9246
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9245
9247
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9282,7 +9284,7 @@ module Aws::ElastiCache
9282
9284
  # resp.replication_group.user_group_ids #=> Array
9283
9285
  # resp.replication_group.user_group_ids[0] #=> String
9284
9286
  # resp.replication_group.log_delivery_configurations #=> Array
9285
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9287
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9286
9288
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9287
9289
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9288
9290
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9581,7 +9583,7 @@ module Aws::ElastiCache
9581
9583
  #
9582
9584
  #
9583
9585
  #
9584
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.Rebooting.html
9586
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes.rebooting.html
9585
9587
  #
9586
9588
  # @option params [required, String] :cache_cluster_id
9587
9589
  # The cluster identifier. This parameter is stored as a lowercase
@@ -9670,7 +9672,7 @@ module Aws::ElastiCache
9670
9672
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
9671
9673
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
9672
9674
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
9673
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9675
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9674
9676
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9675
9677
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9676
9678
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9709,7 +9711,7 @@ module Aws::ElastiCache
9709
9711
  # resp.cache_cluster.arn #=> String
9710
9712
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
9711
9713
  # resp.cache_cluster.log_delivery_configurations #=> Array
9712
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9714
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9713
9715
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9714
9716
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9715
9717
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9988,7 +9990,7 @@ module Aws::ElastiCache
9988
9990
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9989
9991
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9990
9992
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9991
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9993
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9992
9994
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9993
9995
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9994
9996
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10031,7 +10033,7 @@ module Aws::ElastiCache
10031
10033
  # resp.replication_group.user_group_ids #=> Array
10032
10034
  # resp.replication_group.user_group_ids[0] #=> String
10033
10035
  # resp.replication_group.log_delivery_configurations #=> Array
10034
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10036
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10035
10037
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10036
10038
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10037
10039
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10146,7 +10148,7 @@ module Aws::ElastiCache
10146
10148
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
10147
10149
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
10148
10150
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
10149
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10151
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10150
10152
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10151
10153
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10152
10154
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10189,7 +10191,7 @@ module Aws::ElastiCache
10189
10191
  # resp.replication_group.user_group_ids #=> Array
10190
10192
  # resp.replication_group.user_group_ids[0] #=> String
10191
10193
  # resp.replication_group.log_delivery_configurations #=> Array
10192
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10194
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10193
10195
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10194
10196
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10195
10197
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10221,7 +10223,7 @@ module Aws::ElastiCache
10221
10223
  params: params,
10222
10224
  config: config)
10223
10225
  context[:gem_name] = 'aws-sdk-elasticache'
10224
- context[:gem_version] = '1.68.0'
10226
+ context[:gem_version] = '1.72.0'
10225
10227
  Seahorse::Client::Request.new(handlers, context)
10226
10228
  end
10227
10229
 
@@ -304,8 +304,8 @@ module Aws::ElastiCache
304
304
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
305
305
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
306
306
  #
307
- # **T4g node types** (available only for Redis engine version
308
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
307
+ # **T4g node types** (available only for Redis engine version 6.0
308
+ # onward and for Memcached engine version 1.5.16 onward):
309
309
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
310
310
  #
311
311
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -724,7 +724,7 @@ module Aws::ElastiCache
724
724
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
725
725
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
726
726
  #
727
- # **T4g node types** (available only for Redis engine version 5.0.6
727
+ # **T4g node types** (available only for Redis engine version 6.0
728
728
  # onward and for Memcached engine version 1.5.16 onward):
729
729
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
730
730
  #
@@ -1009,7 +1009,7 @@ module Aws::ElastiCache
1009
1009
  #
1010
1010
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1011
1011
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
1012
- # `redis5.0` \| `redis6.0` \|
1012
+ # `redis5.0` \| `redis6.x` \|
1013
1013
  # @return [String]
1014
1014
  #
1015
1015
  # @!attribute [rw] description
@@ -1600,7 +1600,7 @@ module Aws::ElastiCache
1600
1600
  # preferred_outpost_arns: ["String"],
1601
1601
  # log_delivery_configurations: [
1602
1602
  # {
1603
- # log_type: "slow-log", # accepts slow-log
1603
+ # log_type: "slow-log", # accepts slow-log, engine-log
1604
1604
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
1605
1605
  # destination_details: {
1606
1606
  # cloud_watch_logs_details: {
@@ -1736,8 +1736,8 @@ module Aws::ElastiCache
1736
1736
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
1737
1737
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
1738
1738
  #
1739
- # **T4g node types** (available only for Redis engine version
1740
- # 5.0.6 onward and Memcached engine version 1.5.16 onward):
1739
+ # **T4g node types** (available only for Redis engine version 6.0
1740
+ # onward and Memcached engine version 1.5.16 onward):
1741
1741
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
1742
1742
  #
1743
1743
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -1913,7 +1913,7 @@ module Aws::ElastiCache
1913
1913
  # Specifies the weekly time range during which maintenance on the
1914
1914
  # cluster is performed. It is specified as a range in the format
1915
1915
  # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
1916
- # window is a 60 minute period. Valid values for `ddd` are:
1916
+ # window is a 60 minute period.
1917
1917
  # @return [String]
1918
1918
  #
1919
1919
  # @!attribute [rw] port
@@ -2078,7 +2078,7 @@ module Aws::ElastiCache
2078
2078
  #
2079
2079
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
2080
2080
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
2081
- # `redis5.0` \| `redis6.0` \| `redis6.2`
2081
+ # `redis5.0` \| `redis6.x`
2082
2082
  # @return [String]
2083
2083
  #
2084
2084
  # @!attribute [rw] description
@@ -2368,7 +2368,7 @@ module Aws::ElastiCache
2368
2368
  # user_group_ids: ["UserGroupId"],
2369
2369
  # log_delivery_configurations: [
2370
2370
  # {
2371
- # log_type: "slow-log", # accepts slow-log
2371
+ # log_type: "slow-log", # accepts slow-log, engine-log
2372
2372
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
2373
2373
  # destination_details: {
2374
2374
  # cloud_watch_logs_details: {
@@ -2532,8 +2532,8 @@ module Aws::ElastiCache
2532
2532
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
2533
2533
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
2534
2534
  #
2535
- # **T4g node types** (available only for Redis engine version
2536
- # 5.0.6 onward and Memcached engine version 1.5.16 onward):
2535
+ # **T4g node types** (available only for Redis engine version 6.0
2536
+ # onward and Memcached engine version 1.5.16 onward):
2537
2537
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
2538
2538
  #
2539
2539
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -4207,8 +4207,8 @@ module Aws::ElastiCache
4207
4207
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
4208
4208
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
4209
4209
  #
4210
- # **T4g node types** (available only for Redis engine version
4211
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4210
+ # **T4g node types** (available only for Redis engine version 6.0
4211
+ # onward and for Memcached engine version 1.5.16 onward):
4212
4212
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
4213
4213
  #
4214
4214
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -4401,8 +4401,8 @@ module Aws::ElastiCache
4401
4401
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
4402
4402
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
4403
4403
  #
4404
- # **T4g node types** (available only for Redis engine version
4405
- # 5.0.6 onward and for Memcached engine version 1.5.16 onward):
4404
+ # **T4g node types** (available only for Redis engine version 6.0
4405
+ # onward and for Memcached engine version 1.5.16 onward):
4406
4406
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
4407
4407
  #
4408
4408
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -5740,7 +5740,7 @@ module Aws::ElastiCache
5740
5740
  # Returns the destination, format and type of the logs.
5741
5741
  #
5742
5742
  # @!attribute [rw] log_type
5743
- # Refers to [slow-log][1].
5743
+ # Refers to [slow-log][1] or engine-log.
5744
5744
  #
5745
5745
  #
5746
5746
  #
@@ -5789,7 +5789,7 @@ module Aws::ElastiCache
5789
5789
  # data as a hash:
5790
5790
  #
5791
5791
  # {
5792
- # log_type: "slow-log", # accepts slow-log
5792
+ # log_type: "slow-log", # accepts slow-log, engine-log
5793
5793
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
5794
5794
  # destination_details: {
5795
5795
  # cloud_watch_logs_details: {
@@ -5804,7 +5804,7 @@ module Aws::ElastiCache
5804
5804
  # }
5805
5805
  #
5806
5806
  # @!attribute [rw] log_type
5807
- # Refers to [slow-log][1].
5807
+ # Refers to [slow-log][1] or engine-log..
5808
5808
  #
5809
5809
  #
5810
5810
  #
@@ -5868,7 +5868,7 @@ module Aws::ElastiCache
5868
5868
  # auth_token_update_strategy: "SET", # accepts SET, ROTATE, DELETE
5869
5869
  # log_delivery_configurations: [
5870
5870
  # {
5871
- # log_type: "slow-log", # accepts slow-log
5871
+ # log_type: "slow-log", # accepts slow-log, engine-log
5872
5872
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
5873
5873
  # destination_details: {
5874
5874
  # cloud_watch_logs_details: {
@@ -6462,7 +6462,7 @@ module Aws::ElastiCache
6462
6462
  # remove_user_groups: false,
6463
6463
  # log_delivery_configurations: [
6464
6464
  # {
6465
- # log_type: "slow-log", # accepts slow-log
6465
+ # log_type: "slow-log", # accepts slow-log, engine-log
6466
6466
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
6467
6467
  # destination_details: {
6468
6468
  # cloud_watch_logs_details: {
@@ -7348,7 +7348,7 @@ module Aws::ElastiCache
7348
7348
  # The log delivery configurations being modified
7349
7349
  #
7350
7350
  # @!attribute [rw] log_type
7351
- # Refers to [slow-log][1].
7351
+ # Refers to [slow-log][1] or engine-log..
7352
7352
  #
7353
7353
  #
7354
7354
  #
@@ -8047,8 +8047,8 @@ module Aws::ElastiCache
8047
8047
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
8048
8048
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
8049
8049
  #
8050
- # **T4g node types** (available only for Redis engine version
8051
- # 5.0.6 onward and Memcached engine version 1.5.16 onward):
8050
+ # **T4g node types** (available only for Redis engine version 6.0
8051
+ # onward and Memcached engine version 1.5.16 onward):
8052
8052
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
8053
8053
  #
8054
8054
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -8271,8 +8271,8 @@ module Aws::ElastiCache
8271
8271
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
8272
8272
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
8273
8273
  #
8274
- # **T4g node types** (available only for Redis engine version
8275
- # 5.0.6 onward and Memcached engine version 1.5.16 onward):
8274
+ # **T4g node types** (available only for Redis engine version 6.0
8275
+ # onward and Memcached engine version 1.5.16 onward):
8276
8276
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
8277
8277
  #
8278
8278
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
@@ -8773,8 +8773,8 @@ module Aws::ElastiCache
8773
8773
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
8774
8774
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
8775
8775
  #
8776
- # **T4g node types** (available only for Redis engine version
8777
- # 5.0.6 onward and Memcached engine version 1.5.16 onward):
8776
+ # **T4g node types** (available only for Redis engine version 6.0
8777
+ # onward and Memcached engine version 1.5.16 onward):
8778
8778
  #
8779
8779
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
8780
8780
  #
@@ -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.68.0'
52
+ GEM_VERSION = '1.72.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.68.0
4
+ version: 1.72.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement