aws-sdk-elasticache 1.66.0 → 1.70.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: 60d0cbac2e07ce952764eab6a2a3f797784786c0883f1dc8cd71dff7d23a6d95
4
- data.tar.gz: 360c270f4a65777b19d0515d18ad293b13966d1f2faf677ca7b1c703c7052e18
3
+ metadata.gz: 7b009036b9fd1e471ea8dc1410977835fb6706302552290ce75b501829256b03
4
+ data.tar.gz: 9d4d19c89d1954ae68c7f41a1714d1c9d606e01af26f9fd9e076cef51655591d
5
5
  SHA512:
6
- metadata.gz: 473b8f6987b532effdf57c9fd81c0babafc7765ed1a36f7332810d7fd98ec852a0c5e8ccc865c29b0e7e6a977f089cd76973ef437e3f2668430b532459e62368
7
- data.tar.gz: a20f0057a71fa595c3c41a98736a300fa79b598ae930e973407d2a634b89e6bf2db21b1cea1d299eef15ee15038c84ea419fc934bee91479c57f0ea3485b3e72
6
+ metadata.gz: 983852ca7eb8d4e25583dd840bbd8a81fe3b9e667273505b7830fb410e2531eb6ee0db84144f041e7f39f3734d72b58494d6022153cf66da0d2a8998a8863803
7
+ data.tar.gz: 563ac076080bf0456b6aa32551fc93df621172c6311821a5ef87460ba4dfd081408fab01ac984e76f403f8d1b89031a392094dae65ca8fd6adef2180af307ec2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2022-01-13)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.69.0 (2022-01-12)
10
+ ------------------
11
+
12
+ * Feature - Doc only update for ElastiCache
13
+
14
+ 1.68.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.67.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.66.0 (2021-11-24)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.70.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  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
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::ElastiCache
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::Query)
78
80
 
@@ -119,7 +121,9 @@ module Aws::ElastiCache
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::ElastiCache
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::ElastiCache
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::ElastiCache
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -648,7 +659,7 @@ module Aws::ElastiCache
648
659
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
649
660
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
650
661
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
651
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
662
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
652
663
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
653
664
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
654
665
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -691,7 +702,7 @@ module Aws::ElastiCache
691
702
  # resp.replication_group.user_group_ids #=> Array
692
703
  # resp.replication_group.user_group_ids[0] #=> String
693
704
  # resp.replication_group.log_delivery_configurations #=> Array
694
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
705
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
695
706
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
696
707
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
697
708
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -1055,7 +1066,7 @@ module Aws::ElastiCache
1055
1066
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
1056
1067
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
1057
1068
  #
1058
- # **T4g node types** (available only for Redis engine version 5.0.6
1069
+ # **T4g node types** (available only for Redis engine version 6.0
1059
1070
  # onward and Memcached engine version 1.5.16 onward):
1060
1071
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
1061
1072
  #
@@ -1428,7 +1439,7 @@ module Aws::ElastiCache
1428
1439
  # preferred_outpost_arns: ["String"],
1429
1440
  # log_delivery_configurations: [
1430
1441
  # {
1431
- # log_type: "slow-log", # accepts slow-log
1442
+ # log_type: "slow-log", # accepts slow-log, engine-log
1432
1443
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
1433
1444
  # destination_details: {
1434
1445
  # cloud_watch_logs_details: {
@@ -1466,7 +1477,7 @@ module Aws::ElastiCache
1466
1477
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
1467
1478
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
1468
1479
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
1469
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
1480
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
1470
1481
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
1471
1482
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
1472
1483
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -1505,7 +1516,7 @@ module Aws::ElastiCache
1505
1516
  # resp.cache_cluster.arn #=> String
1506
1517
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
1507
1518
  # resp.cache_cluster.log_delivery_configurations #=> Array
1508
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
1519
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
1509
1520
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
1510
1521
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
1511
1522
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -2066,7 +2077,7 @@ module Aws::ElastiCache
2066
2077
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
2067
2078
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
2068
2079
  #
2069
- # **T4g node types** (available only for Redis engine version 5.0.6
2080
+ # **T4g node types** (available only for Redis engine version 6.0
2070
2081
  # onward and Memcached engine version 1.5.16 onward):
