aws-sdk-elasticache 1.140.0 → 1.141.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: 103ae27133c5d1182e549b721fa5c64cae92a9d4e8873da036a8e051b8e0cdac
4
- data.tar.gz: 8c2e21df36453fa2b6393cf1701e2513dd287f8bc5da3d12f2d546f861b701be
3
+ metadata.gz: 754f338518ffde1bfad0b1490c7dc70ac7c4a1b5ffadaa5964806292a10a1c5e
4
+ data.tar.gz: d61515ade59e184c7ff7de05a512a6bca7547c567aeaea104b7ddb4f283490ec
5
5
  SHA512:
6
- metadata.gz: 3015b657c487a41b71b813e8db12cd0fe4004abecc536ff7fc92d6dd8d720d80c2395765b0970f9f9a46a230a68c9ada0f852f19c4fb896d872258f7cd610c9e
7
- data.tar.gz: f571b0fad1d0abce7ee9c518545520cf0e98347588becc2058f6282333508d0e4d381edc763422334b3418cb9f04d39b0ca180c7a3c462e51d51af929fc472ce
6
+ metadata.gz: dbec816e695e0d91aecc6a3440223be3c5907eaa3adf7c0f628dec7a62176f80ad753bce8a466557b4fe9e1fe09ca55e035fb937ca396307494303288c3de8dd
7
+ data.tar.gz: 99c976e488fd8f878aa9dea94330dfbd84a542a45c9ae9ff316ad0294fafae40ba0970f496c909a5cf7d8811ce1fce071977a227a09e829c7f3e89963cc2d580
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.141.0 (2026-04-01)
5
+ ------------------
6
+
7
+ * Feature - Updated SnapshotRetentionLimit documentation for ServerlessCache to correctly describe the parameter as number of days (max 35) instead of number of snapshots.
8
+
4
9
  1.140.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.140.0
1
+ 1.141.0
@@ -868,7 +868,8 @@ module Aws::ElastiCache
868
868
  #
869
869
  # @option params [required, String] :target_serverless_cache_snapshot_name
870
870
  # The identifier for the snapshot to be created. Available for Valkey,
871
- # Redis OSS and Serverless Memcached only.
871
+ # Redis OSS and Serverless Memcached only. This value is stored as a
872
+ # lowercase string.
872
873
  #
873
874
  # @option params [String] :kms_key_id
874
875
  # The identifier of the KMS key used to encrypt the target snapshot.
@@ -1004,7 +1005,8 @@ module Aws::ElastiCache
1004
1005
  # @option params [required, String] :target_snapshot_name
1005
1006
  # A name for the snapshot copy. ElastiCache does not permit overwriting
1006
1007
  # a snapshot, therefore this name must be unique within its context -
1007
- # ElastiCache or an Amazon S3 bucket if exporting.
1008
+ # ElastiCache or an Amazon S3 bucket if exporting. This value is stored
1009
+ # as a lowercase string.
1008
1010
  #
1009
1011
  # @option params [String] :target_bucket
1010
1012
  # The Amazon S3 bucket to which the snapshot is exported. This parameter
@@ -1789,7 +1791,8 @@ module Aws::ElastiCache
1789
1791
  # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/ParameterGroups.html
1790
1792
  #
1791
1793
  # @option params [required, String] :cache_parameter_group_name
1792
- # A user-specified name for the cache parameter group.
1794
+ # A user-specified name for the cache parameter group. This value is
1795
+ # stored as a lowercase string.
1793
1796
  #
1794
1797
  # @option params [required, String] :cache_parameter_group_family
1795
1798
  # The name of the cache parameter group family that the cache parameter
@@ -2089,7 +2092,8 @@ module Aws::ElastiCache
2089
2092
  #
2090
2093
  # @option params [required, String] :primary_replication_group_id
2091
2094
  # The name of the primary cluster that accepts writes and will replicate
2092
- # updates to the secondary cluster.
2095
+ # updates to the secondary cluster. This value is stored as a lowercase
2096
+ # string.
2093
2097
  #
2094
2098
  # @return [Types::CreateGlobalReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2095
2099
  #
@@ -2599,7 +2603,7 @@ module Aws::ElastiCache
2599
2603
  # when you create the replication group.
2600
2604
  #
2601
2605
  # **Required:** Only available when creating a replication group in an
