aws-sdk-elasticache 1.145.0 → 1.146.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 464ab02c9b961f18ecbfcc7af60dbed2a082661526f926f78e4dd7ed410e710e
4
- data.tar.gz: 4297fd626cf8890802c710be4c71b7ffbbb1d93ab3f2c8eccac9e4b934f8764c
3
+ metadata.gz: 54d741da8468180a36a06a455e90faa64c699114e579963bb5c0f157db784a33
4
+ data.tar.gz: 0e5210ab28e42c9d3f895d53b87e4518709c0c58891e83479ac374d0d4567d4c
5
5
  SHA512:
6
- metadata.gz: 2bce8aae16a8436dac3e43b1fa2f9639cb5c630a3d1593b6b3513a020dcdec089d8071dcf6748302334326807013e35c7e9d0e61262df40fdb3d11485adc45f3
7
- data.tar.gz: bfedb0ec847177f89696e587bccaee1fe2d7faf0ba497729f69d9692c679c4e66ad99cc91f24aded1c4b64f7c5c51a0d8f8538ccf801d369b8cfa1da5ff2e883
6
+ metadata.gz: f498123be46b4797f9894a47f8a96c69451a048cf700f370820a66f4cae1e39c4443f79dc5e1bf539f974dc1d8668046a10775afa36f07ee4308bdb23825f3a3
7
+ data.tar.gz: a4e45c86b9618275e93596270d7fb8935bc258f85738e4c93fbedc999edab9b44ca0f01ae85906cb6ddef1f424ae14f2754a8fde2df5154f5babee7c2b2e9df1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2026-06-02)
5
+ ------------------
6
+
7
+ * Feature - Amazon ElastiCache for Valkey now supports durability. This new capability is enabled through a Multi-AZ transactional log, enabling fast recovery and restart during failures.
8
+
4
9
  1.145.0 (2026-06-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.145.0
1
+ 1.146.0
@@ -828,6 +828,7 @@ module Aws::ElastiCache
828
828
  # resp.replication_group.member_clusters_outpost_arns #=> Array
829
829
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
830
830
  # resp.replication_group.kms_key_id #=> String
831
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
831
832
  # resp.replication_group.arn #=> String
832
833
  # resp.replication_group.user_group_ids #=> Array
833
834
  # resp.replication_group.user_group_ids[0] #=> String
@@ -847,6 +848,8 @@ module Aws::ElastiCache
847
848
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
848
849
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
849
850
  # resp.replication_group.engine #=> String
851
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
852
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
850
853
  #
851
854
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
852
855
  #
@@ -1138,6 +1141,7 @@ module Aws::ElastiCache
1138
1141
  # resp.snapshot.kms_key_id #=> String
1139
1142
  # resp.snapshot.arn #=> String
1140
1143
  # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
1144
+ # resp.snapshot.durability #=> String, one of "default", "async", "sync", "disabled"
1141
1145
  #
1142
1146
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
1143
1147
  #
@@ -2593,16 +2597,13 @@ module Aws::ElastiCache
2593
2597
  # `true`, an `AuthToken`, and a `CacheSubnetGroup`.
2594
2598
  #
2595
2599
  # @option params [Boolean] :at_rest_encryption_enabled
2596
- # A flag that enables encryption at rest when set to `true`.
2600
+ # A flag that enables encryption at-rest on the replication group when
2601
+ # set to `true`. In some cases, encryption at-rest may be enabled even
2602
+ # when this value is false. Use `StorageEncryptionType` to view the
2603
+ # effective encryption state of a cluster.
2597
2604
  #
2598
2605
  # You cannot modify the value of `AtRestEncryptionEnabled` after the
2599
- # replication group is created. To enable encryption at rest on a
2600
- # replication group you must set `AtRestEncryptionEnabled` to `true`
2601
- # when you create the replication group.
2602
- #
2603
- # **Required:** Only available when creating a replication group in an
2604
- # Amazon VPC using Valkey `7.2` and later, Redis OSS version `3.2.6`, or
2605
- # Redis OSS `4.x` and later.
2606
+ # replication group is created.
2606
2607
  #
2607
2608
  # Default: `true` when using Valkey, `false` when using Redis OSS
2608
2609
  #
@@ -2676,6 +2677,17 @@ module Aws::ElastiCache
2676
2677
  # The name of the snapshot used to create a replication group. Available
2677
2678
  # for Valkey, Redis OSS only.
2678
2679
  #
2680
+ # @option params [String] :durability
2681
+ # Specifies the durability setting for the replication group. When set
2682
+ # to `default`, the service determines the effective durability based on
2683
+ # the engine version, cluster mode, and other parameters. The resolved
2684
+ # setting is reflected in the `EffectiveDurability` property of the
2685
+ # replication group. For more information, see [Durability][1].
2686
+ #
2687
+ #
2688
+ #
2689
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
2690
+ #
2679
2691
  # @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2680
2692
  #
2681
2693
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -2843,6 +2855,7 @@ module Aws::ElastiCache
2843
2855
  # transit_encryption_mode: "preferred", # accepts preferred, required
2844
2856
  # cluster_mode: "enabled", # accepts enabled, disabled, compatible
2845
2857
  # serverless_cache_snapshot_name: "String",
2858
+ # durability: "default", # accepts default, async, sync, disabled
2846
2859
  # })
2847
2860
  #
2848
2861
  # @example Response structure
@@ -2903,6 +2916,7 @@ module Aws::ElastiCache
2903
2916
  # resp.replication_group.member_clusters_outpost_arns #=> Array
2904
2917
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
2905
2918
  # resp.replication_group.kms_key_id #=> String
2919
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
2906
2920
  # resp.replication_group.arn #=> String
2907
2921
  # resp.replication_group.user_group_ids #=> Array
2908
2922
  # resp.replication_group.user_group_ids[0] #=> String
@@ -2922,6 +2936,8 @@ module Aws::ElastiCache
2922
2936
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
2923
2937
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
2924
2938
  # resp.replication_group.engine #=> String
2939
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
2940
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
2925
2941
  #
2926
2942
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2927
2943
  #
@@ -2998,7 +3014,7 @@ module Aws::ElastiCache
2998
3014
  # @option params [String] :network_type
2999
3015
  # The IP protocol version used by the serverless cache. Must be either
3000
3016
  # `ipv4` \| `ipv6` \| `dual_stack`. `ipv6` is only supported with
3001
- # ipv6-only subnets. If not specified, defaults to `ipv4`, unless all
3017
+ # IPv6-only subnets. If not specified, defaults to `ipv4`, unless all
3002
3018
  # provided subnets are IPv6-only, in which case it defaults to `ipv6`.
3003
3019
  #
3004
3020
  # @return [Types::CreateServerlessCacheResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -3054,6 +3070,7 @@ module Aws::ElastiCache
3054
3070
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
3055
3071
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
3056
3072
  # resp.serverless_cache.kms_key_id #=> String
3073
+ # resp.serverless_cache.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
3057
3074
  # resp.serverless_cache.security_group_ids #=> Array
3058
3075
  # resp.serverless_cache.security_group_ids[0] #=> String
3059
3076
  # resp.serverless_cache.endpoint.address #=> String
@@ -3358,6 +3375,7 @@ module Aws::ElastiCache
3358
3375
  # resp.snapshot.kms_key_id #=> String
3359
3376
  # resp.snapshot.arn #=> String
3360
3377
  # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
3378
+ # resp.snapshot.durability #=> String, one of "default", "async", "sync", "disabled"
3361
3379
  #
3362
3380
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
3363
3381
  #
@@ -3729,6 +3747,7 @@ module Aws::ElastiCache
3729
3747
  # resp.replication_group.member_clusters_outpost_arns #=> Array
3730
3748
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
3731
3749
  # resp.replication_group.kms_key_id #=> String
3750
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
3732
3751
  # resp.replication_group.arn #=> String
3733
3752
  # resp.replication_group.user_group_ids #=> Array
3734
3753
  # resp.replication_group.user_group_ids[0] #=> String
@@ -3748,6 +3767,8 @@ module Aws::ElastiCache
3748
3767
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
3749
3768
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
3750
3769
  # resp.replication_group.engine #=> String
3770
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
3771
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
3751
3772
  #
3752
3773
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3753
3774
  #
@@ -4239,6 +4260,7 @@ module Aws::ElastiCache
4239
4260
  # resp.replication_group.member_clusters_outpost_arns #=> Array
4240
4261
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
4241
4262
  # resp.replication_group.kms_key_id #=> String
4263
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
4242
4264
  # resp.replication_group.arn #=> String
4243
4265
  # resp.replication_group.user_group_ids #=> Array
4244
4266
  # resp.replication_group.user_group_ids[0] #=> String
@@ -4258,6 +4280,8 @@ module Aws::ElastiCache
4258
4280
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
4259
4281
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
4260
4282
  # resp.replication_group.engine #=> String
4283
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
4284
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
4261
4285
  #
4262
4286
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
4263
4287
  #
@@ -4310,6 +4334,7 @@ module Aws::ElastiCache
4310
4334
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
4311
4335
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
4312
4336
  # resp.serverless_cache.kms_key_id #=> String
4337
+ # resp.serverless_cache.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
4313
4338
  # resp.serverless_cache.security_group_ids #=> Array
4314
4339
  # resp.serverless_cache.security_group_ids[0] #=> String
4315
4340
  # resp.serverless_cache.endpoint.address #=> String
@@ -4480,6 +4505,7 @@ module Aws::ElastiCache
4480
4505
  # resp.snapshot.kms_key_id #=> String
4481
4506
  # resp.snapshot.arn #=> String
4482
4507
  # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
4508
+ # resp.snapshot.durability #=> String, one of "default", "async", "sync", "disabled"
4483
4509
  #
4484
4510
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
4485
4511
  #
@@ -6982,6 +7008,7 @@ module Aws::ElastiCache
6982
7008
  # resp.replication_groups[0].member_clusters_outpost_arns #=> Array
6983
7009
  # resp.replication_groups[0].member_clusters_outpost_arns[0] #=> String
6984
7010
  # resp.replication_groups[0].kms_key_id #=> String
7011
+ # resp.replication_groups[0].storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
6985
7012
  # resp.replication_groups[0].arn #=> String
6986
7013
  # resp.replication_groups[0].user_group_ids #=> Array
6987
7014
  # resp.replication_groups[0].user_group_ids[0] #=> String
@@ -7001,6 +7028,8 @@ module Aws::ElastiCache
7001
7028
  # resp.replication_groups[0].transit_encryption_mode #=> String, one of "preferred", "required"
7002
7029
  # resp.replication_groups[0].cluster_mode #=> String, one of "enabled", "disabled", "compatible"
7003
7030
  # resp.replication_groups[0].engine #=> String
7031
+ # resp.replication_groups[0].durability #=> String, one of "default", "async", "sync", "disabled"
7032
+ # resp.replication_groups[0].effective_durability #=> String, one of "async", "sync", "disabled"
7004
7033
  #
7005
7034
  #
7006
7035
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -7887,6 +7916,7 @@ module Aws::ElastiCache
7887
7916
  # resp.serverless_caches[0].cache_usage_limits.ecpu_per_second.maximum #=> Integer
7888
7917
  # resp.serverless_caches[0].cache_usage_limits.ecpu_per_second.minimum #=> Integer
7889
7918
  # resp.serverless_caches[0].kms_key_id #=> String
7919
+ # resp.serverless_caches[0].storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
7890
7920
  # resp.serverless_caches[0].security_group_ids #=> Array
7891
7921
  # resp.serverless_caches[0].security_group_ids[0] #=> String
7892
7922
  # resp.serverless_caches[0].endpoint.address #=> String
@@ -8127,6 +8157,7 @@ module Aws::ElastiCache
8127
8157
  # resp.snapshots[0].kms_key_id #=> String
8128
8158
  # resp.snapshots[0].arn #=> String
8129
8159
  # resp.snapshots[0].data_tiering #=> String, one of "enabled", "disabled"
8160
+ # resp.snapshots[0].durability #=> String, one of "default", "async", "sync", "disabled"
8130
8161
  #
8131
8162
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
8132
8163
  #
@@ -8722,6 +8753,7 @@ module Aws::ElastiCache
8722
8753
  # resp.replication_group.member_clusters_outpost_arns #=> Array
8723
8754
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
8724
8755
  # resp.replication_group.kms_key_id #=> String
8756
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
8725
8757
  # resp.replication_group.arn #=> String
8726
8758
  # resp.replication_group.user_group_ids #=> Array
8727
8759
  # resp.replication_group.user_group_ids[0] #=> String
@@ -8741,6 +8773,8 @@ module Aws::ElastiCache
8741
8773
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
8742
8774
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
8743
8775
  # resp.replication_group.engine #=> String
8776
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
8777
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
8744
8778
  #
8745
8779
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
8746
8780
  #
@@ -9943,6 +9977,16 @@ module Aws::ElastiCache
9943
9977
  # complete cluster mode configuration and set the cluster mode to
9944
9978
  # Enabled.
9945
9979
  #
9980
+ # @option params [String] :durability
9981
+ # Specifies the durability setting for the replication group. Use this
9982
+ # parameter to change the durability mode of an existing replication
9983
+ # group, for example from `sync` to `async` or vice versa. For more
9984
+ # information, see [Durability][1].
9985
+ #
9986
+ #
9987
+ #
9988
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
9989
+ #
9946
9990
  # @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9947
9991
  #
9948
9992
  # * {Types::ModifyReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -10066,6 +10110,7 @@ module Aws::ElastiCache
10066
10110
  # transit_encryption_enabled: false,
10067
10111
  # transit_encryption_mode: "preferred", # accepts preferred, required
10068
10112
  # cluster_mode: "enabled", # accepts enabled, disabled, compatible
10113
+ # durability: "default", # accepts default, async, sync, disabled
10069
10114
  # })
10070
10115
  #
10071
10116
  # @example Response structure
@@ -10126,6 +10171,7 @@ module Aws::ElastiCache
10126
10171
  # resp.replication_group.member_clusters_outpost_arns #=> Array
10127
10172
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
10128
10173
  # resp.replication_group.kms_key_id #=> String
10174
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
10129
10175
  # resp.replication_group.arn #=> String
10130
10176
  # resp.replication_group.user_group_ids #=> Array
10131
10177
  # resp.replication_group.user_group_ids[0] #=> String
@@ -10145,6 +10191,8 @@ module Aws::ElastiCache
10145
10191
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
10146
10192
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10147
10193
  # resp.replication_group.engine #=> String
10194
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
10195
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
10148
10196
  #
10149
10197
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
10150
10198
  #
@@ -10279,6 +10327,7 @@ module Aws::ElastiCache
10279
10327
  # resp.replication_group.member_clusters_outpost_arns #=> Array
10280
10328
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
10281
10329
  # resp.replication_group.kms_key_id #=> String
10330
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
10282
10331
  # resp.replication_group.arn #=> String
10283
10332
  # resp.replication_group.user_group_ids #=> Array
10284
10333
  # resp.replication_group.user_group_ids[0] #=> String
@@ -10298,6 +10347,8 @@ module Aws::ElastiCache
10298
10347
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
10299
10348
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10300
10349
  # resp.replication_group.engine #=> String
10350
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
10351
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
10301
10352
  #
10302
10353
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
10303
10354
  #
@@ -10402,6 +10453,7 @@ module Aws::ElastiCache
10402
10453
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.maximum #=> Integer
10403
10454
  # resp.serverless_cache.cache_usage_limits.ecpu_per_second.minimum #=> Integer
10404
10455
  # resp.serverless_cache.kms_key_id #=> String
10456
+ # resp.serverless_cache.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
10405
10457
  # resp.serverless_cache.security_group_ids #=> Array
10406
10458
  # resp.serverless_cache.security_group_ids[0] #=> String
10407
10459
  # resp.serverless_cache.endpoint.address #=> String
@@ -11180,6 +11232,7 @@ module Aws::ElastiCache
11180
11232
  # resp.replication_group.member_clusters_outpost_arns #=> Array
11181
11233
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
11182
11234
  # resp.replication_group.kms_key_id #=> String
11235
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
11183
11236
  # resp.replication_group.arn #=> String
11184
11237
  # resp.replication_group.user_group_ids #=> Array
11185
11238
  # resp.replication_group.user_group_ids[0] #=> String
@@ -11199,6 +11252,8 @@ module Aws::ElastiCache
11199
11252
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
11200
11253
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
11201
11254
  # resp.replication_group.engine #=> String
11255
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
11256
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
11202
11257
  #
11203
11258
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
11204
11259
  #
@@ -11347,6 +11402,7 @@ module Aws::ElastiCache
11347
11402
  # resp.replication_group.member_clusters_outpost_arns #=> Array
11348
11403
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
11349
11404
  # resp.replication_group.kms_key_id #=> String
11405
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
11350
11406
  # resp.replication_group.arn #=> String
11351
11407
  # resp.replication_group.user_group_ids #=> Array
11352
11408
  # resp.replication_group.user_group_ids[0] #=> String
@@ -11366,6 +11422,8 @@ module Aws::ElastiCache
11366
11422
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
11367
11423
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
11368
11424
  # resp.replication_group.engine #=> String
11425
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
11426
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
11369
11427
  #
11370
11428
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
11371
11429
  #
@@ -11460,6 +11518,7 @@ module Aws::ElastiCache
11460
11518
  # resp.replication_group.member_clusters_outpost_arns #=> Array
11461
11519
  # resp.replication_group.member_clusters_outpost_arns[0] #=> String
11462
11520
  # resp.replication_group.kms_key_id #=> String
11521
+ # resp.replication_group.storage_encryption_type #=> String, one of "none", "sse-elasticache", "sse-kms"
11463
11522
  # resp.replication_group.arn #=> String
11464
11523
  # resp.replication_group.user_group_ids #=> Array
11465
11524
  # resp.replication_group.user_group_ids[0] #=> String
@@ -11479,6 +11538,8 @@ module Aws::ElastiCache
11479
11538
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
11480
11539
  # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
11481
11540
  # resp.replication_group.engine #=> String
11541
+ # resp.replication_group.durability #=> String, one of "default", "async", "sync", "disabled"
11542
+ # resp.replication_group.effective_durability #=> String, one of "async", "sync", "disabled"
11482
11543
  #
11483
11544
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestMigration AWS API Documentation
11484
11545
  #
@@ -11507,7 +11568,7 @@ module Aws::ElastiCache
11507
11568
  tracer: tracer
11508
11569
  )