2071
2082
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
2072
2083
  #
@@ -2525,7 +2536,7 @@ module Aws::ElastiCache
2525
2536
  # user_group_ids: ["UserGroupId"],
2526
2537
  # log_delivery_configurations: [
2527
2538
  # {
2528
- # log_type: "slow-log", # accepts slow-log
2539
+ # log_type: "slow-log", # accepts slow-log, engine-log
2529
2540
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
2530
2541
  # destination_details: {
2531
2542
  # cloud_watch_logs_details: {
@@ -2558,7 +2569,7 @@ module Aws::ElastiCache
2558
2569
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
2559
2570
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
2560
2571
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
2561
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
2572
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
2562
2573
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
2563
2574
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
2564
2575
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -2601,7 +2612,7 @@ module Aws::ElastiCache
2601
2612
  # resp.replication_group.user_group_ids #=> Array
2602
2613
  # resp.replication_group.user_group_ids[0] #=> String
2603
2614
  # resp.replication_group.log_delivery_configurations #=> Array
2604
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
2615
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
2605
2616
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
2606
2617
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
2607
2618
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3151,7 +3162,7 @@ module Aws::ElastiCache
3151
3162
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
3152
3163
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
3153
3164
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
3154
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3165
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3155
3166
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3156
3167
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3157
3168
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3194,7 +3205,7 @@ module Aws::ElastiCache
3194
3205
  # resp.replication_group.user_group_ids #=> Array
3195
3206
  # resp.replication_group.user_group_ids[0] #=> String
3196
3207
  # resp.replication_group.log_delivery_configurations #=> Array
3197
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3208
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3198
3209
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3199
3210
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3200
3211
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3318,7 +3329,7 @@ module Aws::ElastiCache
3318
3329
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
3319
3330
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
3320
3331
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
3321
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3332
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3322
3333
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3323
3334
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3324
3335
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3357,7 +3368,7 @@ module Aws::ElastiCache
3357
3368
  # resp.cache_cluster.arn #=> String
3358
3369
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
3359
3370
  # resp.cache_cluster.log_delivery_configurations #=> Array
3360
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3371
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3361
3372
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3362
3373
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3363
3374
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3640,7 +3651,7 @@ module Aws::ElastiCache
3640
3651
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
3641
3652
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
3642
3653
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
3643
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3654
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3644
3655
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3645
3656
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3646
3657
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -3683,7 +3694,7 @@ module Aws::ElastiCache
3683
3694
  # resp.replication_group.user_group_ids #=> Array
3684
3695
  # resp.replication_group.user_group_ids[0] #=> String
3685
3696
  # resp.replication_group.log_delivery_configurations #=> Array
3686
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
3697
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
3687
3698
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
3688
3699
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
3689
3700
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -4132,7 +4143,7 @@ module Aws::ElastiCache
4132
4143
  # resp.cache_clusters[0].pending_modified_values.cache_node_type #=> String
4133
4144
  # resp.cache_clusters[0].pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
4134
4145
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations #=> Array
4135
- # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
4146
+ # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
4136
4147
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
4137
4148
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
4138
4149
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -4171,7 +4182,7 @@ module Aws::ElastiCache
4171
4182
  # resp.cache_clusters[0].arn #=> String
4172
4183
  # resp.cache_clusters[0].replication_group_log_delivery_enabled #=> Boolean
4173
4184
  # resp.cache_clusters[0].log_delivery_configurations #=> Array
4174
- # resp.cache_clusters[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log"
4185
+ # resp.cache_clusters[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
4175
4186
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
4176
4187
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
4177
4188
  # resp.cache_clusters[0].log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6255,7 +6266,7 @@ module Aws::ElastiCache
6255
6266
  # resp.replication_groups[0].pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
6256
6267
  # resp.replication_groups[0].pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
6257
6268
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations #=> Array
6258
- # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
6269
+ # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
6259
6270
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
6260
6271
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
6261
6272
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6298,7 +6309,7 @@ module Aws::ElastiCache
6298
6309
  # resp.replication_groups[0].user_group_ids #=> Array