2602
- # Amazon VPC using Valkey 7.2 and later, Redis OSS version `3.2.6`, or
2606
+ # Amazon VPC using Valkey `7.2` and later, Redis OSS version `3.2.6`, or
2603
2607
  # Redis OSS `4.x` and later.
2604
2608
  #
2605
2609
  # Default: `true` when using Valkey, `false` when using Redis OSS
@@ -2983,10 +2987,9 @@ module Aws::ElastiCache
2983
2987
  # to the same VPC.
2984
2988
  #
2985
2989
  # @option params [Integer] :snapshot_retention_limit
2986
- # The number of snapshots that will be retained for the serverless cache
2987
- # that is being created. As new snapshots beyond this limit are added,
2988
- # the oldest snapshots will be deleted on a rolling basis. Available for
2989
- # Valkey, Redis OSS and Serverless Memcached only.
2990
+ # The number of days for which ElastiCache retains automatic snapshots
2991
+ # before deleting them. Available for Valkey, Redis OSS and Serverless
2992
+ # Memcached only. The maximum value allowed is 35 days.
2990
2993
  #
2991
2994
  # @option params [String] :daily_snapshot_time
2992
2995
  # The daily time that snapshots will be created from the new serverless
@@ -2994,6 +2997,12 @@ module Aws::ElastiCache
2994
2997
  # will be created on an automatic daily basis. Available for Valkey,
2995
2998
  # Redis OSS and Serverless Memcached only.
2996
2999
  #
3000
+ # @option params [String] :network_type
3001
+ # The IP protocol version used by the serverless cache. Must be either
3002
+ # `ipv4` \| `ipv6` \| `dual_stack`. `ipv6` is only supported with
3003
+ # ipv6-only subnets. If not specified, defaults to `ipv4`, unless all
3004
+ # provided subnets are IPv6-only, in which case it defaults to `ipv6`.
3005
+ #
2997
3006
  # @return [Types::CreateServerlessCacheResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2998
3007
  #
2999
3008
  # * {Types::CreateServerlessCacheResponse#serverless_cache #serverless_cache} => Types::ServerlessCache
@@ -3029,6 +3038,7 @@ module Aws::ElastiCache
3029
3038
  # subnet_ids: ["String"],
3030
3039
  # snapshot_retention_limit: 1,
3031
3040
  # daily_snapshot_time: "String",
3041
+ # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
3032
3042
  # })
3033
3043
  #
3034
3044
  # @example Response structure
@@ -3058,6 +3068,7 @@ module Aws::ElastiCache
3058
3068
  # resp.serverless_cache.subnet_ids[0] #=> String
3059
3069
  # resp.serverless_cache.snapshot_retention_limit #=> Integer
3060
3070
  # resp.serverless_cache.daily_snapshot_time #=> String
3071
+ # resp.serverless_cache.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3061
3072
  #
3062
3073
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateServerlessCache AWS API Documentation
3063
3074
  #
@@ -3075,7 +3086,8 @@ module Aws::ElastiCache
3075
3086
  # @option params [required, String] :serverless_cache_snapshot_name
3076
3087
  # The name for the snapshot being created. Must be unique for the
3077
3088
  # customer account. Available for Valkey, Redis OSS and Serverless
3078
- # Memcached only. Must be between 1 and 255 characters.
3089
+ # Memcached only. Must be between 1 and 255 characters. This value is
3090
+ # stored as a lowercase string.
3079
3091
  #
3080
3092
  # @option params [required, String] :serverless_cache_name
3081
3093
  # The name of an existing serverless cache. The snapshot is created from
@@ -3148,7 +3160,8 @@ module Aws::ElastiCache
3148
3160
  # this cluster.
3149
3161
  #
3150
3162
  # @option params [required, String] :snapshot_name
3151
- # A name for the snapshot being created.
3163
+ # A name for the snapshot being created. This value is stored as a
3164
+ # lowercase string.
3152
3165
  #
3153
3166
  # @option params [String] :kms_key_id
3154
3167
  # The ID of the KMS key used to encrypt the snapshot.
@@ -3366,7 +3379,7 @@ module Aws::ElastiCache
3366
3379
  # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
3367
3380
  #
3368
3381
  # @option params [required, String] :user_id
3369
- # The ID of the user.
3382
+ # The ID of the user. This value is stored as a lowercase string.
3370
3383
  #