11509
11570
  context[:gem_name] = 'aws-sdk-elasticache'
11510
- context[:gem_version] = '1.145.0'
11571
+ context[:gem_version] = '1.146.0'
11511
11572
  Seahorse::Client::Request.new(handlers, context)
11512
11573
  end
11513
11574
 
@@ -174,9 +174,11 @@ module Aws::ElastiCache
174
174
  DisassociateGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'DisassociateGlobalReplicationGroupResult')
175
175
  Double = Shapes::FloatShape.new(name: 'Double')
176
176
  DuplicateUserNameFault = Shapes::StructureShape.new(name: 'DuplicateUserNameFault', error: {"code" => "DuplicateUserName", "httpStatusCode" => 400, "senderFault" => true})
177
+ Durability = Shapes::StringShape.new(name: 'Durability')
177
178
  EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
178
179
  EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
179
180
  ECPUPerSecond = Shapes::StructureShape.new(name: 'ECPUPerSecond')
181
+ EffectiveDurability = Shapes::StringShape.new(name: 'EffectiveDurability')
180
182
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
181
183
  EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
182
184
  EngineType = Shapes::StringShape.new(name: 'EngineType')
@@ -370,6 +372,7 @@ module Aws::ElastiCache
370
372
  SourceType = Shapes::StringShape.new(name: 'SourceType')