6299
6310
  # resp.replication_groups[0].user_group_ids[0] #=> String
6300
6311
  # resp.replication_groups[0].log_delivery_configurations #=> Array
6301
- # resp.replication_groups[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log"
6312
+ # resp.replication_groups[0].log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
6302
6313
  # resp.replication_groups[0].log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
6303
6314
  # resp.replication_groups[0].log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
6304
6315
  # resp.replication_groups[0].log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -6364,7 +6375,7 @@ module Aws::ElastiCache
6364
6375
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6365
6376
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6366
6377
  #
6367
- # **T4g node types** (available only for Redis engine version 5.0.6
6378
+ # **T4g node types** (available only for Redis engine version 6.0
6368
6379
  # onward and for Memcached engine version 1.5.16 onward):
6369
6380
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6370
6381
  #
@@ -6580,7 +6591,7 @@ module Aws::ElastiCache
6580
6591
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6581
6592
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6582
6593
  #
6583
- # **T4g node types** (available only for Redis engine version 5.0.6
6594
+ # **T4g node types** (available only for Redis engine version 6.0
6584
6595
  # onward and for Memcached engine version 1.5.16 onward):
6585
6596
  # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6586
6597
  #
@@ -7782,7 +7793,7 @@ module Aws::ElastiCache
7782
7793
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
7783
7794
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
7784
7795
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
7785
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
7796
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
7786
7797
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
7787
7798
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
7788
7799
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -7825,7 +7836,7 @@ module Aws::ElastiCache
7825
7836
  # resp.replication_group.user_group_ids #=> Array
7826
7837
  # resp.replication_group.user_group_ids[0] #=> String
7827
7838
  # resp.replication_group.log_delivery_configurations #=> Array
7828
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
7839
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
7829
7840
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
7830
7841
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
7831
7842
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -8392,7 +8403,7 @@ module Aws::ElastiCache
8392
8403
  # auth_token_update_strategy: "SET", # accepts SET, ROTATE, DELETE
8393
8404
  # log_delivery_configurations: [
8394
8405
  # {
8395
- # log_type: "slow-log", # accepts slow-log
8406
+ # log_type: "slow-log", # accepts slow-log, engine-log
8396
8407
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
8397
8408
  # destination_details: {
8398
8409
  # cloud_watch_logs_details: {
@@ -8430,7 +8441,7 @@ module Aws::ElastiCache
8430
8441
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
8431
8442
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
8432
8443
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
8433
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
8444
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
8434
8445
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
8435
8446
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
8436
8447
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -8469,7 +8480,7 @@ module Aws::ElastiCache
8469
8480
  # resp.cache_cluster.arn #=> String
8470
8481
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
8471
8482
  # resp.cache_cluster.log_delivery_configurations #=> Array
8472
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
8483
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
8473
8484
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
8474
8485
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
8475
8486
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9052,7 +9063,7 @@ module Aws::ElastiCache
9052
9063
  # remove_user_groups: false,
9053
9064
  # log_delivery_configurations: [
9054
9065
  # {
9055
- # log_type: "slow-log", # accepts slow-log
9066
+ # log_type: "slow-log", # accepts slow-log, engine-log
9056
9067
  # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
9057
9068
  # destination_details: {
9058
9069
  # cloud_watch_logs_details: {
@@ -9084,7 +9095,7 @@ module Aws::ElastiCache
9084
9095
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9085
9096
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9086
9097
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9087
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9098
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9088
9099
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9089
9100
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9090
9101
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9127,7 +9138,7 @@ module Aws::ElastiCache
9127
9138
  # resp.replication_group.user_group_ids #=> Array
9128
9139
  # resp.replication_group.user_group_ids[0] #=> String
9129
9140
  # resp.replication_group.log_delivery_configurations #=> Array
9130
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9141
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9131
9142
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9132
9143
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9133
9144
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9228,7 +9239,7 @@ module Aws::ElastiCache
9228
9239
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9229
9240
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9230
9241
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9231
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9242
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9232
9243
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9233
9244
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9234
9245
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9271,7 +9282,7 @@ module Aws::ElastiCache
9271
9282
  # resp.replication_group.user_group_ids #=> Array