3371
3384
  # @option params [required, String] :user_name
3372
3385
  # The username of the user.
@@ -3457,7 +3470,7 @@ module Aws::ElastiCache
3457
3470
  # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
3458
3471
  #
3459
3472
  # @option params [required, String] :user_group_id
3460
- # The ID of the user group.
3473
+ # The ID of the user group. This value is stored as a lowercase string.
3461
3474
  #
3462
3475
  # @option params [required, String] :engine
3463
3476
  # Sets the engine listed in a user group. The options are valkey or
@@ -4311,6 +4324,7 @@ module Aws::ElastiCache
4311
4324
  # resp.serverless_cache.subnet_ids[0] #=> String
4312
4325
  # resp.serverless_cache.snapshot_retention_limit #=> Integer
4313
4326
  # resp.serverless_cache.daily_snapshot_time #=> String
4327
+ # resp.serverless_cache.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
4314
4328
  #
4315
4329
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteServerlessCache AWS API Documentation
4316
4330
  #
@@ -7887,6 +7901,7 @@ module Aws::ElastiCache
7887
7901
  # resp.serverless_caches[0].subnet_ids[0] #=> String
7888
7902
  # resp.serverless_caches[0].snapshot_retention_limit #=> Integer
7889
7903
  # resp.serverless_caches[0].daily_snapshot_time #=> String
7904
+ # resp.serverless_caches[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
7890
7905
  #
7891
7906
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeServerlessCaches AWS API Documentation
7892
7907
  #
@@ -9600,7 +9615,7 @@ module Aws::ElastiCache
9600
9615
  #
9601
9616
  # @option params [String] :engine
9602
9617
  # Modifies the engine listed in a global replication group message. The
9603
- # options are redis, memcached or valkey.
9618
+ # options are valkey, memcached or redis.
9604
9619
  #
9605
9620
  # @option params [String] :engine_version
9606
9621
  # The upgraded version of the cache engine to be run on the clusters in
@@ -9795,7 +9810,7 @@ module Aws::ElastiCache
9795
9810
  #
9796
9811
  # @option params [String] :engine
9797
9812
  # Modifies the engine listed in a replication group message. The options
9798
- # are redis, memcached or valkey.
9813
+ # are valkey, memcached or redis.
9799
9814
  #
9800
9815
  # @option params [String] :engine_version
9801
9816
  # The upgraded version of the cache engine to be run on the clusters in
@@ -10340,7 +10355,7 @@ module Aws::ElastiCache
10340
10355
  #
10341
10356
  # @option params [String] :engine
10342
10357
  # Modifies the engine listed in a serverless cache request. The options
10343
- # are redis, memcached or valkey.
10358
+ # are valkey, memcached or redis.
10344
10359
  #
10345
10360
  # @option params [String] :major_engine_version
10346
10361
  # Modifies the engine vesion listed in a serverless cache request.
@@ -10401,6 +10416,7 @@ module Aws::ElastiCache
10401
10416
  # resp.serverless_cache.subnet_ids[0] #=> String
10402
10417
  # resp.serverless_cache.snapshot_retention_limit #=> Integer
10403
10418
  # resp.serverless_cache.daily_snapshot_time #=> String
10419
+ # resp.serverless_cache.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
10404
10420
  #
10405
10421
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyServerlessCache AWS API Documentation
10406
10422
  #
@@ -11493,7 +11509,7 @@ module Aws::ElastiCache
11493
11509
  tracer: tracer
11494
11510
  )
11495
11511
  context[:gem_name] = 'aws-sdk-elasticache'
11496
- context[:gem_version] = '1.140.0'
11512
+ context[:gem_version] = '1.141.0'
11497
11513
  Seahorse::Client::Request.new(handlers, context)
11498
11514
  end
11499
11515
 
@@ -823,6 +823,7 @@ module Aws::ElastiCache
823
823
  CreateServerlessCacheRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdsList, location_name: "SubnetIds"))
824
824
  CreateServerlessCacheRequest.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
825
825
  CreateServerlessCacheRequest.add_member(:daily_snapshot_time, Shapes::ShapeRef.new(shape: String, location_name: "DailySnapshotTime"))
826
+ CreateServerlessCacheRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
826
827
  CreateServerlessCacheRequest.struct_class = Types::CreateServerlessCacheRequest
827
828
 
828
829
  CreateServerlessCacheResponse.add_member(:serverless_cache, Shapes::ShapeRef.new(shape: ServerlessCache, location_name: "ServerlessCache"))
@@ -1780,6 +1781,7 @@ module Aws::ElastiCache
1780
1781
  ServerlessCache.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdsList, location_name: "SubnetIds"))
1781
1782
  ServerlessCache.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
1782
1783
  ServerlessCache.add_member(:daily_snapshot_time, Shapes::ShapeRef.new(shape: String, location_name: "DailySnapshotTime"))
1784
+ ServerlessCache.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
1783
1785
  ServerlessCache.struct_class = Types::ServerlessCache
1784
1786
 
1785
1787
  ServerlessCacheAlreadyExistsFault.struct_class = Types::ServerlessCacheAlreadyExistsFault
@@ -1502,7 +1502,8 @@ module Aws::ElastiCache
1502
1502
  #
1503
1503
  # @!attribute [rw] target_serverless_cache_snapshot_name
1504
1504
  # The identifier for the snapshot to be created. Available for Valkey,
1505
- # Redis OSS and Serverless Memcached only.
1505
+ # Redis OSS and Serverless Memcached only. This value is stored as a
1506
+ # lowercase string.
1506
1507
  # @return [String]
1507
1508
  #
1508
1509
  # @!attribute [rw] kms_key_id
@@ -1549,7 +1550,8 @@ module Aws::ElastiCache
1549
1550
  # @!attribute [rw] target_snapshot_name
1550
1551
  # A name for the snapshot copy. ElastiCache does not permit
1551
1552
  # overwriting a snapshot, therefore this name must be unique within
1552
- # its context - ElastiCache or an Amazon S3 bucket if exporting.
1553
+ # its context - ElastiCache or an Amazon S3 bucket if exporting. This
1554
+ # value is stored as a lowercase string.
1553
1555
  # @return [String]
1554
1556
  #
1555
1557
  # @!attribute [rw] target_bucket
@@ -2076,7 +2078,8 @@ module Aws::ElastiCache
2076
2078
  # Represents the input of a `CreateCacheParameterGroup` operation.
2077
2079
  #
2078
2080
  # @!attribute [rw] cache_parameter_group_name
2079
- # A user-specified name for the cache parameter group.
2081
+ # A user-specified name for the cache parameter group. This value is
2082
+ # stored as a lowercase string.
2080
2083
  # @return [String]
2081
2084
  #
2082
2085
  # @!attribute [rw] cache_parameter_group_family
@@ -2248,7 +2251,8 @@ module Aws::ElastiCache
2248
2251
  #
2249
2252
  # @!attribute [rw] primary_replication_group_id
2250
2253
  # The name of the primary cluster that accepts writes and will
2251
- # replicate updates to the secondary cluster.
2254
+ # replicate updates to the secondary cluster. This value is stored as
2255
+ # a lowercase string.
2252
2256
  # @return [String]
2253
2257
  #
2254
2258
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateGlobalReplicationGroupMessage AWS API Documentation
@@ -2733,8 +2737,8 @@ module Aws::ElastiCache
2733
2737
  # when you create the replication group.
2734
2738
  #
2735
2739
  # **Required:** Only available when creating a replication group in an
2736
- # Amazon VPC using Valkey 7.2 and later, Redis OSS version `3.2.6`, or
2737
- # Redis OSS `4.x` and later.
2740
+ # Amazon VPC using Valkey `7.2` and later, Redis OSS version `3.2.6`,
2741
+ # or Redis OSS `4.x` and later.
2738
2742
  #
2739
2743
  # Default: `true` when using Valkey, `false` when using Redis OSS
2740
2744
  # @return [Boolean]
@@ -2940,10 +2944,9 @@ module Aws::ElastiCache
2940
2944
  # @return [Array<String>]
2941
2945
  #
2942
2946
  # @!attribute [rw] snapshot_retention_limit
2943
- # The number of snapshots that will be retained for the serverless
2944
- # cache that is being created. As new snapshots beyond this limit are
2945
- # added, the oldest snapshots will be deleted on a rolling basis.
2946
- # Available for Valkey, Redis OSS and Serverless Memcached only.
2947
+ # The number of days for which ElastiCache retains automatic snapshots
2948
+ # before deleting them. Available for Valkey, Redis OSS and Serverless
2949
+ # Memcached only. The maximum value allowed is 35 days.
2947
2950
  # @return [Integer]
2948
2951
  #
2949
2952
  # @!attribute [rw] daily_snapshot_time
@@ -2953,6 +2956,13 @@ module Aws::ElastiCache
2953
2956
  # for Valkey, Redis OSS and Serverless Memcached only.
2954
2957
  # @return [String]
2955
2958
  #
2959
+ # @!attribute [rw] network_type
2960
+ # The IP protocol version used by the serverless cache. Must be either
2961
+ # `ipv4` \| `ipv6` \| `dual_stack`. `ipv6` is only supported with
2962
+ # ipv6-only subnets. If not specified, defaults to `ipv4`, unless all
2963
+ # provided subnets are IPv6-only, in which case it defaults to `ipv6`.
2964
+ # @return [String]
2965
+ #
2956
2966
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateServerlessCacheRequest AWS API Documentation
2957
2967
  #
2958
2968
  class CreateServerlessCacheRequest < Struct.new(
@@ -2968,7 +2978,8 @@ module Aws::ElastiCache
2968
2978
  :user_group_id,
2969
2979
  :subnet_ids,
2970
2980
  :snapshot_retention_limit,
2971
- :daily_snapshot_time)
2981
+ :daily_snapshot_time,
2982
+ :network_type)
2972
2983
  SENSITIVE = []
2973
2984
  include Aws::Structure
2974
2985
  end
@@ -2988,7 +2999,8 @@ module Aws::ElastiCache
2988
2999
  # @!attribute [rw] serverless_cache_snapshot_name
2989
3000
  # The name for the snapshot being created. Must be unique for the
2990
3001
  # customer account. Available for Valkey, Redis OSS and Serverless
2991
- # Memcached only. Must be between 1 and 255 characters.
3002
+ # Memcached only. Must be between 1 and 255 characters. This value is
3003
+ # stored as a lowercase string.
2992
3004
  # @return [String]
2993
3005
  #
2994
3006
  # @!attribute [rw] serverless_cache_name
@@ -3046,7 +3058,8 @@ module Aws::ElastiCache
3046
3058
  # @return [String]
3047
3059
  #
3048
3060
  # @!attribute [rw] snapshot_name
3049
- # A name for the snapshot being created.
3061
+ # A name for the snapshot being created. This value is stored as a
3062
+ # lowercase string.
3050
3063
  # @return [String]
3051
3064
  #
3052
3065
  # @!attribute [rw] kms_key_id
@@ -3085,7 +3098,8 @@ module Aws::ElastiCache
3085
3098
  end
3086
3099
 
3087
3100
  # @!attribute [rw] user_group_id
3088
- # The ID of the user group.
3101
+ # The ID of the user group. This value is stored as a lowercase
3102
+ # string.
3089
3103
  # @return [String]
3090
3104
  #
3091
3105
  # @!attribute [rw] engine
@@ -3115,7 +3129,7 @@ module Aws::ElastiCache
3115
3129
  end
3116
3130
 
3117
3131
  # @!attribute [rw] user_id
3118
- # The ID of the user.
3132
+ # The ID of the user. This value is stored as a lowercase string.
3119
3133
  # @return [String]
3120
3134
  #
3121
3135
  # @!attribute [rw] user_name
@@ -6249,7 +6263,7 @@ module Aws::ElastiCache
6249
6263
  #
6250
6264
  # @!attribute [rw] engine
6251
6265
  # Modifies the engine listed in a global replication group message.
6252
- # The options are redis, memcached or valkey.
6266
+ # The options are valkey, memcached or redis.
6253
6267
  # @return [String]
6254
6268
  #
6255
6269
  # @!attribute [rw] engine_version
@@ -6435,7 +6449,7 @@ module Aws::ElastiCache
6435
6449
  #
6436
6450
  # @!attribute [rw] engine
6437
6451
  # Modifies the engine listed in a replication group message. The
6438
- # options are redis, memcached or valkey.
6452
+ # options are valkey, memcached or redis.
6439
6453
  # @return [String]
6440
6454
  #
6441
6455
  # @!attribute [rw] engine_version
@@ -6768,7 +6782,7 @@ module Aws::ElastiCache
6768
6782
  #
6769
6783
  # @!attribute [rw] engine
6770
6784
  # Modifies the engine listed in a serverless cache request. The
6771
- # options are redis, memcached or valkey.
6785
+ # options are valkey, memcached or redis.
6772
6786
  # @return [String]
6773
6787
  #
6774
6788
  # @!attribute [rw] major_engine_version
@@ -7832,8 +7846,8 @@ module Aws::ElastiCache
7832
7846
  # @return [String]
7833
7847
  #
7834
7848
  # @!attribute [rw] engine
7835
- # The engine used in a replication group. The options are redis,
7836
- # memcached or valkey.
7849
+ # The engine used in a replication group. The options are valkey,
7850
+ # memcached or redis.
7837
7851
  # @return [String]
7838
7852
  #
7839
7853
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
@@ -8629,9 +8643,9 @@ module Aws::ElastiCache
8629
8643
  # @return [Array<String>]
8630
8644
  #
8631
8645
  # @!attribute [rw] snapshot_retention_limit
8632
- # The current setting for the number of serverless cache snapshots the
8633
- # system will retain. Available for Valkey, Redis OSS and Serverless
8634
- # Memcached only.
8646
+ # The number of days for which ElastiCache retains automatic snapshots
8647
+ # before deleting them. Available for Valkey, Redis OSS and Serverless
8648
+ # Memcached only. The maximum value allowed is 35 days.
8635
8649
  # @return [Integer]
8636
8650
  #
8637
8651
  # @!attribute [rw] daily_snapshot_time
@@ -8641,6 +8655,14 @@ module Aws::ElastiCache
8641
8655
  # Memcached only.
8642
8656
  # @return [String]
8643
8657
  #
8658
+ # @!attribute [rw] network_type
8659
+ # The type of IP address protocol used by the serverless cache. Must
8660
+ # be either `ipv4` \| `ipv6` \| `dual_stack`. `ipv6` is only supported
8661
+ # with IPv6-only subnets. If not specified, defaults to `ipv4`, unless
8662
+ # all provided subnets are IPv6-only, in which case it defaults to
8663
+ # `ipv6`.
8664
+ # @return [String]
8665
+ #
8644
8666
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCache AWS API Documentation
8645
8667
  #
8646
8668
  class ServerlessCache < Struct.new(
@@ -8660,7 +8682,8 @@ module Aws::ElastiCache
8660
8682
  :user_group_id,
8661
8683
  :subnet_ids,
8662
8684
  :snapshot_retention_limit,
8663
- :daily_snapshot_time)
8685
+ :daily_snapshot_time,
8686
+ :network_type)
8664
8687
  SENSITIVE = []
8665
8688
  include Aws::Structure
8666
8689
  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.140.0'
58
+ GEM_VERSION = '1.141.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -415,7 +415,8 @@ module Aws
415
415
  ?user_group_id: ::String,
416
416
  ?subnet_ids: Array[::String],
417
417
  ?snapshot_retention_limit: ::Integer,
418
- ?daily_snapshot_time: ::String
418
+ ?daily_snapshot_time: ::String,
419
+ ?network_type: ("ipv4" | "ipv6" | "dual_stack")
419
420
  ) -> _CreateServerlessCacheResponseSuccess
420
421
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServerlessCacheResponseSuccess
421
422
 
data/sig/types.rbs CHANGED
@@ -494,6 +494,7 @@ module Aws::ElastiCache
494
494
  attr_accessor subnet_ids: ::Array[::String]
495
495
  attr_accessor snapshot_retention_limit: ::Integer
496
496
  attr_accessor daily_snapshot_time: ::String
497
+ attr_accessor network_type: ("ipv4" | "ipv6" | "dual_stack")
497
498
  SENSITIVE: []
498
499
  end
499
500
 
@@ -1673,6 +1674,7 @@ module Aws::ElastiCache
1673
1674
  attr_accessor subnet_ids: ::Array[::String]
1674
1675
  attr_accessor snapshot_retention_limit: ::Integer
1675
1676
  attr_accessor daily_snapshot_time: ::String
1677
+ attr_accessor network_type: ("ipv4" | "ipv6" | "dual_stack")
1676
1678
  SENSITIVE: []
1677
1679
  end
1678
1680
 
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.140.0
4
+ version: 1.141.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services