371
373
  StartMigrationMessage = Shapes::StructureShape.new(name: 'StartMigrationMessage')
372
374
  StartMigrationResponse = Shapes::StructureShape.new(name: 'StartMigrationResponse')
375
+ StorageEncryptionType = Shapes::StringShape.new(name: 'StorageEncryptionType')
373
376
  String = Shapes::StringShape.new(name: 'String')
374
377
  Subnet = Shapes::StructureShape.new(name: 'Subnet')
375
378
  SubnetIdentifierList = Shapes::ListShape.new(name: 'SubnetIdentifierList')
@@ -805,6 +808,7 @@ module Aws::ElastiCache
805
808
  CreateReplicationGroupMessage.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
806
809
  CreateReplicationGroupMessage.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
807
810
  CreateReplicationGroupMessage.add_member(:serverless_cache_snapshot_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessCacheSnapshotName"))
811
+ CreateReplicationGroupMessage.add_member(:durability, Shapes::ShapeRef.new(shape: Durability, location_name: "Durability"))
808
812
  CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
809
813
 
810
814
  CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -1395,6 +1399,7 @@ module Aws::ElastiCache
1395
1399
  ModifyReplicationGroupMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
1396
1400
  ModifyReplicationGroupMessage.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1397
1401
  ModifyReplicationGroupMessage.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
1402
+ ModifyReplicationGroupMessage.add_member(:durability, Shapes::ShapeRef.new(shape: Durability, location_name: "Durability"))
1398
1403
  ModifyReplicationGroupMessage.struct_class = Types::ModifyReplicationGroupMessage
1399
1404
 
1400
1405
  ModifyReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -1643,6 +1648,7 @@ module Aws::ElastiCache
1643
1648
  ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
1644
1649
  ReplicationGroup.add_member(:member_clusters_outpost_arns, Shapes::ShapeRef.new(shape: ReplicationGroupOutpostArnList, location_name: "MemberClustersOutpostArns"))
1645
1650
  ReplicationGroup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
1651
+ ReplicationGroup.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
1646
1652
  ReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
1647
1653
  ReplicationGroup.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIds"))
1648
1654
  ReplicationGroup.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
@@ -1654,6 +1660,8 @@ module Aws::ElastiCache
1654
1660
  ReplicationGroup.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1655
1661
  ReplicationGroup.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
1656
1662
  ReplicationGroup.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
1663
+ ReplicationGroup.add_member(:durability, Shapes::ShapeRef.new(shape: Durability, location_name: "Durability"))
1664
+ ReplicationGroup.add_member(:effective_durability, Shapes::ShapeRef.new(shape: EffectiveDurability, location_name: "EffectiveDurability"))
1657
1665
  ReplicationGroup.struct_class = Types::ReplicationGroup
1658
1666
 
1659
1667
  ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
@@ -1773,6 +1781,7 @@ module Aws::ElastiCache
1773
1781
  ServerlessCache.add_member(:full_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "FullEngineVersion"))
1774
1782
  ServerlessCache.add_member(:cache_usage_limits, Shapes::ShapeRef.new(shape: CacheUsageLimits, location_name: "CacheUsageLimits"))
1775
1783
  ServerlessCache.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
1784
+ ServerlessCache.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
1776
1785
  ServerlessCache.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
1777
1786
  ServerlessCache.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
1778
1787
  ServerlessCache.add_member(:reader_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ReaderEndpoint"))
@@ -1873,6 +1882,7 @@ module Aws::ElastiCache
1873
1882
  Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
1874
1883
  Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
1875
1884
  Snapshot.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
1885
+ Snapshot.add_member(:durability, Shapes::ShapeRef.new(shape: Durability, location_name: "Durability"))
1876
1886
  Snapshot.struct_class = Types::Snapshot
1877
1887
 
1878
1888
  SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
@@ -2729,16 +2729,13 @@ module Aws::ElastiCache
2729
2729
  # @return [Boolean]
2730
2730
  #
2731
2731
  # @!attribute [rw] at_rest_encryption_enabled
2732
- # A flag that enables encryption at rest when set to `true`.
2732
+ # A flag that enables encryption at-rest on the replication group when
2733
+ # set to `true`. In some cases, encryption at-rest may be enabled even
2734
+ # when this value is false. Use `StorageEncryptionType` to view the
2735
+ # effective encryption state of a cluster.
2733
2736
  #
2734
2737
  # You cannot modify the value of `AtRestEncryptionEnabled` after the
2735
- # replication group is created. To enable encryption at rest on a
2736
- # replication group you must set `AtRestEncryptionEnabled` to `true`
2737
- # when you create the replication group.
2738
- #
2739
- # **Required:** Only available when creating a replication group in an
2740
- # Amazon VPC using Valkey `7.2` and later, Redis OSS version `3.2.6`,
2741
- # or Redis OSS `4.x` and later.
2738
+ # replication group is created.
2742
2739
  #
2743
2740
  # Default: `true` when using Valkey, `false` when using Redis OSS
2744
2741
  # @return [Boolean]
@@ -2823,6 +2820,18 @@ module Aws::ElastiCache
2823
2820
  # Available for Valkey, Redis OSS only.
2824
2821
  # @return [String]
2825
2822
  #
2823
+ # @!attribute [rw] durability
2824
+ # Specifies the durability setting for the replication group. When set
2825
+ # to `default`, the service determines the effective durability based
2826
+ # on the engine version, cluster mode, and other parameters. The
2827
+ # resolved setting is reflected in the `EffectiveDurability` property
2828
+ # of the replication group. For more information, see [Durability][1].
2829
+ #
2830
+ #
2831
+ #
2832
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
2833
+ # @return [String]
2834
+ #
2826
2835
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
2827
2836
  #
2828
2837
  class CreateReplicationGroupMessage < Struct.new(
@@ -2864,7 +2873,8 @@ module Aws::ElastiCache
2864
2873
  :ip_discovery,
2865
2874
  :transit_encryption_mode,
2866
2875
  :cluster_mode,
2867
- :serverless_cache_snapshot_name)
2876
+ :serverless_cache_snapshot_name,
2877
+ :durability)
2868
2878
  SENSITIVE = []
2869
2879
  include Aws::Structure
2870
2880
  end
@@ -2959,7 +2969,7 @@ module Aws::ElastiCache
2959
2969
  # @!attribute [rw] network_type
2960
2970
  # The IP protocol version used by the serverless cache. Must be either
2961
2971
  # `ipv4` \| `ipv6` \| `dual_stack`. `ipv6` is only supported with
2962
- # ipv6-only subnets. If not specified, defaults to `ipv4`, unless all
2972
+ # IPv6-only subnets. If not specified, defaults to `ipv4`, unless all
2963
2973
  # provided subnets are IPv6-only, in which case it defaults to `ipv6`.
2964
2974
  # @return [String]
2965
2975
  #
@@ -6602,6 +6612,17 @@ module Aws::ElastiCache
6602
6612
  # mode to Enabled.
6603
6613
  # @return [String]
6604
6614
  #
6615
+ # @!attribute [rw] durability
6616
+ # Specifies the durability setting for the replication group. Use this
6617
+ # parameter to change the durability mode of an existing replication
6618
+ # group, for example from `sync` to `async` or vice versa. For more
6619
+ # information, see [Durability][1].
6620
+ #
6621
+ #
6622
+ #
6623
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
6624
+ # @return [String]
6625
+ #
6605
6626
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
6606
6627
  #
6607
6628
  class ModifyReplicationGroupMessage < Struct.new(
@@ -6634,7 +6655,8 @@ module Aws::ElastiCache
6634
6655
  :ip_discovery,
6635
6656
  :transit_encryption_enabled,
6636
6657
  :transit_encryption_mode,
6637
- :cluster_mode)
6658
+ :cluster_mode,
6659
+ :durability)
6638
6660
  SENSITIVE = []
6639
6661
  include Aws::Structure
6640
6662
  end
@@ -7753,17 +7775,15 @@ module Aws::ElastiCache
7753
7775
  # @return [Boolean]
7754
7776
  #
7755
7777
  # @!attribute [rw] at_rest_encryption_enabled
7756
- # A flag that enables encryption at-rest when set to `true`.
7778
+ # A flag that enables encryption at-rest on the cluster when set to
7779
+ # `true`. In some cases, encryption at-rest may be enabled even when
7780
+ # this value is false. Use `StorageEncryptionType` to view the
7781
+ # effective encryption state of a cluster.
7757
7782
  #
7758
7783
  # You cannot modify the value of `AtRestEncryptionEnabled` after the
7759
- # cluster is created. To enable encryption at-rest on a cluster you
7760
- # must set `AtRestEncryptionEnabled` to `true` when you create a
7761
- # cluster.
7762
- #
7763
- # **Required:** Only available when creating a replication group in an
7764
- # Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
7784
+ # cluster is created.
7765
7785
  #
7766
- # Default: `false`
7786
+ # Default: `true` when using Valkey, `false` when using Redis OSS
7767
7787
  # @return [Boolean]
7768
7788
  #
7769
7789
  # @!attribute [rw] member_clusters_outpost_arns
@@ -7774,6 +7794,13 @@ module Aws::ElastiCache
7774
7794
  # The ID of the KMS key used to encrypt the disk in the cluster.
7775
7795
  # @return [String]
7776
7796
  #
7797
+ # @!attribute [rw] storage_encryption_type
7798
+ # Indicates the type of encryption for data stored at rest in the
7799
+ # replication group. The value is `none` if at-rest encryption is not
7800
+ # enabled, `sse-elasticache` if an ElastiCache service-managed key is
7801
+ # used, or `sse-kms` if a customer-managed KMS key is used.
7802
+ # @return [String]
7803
+ #
7777
7804
  # @!attribute [rw] arn
7778
7805
  # The ARN (Amazon Resource Name) of the replication group.
7779
7806
  # @return [String]
@@ -7850,6 +7877,27 @@ module Aws::ElastiCache
7850
7877
  # memcached or redis.
7851
7878
  # @return [String]
7852
7879
  #
7880
+ # @!attribute [rw] durability
7881
+ # The durability setting of the replication group. For more
7882
+ # information, see [Durability][1].
7883
+ #
7884
+ #
7885
+ #
7886
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
7887
+ # @return [String]
7888
+ #
7889
+ # @!attribute [rw] effective_durability
7890
+ # The effective durability of the replication group. When `Durability`
7891
+ # is set to `default`, the service resolves the actual durability
7892
+ # based on the engine version, cluster mode, and other parameters.
7893
+ # This field reflects the resolved value. For more information, see
7894
+ # [Configuring Durability][1].
7895
+ #
7896
+ #
7897
+ #
7898
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/ConfiguringDurability.html
7899
+ # @return [String]
7900
+ #
7853
7901
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7854
7902
  #
7855
7903
  class ReplicationGroup < Struct.new(
@@ -7874,6 +7922,7 @@ module Aws::ElastiCache
7874
7922
  :at_rest_encryption_enabled,
7875
7923
  :member_clusters_outpost_arns,
7876
7924
  :kms_key_id,
7925
+ :storage_encryption_type,
7877
7926
  :arn,
7878
7927
  :user_group_ids,
7879
7928
  :log_delivery_configurations,
@@ -7884,7 +7933,9 @@ module Aws::ElastiCache
7884
7933
  :ip_discovery,
7885
7934
  :transit_encryption_mode,
7886
7935
  :cluster_mode,
7887
- :engine)
7936
+ :engine,
7937
+ :durability,
7938
+ :effective_durability)
7888
7939
  SENSITIVE = []
7889
7940
  include Aws::Structure
7890
7941
  end
@@ -8611,6 +8662,13 @@ module Aws::ElastiCache
8611
8662
  # that is used to encrypt data at rest in the serverless cache.
8612
8663
  # @return [String]
8613
8664
  #
8665
+ # @!attribute [rw] storage_encryption_type
8666
+ # Indicates the type of encryption for data stored at rest in the
8667
+ # serverless cache. Serverless caches are always encrypted at rest.
8668
+ # The value is `sse-elasticache` if an ElastiCache service-managed key
8669
+ # is used, or `sse-kms` if a customer-managed KMS key is used.
8670
+ # @return [String]
8671
+ #
8614
8672
  # @!attribute [rw] security_group_ids
8615
8673
  # The IDs of the EC2 security groups associated with the serverless
8616
8674
  # cache.
@@ -8675,6 +8733,7 @@ module Aws::ElastiCache
8675
8733
  :full_engine_version,
8676
8734
  :cache_usage_limits,
8677
8735
  :kms_key_id,
8736
+ :storage_encryption_type,
8678
8737
  :security_group_ids,
8679
8738
  :endpoint,
8680
8739
  :reader_endpoint,
@@ -9229,6 +9288,17 @@ module Aws::ElastiCache
9229
9288
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/data-tiering.html
9230
9289
  # @return [String]
9231
9290
  #
9291
+ # @!attribute [rw] durability
9292
+ # The durability setting of the cluster when the snapshot was taken.
9293
+ # When restoring from this snapshot, the cluster uses this durability
9294
+ # setting unless overridden in the restore request. For more
9295
+ # information, see [Durability][1].
9296
+ #
9297
+ #
9298
+ #
9299
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Durability.html
9300
+ # @return [String]
9301
+ #
9232
9302
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
9233
9303
  #
9234
9304
  class Snapshot < Struct.new(
@@ -9259,7 +9329,8 @@ module Aws::ElastiCache
9259
9329
  :node_snapshots,
9260
9330
  :kms_key_id,
9261
9331
  :arn,
9262
- :data_tiering)
9332
+ :data_tiering,
9333
+ :durability)
9263
9334
  SENSITIVE = []
9264
9335
  include Aws::Structure
9265
9336
  end
@@ -55,7 +55,7 @@ module Aws::ElastiCache
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticache/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticache/endpoints'
57
57
 
58
- GEM_VERSION = '1.145.0'
58
+ GEM_VERSION = '1.146.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -352,7 +352,8 @@ module Aws
352
352
  ?ip_discovery: ("ipv4" | "ipv6"),
353
353
  ?transit_encryption_mode: ("preferred" | "required"),
354
354
  ?cluster_mode: ("enabled" | "disabled" | "compatible"),
355
- ?serverless_cache_snapshot_name: ::String
355
+ ?serverless_cache_snapshot_name: ::String,
356
+ ?durability: ("default" | "async" | "sync" | "disabled")
356
357
  ) -> _CreateReplicationGroupResponseSuccess
357
358
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationGroupResponseSuccess
358
359
 
@@ -1145,7 +1146,8 @@ module Aws
1145
1146
  ?ip_discovery: ("ipv4" | "ipv6"),
1146
1147
  ?transit_encryption_enabled: bool,
1147
1148
  ?transit_encryption_mode: ("preferred" | "required"),
1148
- ?cluster_mode: ("enabled" | "disabled" | "compatible")
1149
+ ?cluster_mode: ("enabled" | "disabled" | "compatible"),
1150
+ ?durability: ("default" | "async" | "sync" | "disabled")
1149
1151
  ) -> _ModifyReplicationGroupResponseSuccess
1150
1152
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationGroupResponseSuccess
1151
1153
 
data/sig/types.rbs CHANGED
@@ -472,6 +472,7 @@ module Aws::ElastiCache
472
472
  attr_accessor transit_encryption_mode: ("preferred" | "required")
473
473
  attr_accessor cluster_mode: ("enabled" | "disabled" | "compatible")
474
474
  attr_accessor serverless_cache_snapshot_name: ::String
475
+ attr_accessor durability: ("default" | "async" | "sync" | "disabled")
475
476
  SENSITIVE: []
476
477
  end
477
478
 
@@ -1249,6 +1250,7 @@ module Aws::ElastiCache
1249
1250
  attr_accessor transit_encryption_enabled: bool
1250
1251
  attr_accessor transit_encryption_mode: ("preferred" | "required")
1251
1252
  attr_accessor cluster_mode: ("enabled" | "disabled" | "compatible")
1253
+ attr_accessor durability: ("default" | "async" | "sync" | "disabled")
1252
1254
  SENSITIVE: []
1253
1255
  end
1254
1256
 
@@ -1516,6 +1518,7 @@ module Aws::ElastiCache
1516
1518
  attr_accessor at_rest_encryption_enabled: bool
1517
1519
  attr_accessor member_clusters_outpost_arns: ::Array[::String]
1518
1520
  attr_accessor kms_key_id: ::String
1521
+ attr_accessor storage_encryption_type: ("none" | "sse-elasticache" | "sse-kms")
1519
1522
  attr_accessor arn: ::String
1520
1523
  attr_accessor user_group_ids: ::Array[::String]
1521
1524
  attr_accessor log_delivery_configurations: ::Array[Types::LogDeliveryConfiguration]
@@ -1527,6 +1530,8 @@ module Aws::ElastiCache
1527
1530
  attr_accessor transit_encryption_mode: ("preferred" | "required")
1528
1531
  attr_accessor cluster_mode: ("enabled" | "disabled" | "compatible")
1529
1532
  attr_accessor engine: ::String
1533
+ attr_accessor durability: ("default" | "async" | "sync" | "disabled")
1534
+ attr_accessor effective_durability: ("async" | "sync" | "disabled")
1530
1535
  SENSITIVE: []
1531
1536
  end
1532
1537
 
@@ -1666,6 +1671,7 @@ module Aws::ElastiCache
1666
1671
  attr_accessor full_engine_version: ::String
1667
1672
  attr_accessor cache_usage_limits: Types::CacheUsageLimits
1668
1673
  attr_accessor kms_key_id: ::String
1674
+ attr_accessor storage_encryption_type: ("none" | "sse-elasticache" | "sse-kms")
1669
1675
  attr_accessor security_group_ids: ::Array[::String]
1670
1676
  attr_accessor endpoint: Types::Endpoint
1671
1677
  attr_accessor reader_endpoint: Types::Endpoint
@@ -1778,6 +1784,7 @@ module Aws::ElastiCache
1778
1784
  attr_accessor kms_key_id: ::String
1779
1785
  attr_accessor arn: ::String
1780
1786
  attr_accessor data_tiering: ("enabled" | "disabled")
1787
+ attr_accessor durability: ("default" | "async" | "sync" | "disabled")
1781
1788
  SENSITIVE: []
1782
1789
  end
1783
1790
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.145.0
4
+ version: 1.146.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services