9272
9283
  # resp.replication_group.user_group_ids[0] #=> String
9273
9284
  # resp.replication_group.log_delivery_configurations #=> Array
9274
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9285
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9275
9286
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9276
9287
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9277
9288
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9570,7 +9581,7 @@ module Aws::ElastiCache
9570
9581
  #
9571
9582
  #
9572
9583
  #
9573
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.Rebooting.html
9584
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes.rebooting.html
9574
9585
  #
9575
9586
  # @option params [required, String] :cache_cluster_id
9576
9587
  # The cluster identifier. This parameter is stored as a lowercase
@@ -9659,7 +9670,7 @@ module Aws::ElastiCache
9659
9670
  # resp.cache_cluster.pending_modified_values.cache_node_type #=> String
9660
9671
  # resp.cache_cluster.pending_modified_values.auth_token_status #=> String, one of "SETTING", "ROTATING"
9661
9672
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations #=> Array
9662
- # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9673
+ # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9663
9674
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9664
9675
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9665
9676
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9698,7 +9709,7 @@ module Aws::ElastiCache
9698
9709
  # resp.cache_cluster.arn #=> String
9699
9710
  # resp.cache_cluster.replication_group_log_delivery_enabled #=> Boolean
9700
9711
  # resp.cache_cluster.log_delivery_configurations #=> Array
9701
- # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9712
+ # resp.cache_cluster.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9702
9713
  # resp.cache_cluster.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9703
9714
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9704
9715
  # resp.cache_cluster.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -9977,7 +9988,7 @@ module Aws::ElastiCache
9977
9988
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
9978
9989
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
9979
9990
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
9980
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
9991
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
9981
9992
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
9982
9993
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
9983
9994
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10020,7 +10031,7 @@ module Aws::ElastiCache
10020
10031
  # resp.replication_group.user_group_ids #=> Array
10021
10032
  # resp.replication_group.user_group_ids[0] #=> String
10022
10033
  # resp.replication_group.log_delivery_configurations #=> Array
10023
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10034
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10024
10035
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10025
10036
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10026
10037
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10135,7 +10146,7 @@ module Aws::ElastiCache
10135
10146
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove #=> Array
10136
10147
  # resp.replication_group.pending_modified_values.user_groups.user_group_ids_to_remove[0] #=> String
10137
10148
  # resp.replication_group.pending_modified_values.log_delivery_configurations #=> Array
10138
- # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10149
+ # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10139
10150
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10140
10151
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10141
10152
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10178,7 +10189,7 @@ module Aws::ElastiCache
10178
10189
  # resp.replication_group.user_group_ids #=> Array
10179
10190
  # resp.replication_group.user_group_ids[0] #=> String
10180
10191
  # resp.replication_group.log_delivery_configurations #=> Array
10181
- # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log"
10192
+ # resp.replication_group.log_delivery_configurations[0].log_type #=> String, one of "slow-log", "engine-log"
10182
10193
  # resp.replication_group.log_delivery_configurations[0].destination_type #=> String, one of "cloudwatch-logs", "kinesis-firehose"
10183
10194
  # resp.replication_group.log_delivery_configurations[0].destination_details.cloud_watch_logs_details.log_group #=> String
10184
10195
  # resp.replication_group.log_delivery_configurations[0].destination_details.kinesis_firehose_details.delivery_stream #=> String
@@ -10210,7 +10221,7 @@ module Aws::ElastiCache
10210
10221
  params: params,
10211
10222
  config: config)
10212
10223
  context[:gem_name] = 'aws-sdk-elasticache'
10213
- context[:gem_version] = '1.66.0'
10224
+ context[:gem_version] = '1.70.0'
10214
10225
  Seahorse::Client::Request.new(handlers, context)
10215
10226
  end
10216
10227
 
@@ -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
  #
@@ -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`,
@@ -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.66.0'
52
+ GEM_VERSION = '1.70.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.66.0
4
+ version: 1.70.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-11-24 00:00:00.000000000 Z
11
+ date: 2022-01-13 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement