aws-sdk-elasticache 1.81.0 → 1.83.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,19 +18,6 @@ module Aws::ElastiCache
18
18
 
19
19
  # Represents the input of an AddTagsToResource operation.
20
20
  #
21
- # @note When making an API call, you may pass AddTagsToResourceMessage
22
- # data as a hash:
23
- #
24
- # {
25
- # resource_name: "String", # required
26
- # tags: [ # required
27
- # {
28
- # key: "String",
29
- # value: "String",
30
- # },
31
- # ],
32
- # }
33
- #
34
21
  # @!attribute [rw] resource_name
35
22
  # The Amazon Resource Name (ARN) of the resource to which the tags are
36
23
  # to be added, for example
@@ -109,6 +96,27 @@ module Aws::ElastiCache
109
96
  include Aws::Structure
110
97
  end
111
98
 
99
+ # Specifies the authentication mode to use.
100
+ #
101
+ # @!attribute [rw] type
102
+ # Specifies the authentication type. Possible options are IAM
103
+ # authentication, password and no password.
104
+ # @return [String]
105
+ #
106
+ # @!attribute [rw] passwords
107
+ # Specifies the passwords to use for authentication if `Type` is set
108
+ # to `password`.
109
+ # @return [Array<String>]
110
+ #
111
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthenticationMode AWS API Documentation
112
+ #
113
+ class AuthenticationMode < Struct.new(
114
+ :type,
115
+ :passwords)
116
+ SENSITIVE = []
117
+ include Aws::Structure
118
+ end
119
+
112
120
  # The specified Amazon EC2 security group is already authorized for the
113
121
  # specified cache security group.
114
122
  #
@@ -126,15 +134,6 @@ module Aws::ElastiCache
126
134
  # Represents the input of an AuthorizeCacheSecurityGroupIngress
127
135
  # operation.
128
136
  #
129
- # @note When making an API call, you may pass AuthorizeCacheSecurityGroupIngressMessage
130
- # data as a hash:
131
- #
132
- # {
133
- # cache_security_group_name: "String", # required
134
- # ec2_security_group_name: "String", # required
135
- # ec2_security_group_owner_id: "String", # required
136
- # }
137
- #
138
137
  # @!attribute [rw] cache_security_group_name
139
138
  # The cache security group that allows network ingress.
140
139
  # @return [String]
@@ -192,15 +191,6 @@ module Aws::ElastiCache
192
191
  include Aws::Structure
193
192
  end
194
193
 
195
- # @note When making an API call, you may pass BatchApplyUpdateActionMessage
196
- # data as a hash:
197
- #
198
- # {
199
- # replication_group_ids: ["String"],
200
- # cache_cluster_ids: ["String"],
201
- # service_update_name: "String", # required
202
- # }
203
- #
204
194
  # @!attribute [rw] replication_group_ids
205
195
  # The replication group IDs
206
196
  # @return [Array<String>]
@@ -223,15 +213,6 @@ module Aws::ElastiCache
223
213
  include Aws::Structure
224
214
  end
225
215
 
226
- # @note When making an API call, you may pass BatchStopUpdateActionMessage
227
- # data as a hash:
228
- #
229
- # {
230
- # replication_group_ids: ["String"],
231
- # cache_cluster_ids: ["String"],
232
- # service_update_name: "String", # required
233
- # }
234
- #
235
216
  # @!attribute [rw] replication_group_ids
236
217
  # The replication group IDs
237
218
  # @return [Array<String>]
@@ -523,11 +504,6 @@ module Aws::ElastiCache
523
504
  # @!attribute [rw] transit_encryption_enabled
524
505
  # A flag that enables in-transit encryption when set to `true`.
525
506
  #
526
- # You cannot modify the value of `TransitEncryptionEnabled` after the
527
- # cluster is created. To enable in-transit encryption on a cluster you
528
- # must set `TransitEncryptionEnabled` to `true` when you create a
529
- # cluster.
530
- #
531
507
  # **Required:** Only available when creating a replication group in an
532
508
  # Amazon VPC using redis version `3.2.6`, `4.x` or later.
533
509
  #
@@ -583,6 +559,11 @@ module Aws::ElastiCache
583
559
  # [1]: https://aws.amazon.com/ec2/nitro/
584
560
  # @return [String]
585
561
  #
562
+ # @!attribute [rw] transit_encryption_mode
563
+ # A setting that allows you to migrate your clients to use in-transit
564
+ # encryption, with no downtime.
565
+ # @return [String]
566
+ #
586
567
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
587
568
  #
588
569
  class CacheCluster < Struct.new(
@@ -617,7 +598,8 @@ module Aws::ElastiCache
617
598
  :replication_group_log_delivery_enabled,
618
599
  :log_delivery_configurations,
619
600
  :network_type,
620
- :ip_discovery)
601
+ :ip_discovery,
602
+ :transit_encryption_mode)
621
603
  SENSITIVE = []
622
604
  include Aws::Structure
623
605
  end
@@ -1371,13 +1353,6 @@ module Aws::ElastiCache
1371
1353
 
1372
1354
  # The configuration details of the CloudWatch Logs destination.
1373
1355
  #
1374
- # @note When making an API call, you may pass CloudWatchLogsDestinationDetails
1375
- # data as a hash:
1376
- #
1377
- # {
1378
- # log_group: "String",
1379
- # }
1380
- #
1381
1356
  # @!attribute [rw] log_group
1382
1357
  # The name of the CloudWatch Logs log group.
1383
1358
  # @return [String]
@@ -1397,14 +1372,6 @@ module Aws::ElastiCache
1397
1372
  #
1398
1373
  class ClusterQuotaForCustomerExceededFault < Aws::EmptyStructure; end
1399
1374
 
1400
- # @note When making an API call, you may pass CompleteMigrationMessage
1401
- # data as a hash:
1402
- #
1403
- # {
1404
- # replication_group_id: "String", # required
1405
- # force: false,
1406
- # }
1407
- #
1408
1375
  # @!attribute [rw] replication_group_id
1409
1376
  # The ID of the replication group to which data is being migrated.
1410
1377
  # @return [String]
@@ -1442,16 +1409,6 @@ module Aws::ElastiCache
1442
1409
  # replicas. Each node group (shard) configuration has the following
1443
1410
  # members: NodeGroupId, NewReplicaCount, and PreferredAvailabilityZones.
1444
1411
  #
1445
- # @note When making an API call, you may pass ConfigureShard
1446
- # data as a hash:
1447
- #
1448
- # {
1449
- # node_group_id: "AllowedNodeGroupId", # required
1450
- # new_replica_count: 1, # required
1451
- # preferred_availability_zones: ["String"],
1452
- # preferred_outpost_arns: ["String"],
1453
- # }
1454
- #
1455
1412
  # @!attribute [rw] node_group_id
1456
1413
  # The 4-digit id for the node group you are configuring. For Redis
1457
1414
  # (cluster mode disabled) replication groups, the node group id is
@@ -1507,22 +1464,6 @@ module Aws::ElastiCache
1507
1464
 
1508
1465
  # Represents the input of a `CopySnapshotMessage` operation.
1509
1466
  #
1510
- # @note When making an API call, you may pass CopySnapshotMessage
1511
- # data as a hash:
1512
- #
1513
- # {
1514
- # source_snapshot_name: "String", # required
1515
- # target_snapshot_name: "String", # required
1516
- # target_bucket: "String",
1517
- # kms_key_id: "String",
1518
- # tags: [
1519
- # {
1520
- # key: "String",
1521
- # value: "String",
1522
- # },
1523
- # ],
1524
- # }
1525
- #
1526
1467
  # @!attribute [rw] source_snapshot_name
1527
1468
  # The name of an existing snapshot from which to make a copy.
1528
1469
  # @return [String]
@@ -1589,62 +1530,6 @@ module Aws::ElastiCache
1589
1530
 
1590
1531
  # Represents the input of a CreateCacheCluster operation.
1591
1532
  #
1592
- # @note When making an API call, you may pass CreateCacheClusterMessage
1593
- # data as a hash:
1594
- #
1595
- # {
1596
- # cache_cluster_id: "String", # required
1597
- # replication_group_id: "String",
1598
- # az_mode: "single-az", # accepts single-az, cross-az
1599
- # preferred_availability_zone: "String",
1600
- # preferred_availability_zones: ["String"],
1601
- # num_cache_nodes: 1,
1602
- # cache_node_type: "String",
1603
- # engine: "String",
1604
- # engine_version: "String",
1605
- # cache_parameter_group_name: "String",
1606
- # cache_subnet_group_name: "String",
1607
- # cache_security_group_names: ["String"],
1608
- # security_group_ids: ["String"],
1609
- # tags: [
1610
- # {
1611
- # key: "String",
1612
- # value: "String",
1613
- # },
1614
- # ],
1615
- # snapshot_arns: ["String"],
1616
- # snapshot_name: "String",
1617
- # preferred_maintenance_window: "String",
1618
- # port: 1,
1619
- # notification_topic_arn: "String",
1620
- # auto_minor_version_upgrade: false,
1621
- # snapshot_retention_limit: 1,
1622
- # snapshot_window: "String",
1623
- # auth_token: "String",
1624
- # outpost_mode: "single-outpost", # accepts single-outpost, cross-outpost
1625
- # preferred_outpost_arn: "String",
1626
- # preferred_outpost_arns: ["String"],
1627
- # log_delivery_configurations: [
1628
- # {
1629
- # log_type: "slow-log", # accepts slow-log, engine-log
1630
- # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
1631
- # destination_details: {
1632
- # cloud_watch_logs_details: {
1633
- # log_group: "String",
1634
- # },
1635
- # kinesis_firehose_details: {
1636
- # delivery_stream: "String",
1637
- # },
1638
- # },
1639
- # log_format: "text", # accepts text, json
1640
- # enabled: false,
1641
- # },
1642
- # ],
1643
- # transit_encryption_enabled: false,
1644
- # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
1645
- # ip_discovery: "ipv4", # accepts ipv4, ipv6
1646
- # }
1647
- #
1648
1533
  # @!attribute [rw] cache_cluster_id
1649
1534
  # The node group (shard) identifier. This parameter is stored as a
1650
1535
  # lowercase string.
@@ -2030,11 +1915,7 @@ module Aws::ElastiCache
2030
1915
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
2031
1916
  #
2032
1917
  # @!attribute [rw] transit_encryption_enabled
2033
- # A flag that enables in-transit encryption when set to true. You
2034
- # cannot modify the value of TransitEncryptionEnabled after the
2035
- # cluster is created. To enable in-transit encryption on a cluster you
2036
- # must set `TransitEncryptionEnabled` to true when you create a
2037
- # cluster.
1918
+ # A flag that enables in-transit encryption when set to true.
2038
1919
  #
2039
1920
  # Only available when creating a cache cluster in an Amazon VPC using
2040
1921
  # Memcached version 1.6.12 or later.
@@ -2113,21 +1994,6 @@ module Aws::ElastiCache
2113
1994
 
2114
1995
  # Represents the input of a `CreateCacheParameterGroup` operation.
2115
1996
  #
2116
- # @note When making an API call, you may pass CreateCacheParameterGroupMessage
2117
- # data as a hash:
2118
- #
2119
- # {
2120
- # cache_parameter_group_name: "String", # required
2121
- # cache_parameter_group_family: "String", # required
2122
- # description: "String", # required
2123
- # tags: [
2124
- # {
2125
- # key: "String",
2126
- # value: "String",
2127
- # },
2128
- # ],
2129
- # }
2130
- #
2131
1997
  # @!attribute [rw] cache_parameter_group_name
2132
1998
  # A user-specified name for the cache parameter group.
2133
1999
  # @return [String]
@@ -2176,20 +2042,6 @@ module Aws::ElastiCache
2176
2042
 
2177
2043
  # Represents the input of a `CreateCacheSecurityGroup` operation.
2178
2044
  #
2179
- # @note When making an API call, you may pass CreateCacheSecurityGroupMessage
2180
- # data as a hash:
2181
- #
2182
- # {
2183
- # cache_security_group_name: "String", # required
2184
- # description: "String", # required
2185
- # tags: [
2186
- # {
2187
- # key: "String",
2188
- # value: "String",
2189
- # },
2190
- # ],
2191
- # }
2192
- #
2193
2045
  # @!attribute [rw] cache_security_group_name
2194
2046
  # A name for the cache security group. This value is stored as a
2195
2047
  # lowercase string.
@@ -2240,21 +2092,6 @@ module Aws::ElastiCache
2240
2092
 
2241
2093
  # Represents the input of a `CreateCacheSubnetGroup` operation.
2242
2094
  #
2243
- # @note When making an API call, you may pass CreateCacheSubnetGroupMessage
2244
- # data as a hash:
2245
- #
2246
- # {
2247
- # cache_subnet_group_name: "String", # required
2248
- # cache_subnet_group_description: "String", # required
2249
- # subnet_ids: ["String"], # required
2250
- # tags: [
2251
- # {
2252
- # key: "String",
2253
- # value: "String",
2254
- # },
2255
- # ],
2256
- # }
2257
- #
2258
2095
  # @!attribute [rw] cache_subnet_group_name
2259
2096
  # A name for the cache subnet group. This value is stored as a
2260
2097
  # lowercase string.
@@ -2306,15 +2143,6 @@ module Aws::ElastiCache
2306
2143
  include Aws::Structure
2307
2144
  end
2308
2145
 
2309
- # @note When making an API call, you may pass CreateGlobalReplicationGroupMessage
2310
- # data as a hash:
2311
- #
2312
- # {
2313
- # global_replication_group_id_suffix: "String", # required
2314
- # global_replication_group_description: "String",
2315
- # primary_replication_group_id: "String", # required
2316
- # }
2317
- #
2318
2146
  # @!attribute [rw] global_replication_group_id_suffix
2319
2147
  # The suffix name of a Global datastore. Amazon ElastiCache
2320
2148
  # automatically applies a prefix to the Global datastore ID when it is
@@ -2375,78 +2203,6 @@ module Aws::ElastiCache
2375
2203
 
2376
2204
  # Represents the input of a `CreateReplicationGroup` operation.
2377
2205
  #
2378
- # @note When making an API call, you may pass CreateReplicationGroupMessage
2379
- # data as a hash:
2380
- #
2381
- # {
2382
- # replication_group_id: "String", # required
2383
- # replication_group_description: "String", # required
2384
- # global_replication_group_id: "String",
2385
- # primary_cluster_id: "String",
2386
- # automatic_failover_enabled: false,
2387
- # multi_az_enabled: false,
2388
- # num_cache_clusters: 1,
2389
- # preferred_cache_cluster_a_zs: ["String"],
2390
- # num_node_groups: 1,
2391
- # replicas_per_node_group: 1,
2392
- # node_group_configuration: [
2393
- # {
2394
- # node_group_id: "AllowedNodeGroupId",
2395
- # slots: "String",
2396
- # replica_count: 1,
2397
- # primary_availability_zone: "String",
2398
- # replica_availability_zones: ["String"],
2399
- # primary_outpost_arn: "String",
2400
- # replica_outpost_arns: ["String"],
2401
- # },
2402
- # ],
2403
- # cache_node_type: "String",
2404
- # engine: "String",
2405
- # engine_version: "String",
2406
- # cache_parameter_group_name: "String",
2407
- # cache_subnet_group_name: "String",
2408
- # cache_security_group_names: ["String"],
2409
- # security_group_ids: ["String"],
2410
- # tags: [
2411
- # {
2412
- # key: "String",
2413
- # value: "String",
2414
- # },
2415
- # ],
2416
- # snapshot_arns: ["String"],
2417
- # snapshot_name: "String",
2418
- # preferred_maintenance_window: "String",
2419
- # port: 1,
2420
- # notification_topic_arn: "String",
2421
- # auto_minor_version_upgrade: false,
2422
- # snapshot_retention_limit: 1,
2423
- # snapshot_window: "String",
2424
- # auth_token: "String",
2425
- # transit_encryption_enabled: false,
2426
- # at_rest_encryption_enabled: false,
2427
- # kms_key_id: "String",
2428
- # user_group_ids: ["UserGroupId"],
2429
- # log_delivery_configurations: [
2430
- # {
2431
- # log_type: "slow-log", # accepts slow-log, engine-log
2432
- # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
2433
- # destination_details: {
2434
- # cloud_watch_logs_details: {
2435
- # log_group: "String",
2436
- # },
2437
- # kinesis_firehose_details: {
2438
- # delivery_stream: "String",
2439
- # },
2440
- # },
2441
- # log_format: "text", # accepts text, json
2442
- # enabled: false,
2443
- # },
2444
- # ],
2445
- # data_tiering_enabled: false,
2446
- # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
2447
- # ip_discovery: "ipv4", # accepts ipv4, ipv6
2448
- # }
2449
- #
2450
2206
  # @!attribute [rw] replication_group_id
2451
2207
  # The replication group identifier. This parameter is stored as a
2452
2208
  # lowercase string.
@@ -2678,7 +2434,7 @@ module Aws::ElastiCache
2678
2434
  #
2679
2435
  # @!attribute [rw] engine
2680
2436
  # The name of the cache engine to be used for the clusters in this
2681
- # replication group. Must be Redis.
2437
+ # replication group. The value must be set to `Redis`.
2682
2438
  # @return [String]
2683
2439
  #
2684
2440
  # @!attribute [rw] engine_version
@@ -2870,11 +2626,6 @@ module Aws::ElastiCache
2870
2626
  # @!attribute [rw] transit_encryption_enabled
2871
2627
  # A flag that enables in-transit encryption when set to `true`.
2872
2628
  #
2873
- # You cannot modify the value of `TransitEncryptionEnabled` after the
2874
- # cluster is created. To enable in-transit encryption on a cluster you
2875
- # must set `TransitEncryptionEnabled` to `true` when you create a
2876
- # cluster.
2877
- #
2878
2629
  # This parameter is valid only if the `Engine` parameter is `redis`,
2879
2630
  # the `EngineVersion` parameter is `3.2.6`, `4.x` or later, and the
2880
2631
  # cluster is being created in an Amazon VPC.
@@ -2949,6 +2700,23 @@ module Aws::ElastiCache
2949
2700
  # [1]: https://aws.amazon.com/ec2/nitro/
2950
2701
  # @return [String]
2951
2702
  #
2703
+ # @!attribute [rw] transit_encryption_mode
2704
+ # A setting that allows you to migrate your clients to use in-transit
2705
+ # encryption, with no downtime.
2706
+ #
2707
+ # When setting `TransitEncryptionEnabled` to `true`, you can set your
2708
+ # `TransitEncryptionMode` to `preferred` in the same request, to allow
2709
+ # both encrypted and unencrypted connections at the same time. Once
2710
+ # you migrate all your Redis clients to use encrypted connections you
2711
+ # can modify the value to `required` to allow encrypted connections
2712
+ # only.
2713
+ #
2714
+ # Setting `TransitEncryptionMode` to `required` is a two-step process
2715
+ # that requires you to first set the `TransitEncryptionMode` to
2716
+ # `preferred` first, after that you can set `TransitEncryptionMode` to
2717
+ # `required`.
2718
+ # @return [String]
2719
+ #
2952
2720
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
2953
2721
  #
2954
2722
  class CreateReplicationGroupMessage < Struct.new(
@@ -2987,7 +2755,8 @@ module Aws::ElastiCache
2987
2755
  :log_delivery_configurations,
2988
2756
  :data_tiering_enabled,
2989
2757
  :network_type,
2990
- :ip_discovery)
2758
+ :ip_discovery,
2759
+ :transit_encryption_mode)
2991
2760
  SENSITIVE = []
2992
2761
  include Aws::Structure
2993
2762
  end
@@ -3007,22 +2776,6 @@ module Aws::ElastiCache
3007
2776
 
3008
2777
  # Represents the input of a `CreateSnapshot` operation.
3009
2778
  #
3010
- # @note When making an API call, you may pass CreateSnapshotMessage
3011
- # data as a hash:
3012
- #
3013
- # {
3014
- # replication_group_id: "String",
3015
- # cache_cluster_id: "String",
3016
- # snapshot_name: "String", # required
3017
- # kms_key_id: "String",
3018
- # tags: [
3019
- # {
3020
- # key: "String",
3021
- # value: "String",
3022
- # },
3023
- # ],
3024
- # }
3025
- #
3026
2779
  # @!attribute [rw] replication_group_id
3027
2780
  # The identifier of an existing replication group. The snapshot is
3028
2781
  # created from this replication group.
@@ -3072,21 +2825,6 @@ module Aws::ElastiCache
3072
2825
  include Aws::Structure
3073
2826
  end
3074
2827
 
3075
- # @note When making an API call, you may pass CreateUserGroupMessage
3076
- # data as a hash:
3077
- #
3078
- # {
3079
- # user_group_id: "String", # required
3080
- # engine: "EngineType", # required
3081
- # user_ids: ["UserId"],
3082
- # tags: [
3083
- # {
3084
- # key: "String",
3085
- # value: "String",
3086
- # },
3087
- # ],
3088
- # }
3089
- #
3090
2828
  # @!attribute [rw] user_group_id
3091
2829
  # The ID of the user group.
3092
2830
  # @return [String]
@@ -3116,24 +2854,6 @@ module Aws::ElastiCache
3116
2854
  include Aws::Structure
3117
2855
  end
3118
2856
 
3119
- # @note When making an API call, you may pass CreateUserMessage
3120
- # data as a hash:
3121
- #
3122
- # {
3123
- # user_id: "UserId", # required
3124
- # user_name: "UserName", # required
3125
- # engine: "EngineType", # required
3126
- # passwords: ["String"],
3127
- # access_string: "AccessString", # required
3128
- # no_password_required: false,
3129
- # tags: [
3130
- # {
3131
- # key: "String",
3132
- # value: "String",
3133
- # },
3134
- # ],
3135
- # }
3136
- #
3137
2857
  # @!attribute [rw] user_id
3138
2858
  # The ID of the user.
3139
2859
  # @return [String]
@@ -3165,6 +2885,10 @@ module Aws::ElastiCache
3165
2885
  # accepted.
3166
2886
  # @return [Array<Types::Tag>]
3167
2887
  #
2888
+ # @!attribute [rw] authentication_mode
2889
+ # Specifies how to authenticate the user.
2890
+ # @return [Types::AuthenticationMode]
2891
+ #
3168
2892
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserMessage AWS API Documentation
3169
2893
  #
3170
2894
  class CreateUserMessage < Struct.new(
@@ -3174,21 +2898,14 @@ module Aws::ElastiCache
3174
2898
  :passwords,
3175
2899
  :access_string,
3176
2900
  :no_password_required,
3177
- :tags)
2901
+ :tags,
2902
+ :authentication_mode)
3178
2903
  SENSITIVE = []
3179
2904
  include Aws::Structure
3180
2905
  end
3181
2906
 
3182
2907
  # The endpoint from which data should be migrated.
3183
2908
  #
3184
- # @note When making an API call, you may pass CustomerNodeEndpoint
3185
- # data as a hash:
3186
- #
3187
- # {
3188
- # address: "String",
3189
- # port: 1,
3190
- # }
3191
- #
3192
2909
  # @!attribute [rw] address
3193
2910
  # The address of the node endpoint
3194
2911
  # @return [String]
@@ -3206,17 +2923,6 @@ module Aws::ElastiCache
3206
2923
  include Aws::Structure
3207
2924
  end
3208
2925
 
3209
- # @note When making an API call, you may pass DecreaseNodeGroupsInGlobalReplicationGroupMessage
3210
- # data as a hash:
3211
- #
3212
- # {
3213
- # global_replication_group_id: "String", # required
3214
- # node_group_count: 1, # required
3215
- # global_node_groups_to_remove: ["String"],
3216
- # global_node_groups_to_retain: ["String"],
3217
- # apply_immediately: false, # required
3218
- # }
3219
- #
3220
2926
  # @!attribute [rw] global_replication_group_id
3221
2927
  # The name of the Global datastore
3222
2928
  # @return [String]
@@ -3282,24 +2988,6 @@ module Aws::ElastiCache
3282
2988
  include Aws::Structure
3283
2989
  end
3284
2990
 
3285
- # @note When making an API call, you may pass DecreaseReplicaCountMessage
3286
- # data as a hash:
3287
- #
3288
- # {
3289
- # replication_group_id: "String", # required
3290
- # new_replica_count: 1,
3291
- # replica_configuration: [
3292
- # {
3293
- # node_group_id: "AllowedNodeGroupId", # required
3294
- # new_replica_count: 1, # required
3295
- # preferred_availability_zones: ["String"],
3296
- # preferred_outpost_arns: ["String"],
3297
- # },
3298
- # ],
3299
- # replicas_to_remove: ["String"],
3300
- # apply_immediately: false, # required
3301
- # }
3302
- #
3303
2991
  # @!attribute [rw] replication_group_id
3304
2992
  # The id of the replication group from which you want to remove
3305
2993
  # replica nodes.
@@ -3380,14 +3068,6 @@ module Aws::ElastiCache
3380
3068
 
3381
3069
  # Represents the input of a `DeleteCacheCluster` operation.
3382
3070
  #
3383
- # @note When making an API call, you may pass DeleteCacheClusterMessage
3384
- # data as a hash:
3385
- #
3386
- # {
3387
- # cache_cluster_id: "String", # required
3388
- # final_snapshot_identifier: "String",
3389
- # }
3390
- #
3391
3071
  # @!attribute [rw] cache_cluster_id
3392
3072
  # The cluster identifier for the cluster to be deleted. This parameter
3393
3073
  # is not case sensitive.
@@ -3422,13 +3102,6 @@ module Aws::ElastiCache
3422
3102
 
3423
3103
  # Represents the input of a `DeleteCacheParameterGroup` operation.
3424
3104
  #
3425
- # @note When making an API call, you may pass DeleteCacheParameterGroupMessage
3426
- # data as a hash:
3427
- #
3428
- # {
3429
- # cache_parameter_group_name: "String", # required
3430
- # }
3431
- #
3432
3105
  # @!attribute [rw] cache_parameter_group_name
3433
3106
  # The name of the cache parameter group to delete.
3434
3107
  #
@@ -3448,13 +3121,6 @@ module Aws::ElastiCache
3448
3121
 
3449
3122
  # Represents the input of a `DeleteCacheSecurityGroup` operation.
3450
3123
  #
3451
- # @note When making an API call, you may pass DeleteCacheSecurityGroupMessage
3452
- # data as a hash:
3453
- #
3454
- # {
3455
- # cache_security_group_name: "String", # required
3456
- # }
3457
- #
3458
3124
  # @!attribute [rw] cache_security_group_name
3459
3125
  # The name of the cache security group to delete.
3460
3126
  #
@@ -3473,13 +3139,6 @@ module Aws::ElastiCache
3473
3139
 
3474
3140
  # Represents the input of a `DeleteCacheSubnetGroup` operation.
3475
3141
  #
3476
- # @note When making an API call, you may pass DeleteCacheSubnetGroupMessage
3477
- # data as a hash:
3478
- #
3479
- # {
3480
- # cache_subnet_group_name: "String", # required
3481
- # }
3482
- #
3483
3142
  # @!attribute [rw] cache_subnet_group_name
3484
3143
  # The name of the cache subnet group to delete.
3485
3144
  #
@@ -3495,14 +3154,6 @@ module Aws::ElastiCache
3495
3154
  include Aws::Structure
3496
3155
  end
3497
3156
 
3498
- # @note When making an API call, you may pass DeleteGlobalReplicationGroupMessage
3499
- # data as a hash:
3500
- #
3501
- # {
3502
- # global_replication_group_id: "String", # required
3503
- # retain_primary_replication_group: false, # required
3504
- # }
3505
- #
3506
3157
  # @!attribute [rw] global_replication_group_id
3507
3158
  # The name of the Global datastore
3508
3159
  # @return [String]
@@ -3544,15 +3195,6 @@ module Aws::ElastiCache
3544
3195
 
3545
3196
  # Represents the input of a `DeleteReplicationGroup` operation.
3546
3197
  #
3547
- # @note When making an API call, you may pass DeleteReplicationGroupMessage
3548
- # data as a hash:
3549
- #
3550
- # {
3551
- # replication_group_id: "String", # required
3552
- # retain_primary_cluster: false,
3553
- # final_snapshot_identifier: "String",
3554
- # }
3555
- #
3556
3198
  # @!attribute [rw] replication_group_id
3557
3199
  # The identifier for the cluster to be deleted. This parameter is not
3558
3200
  # case sensitive.
@@ -3596,13 +3238,6 @@ module Aws::ElastiCache
3596
3238
 
3597
3239
  # Represents the input of a `DeleteSnapshot` operation.
3598
3240
  #
3599
- # @note When making an API call, you may pass DeleteSnapshotMessage
3600
- # data as a hash:
3601
- #
3602
- # {
3603
- # snapshot_name: "String", # required
3604
- # }
3605
- #
3606
3241
  # @!attribute [rw] snapshot_name
3607
3242
  # The name of the snapshot to be deleted.
3608
3243
  # @return [String]
@@ -3628,13 +3263,6 @@ module Aws::ElastiCache
3628
3263
  include Aws::Structure
3629
3264
  end
3630
3265
 
3631
- # @note When making an API call, you may pass DeleteUserGroupMessage
3632
- # data as a hash:
3633
- #
3634
- # {
3635
- # user_group_id: "String", # required
3636
- # }
3637
- #
3638
3266
  # @!attribute [rw] user_group_id
3639
3267
  # The ID of the user group.
3640
3268
  # @return [String]
@@ -3647,13 +3275,6 @@ module Aws::ElastiCache
3647
3275
  include Aws::Structure
3648
3276
  end
3649
3277
 
3650
- # @note When making an API call, you may pass DeleteUserMessage
3651
- # data as a hash:
3652
- #
3653
- # {
3654
- # user_id: "UserId", # required
3655
- # }
3656
- #
3657
3278
  # @!attribute [rw] user_id
3658
3279
  # The ID of the user.
3659
3280
  # @return [String]
@@ -3668,17 +3289,6 @@ module Aws::ElastiCache
3668
3289
 
3669
3290
  # Represents the input of a `DescribeCacheClusters` operation.
3670
3291
  #
3671
- # @note When making an API call, you may pass DescribeCacheClustersMessage
3672
- # data as a hash:
3673
- #
3674
- # {
3675
- # cache_cluster_id: "String",
3676
- # max_records: 1,
3677
- # marker: "String",
3678
- # show_cache_node_info: false,
3679
- # show_cache_clusters_not_in_replication_groups: false,
3680
- # }
3681
- #
3682
3292
  # @!attribute [rw] cache_cluster_id
3683
3293
  # The user-supplied cluster identifier. If this parameter is
3684
3294
  # specified, only information about that specific cluster is returned.
@@ -3729,18 +3339,6 @@ module Aws::ElastiCache
3729
3339
 
3730
3340
  # Represents the input of a `DescribeCacheEngineVersions` operation.
3731
3341
  #
3732
- # @note When making an API call, you may pass DescribeCacheEngineVersionsMessage
3733
- # data as a hash:
3734
- #
3735
- # {
3736
- # engine: "String",
3737
- # engine_version: "String",
3738
- # cache_parameter_group_family: "String",
3739
- # max_records: 1,
3740
- # marker: "String",
3741
- # default_only: false,
3742
- # }
3743
- #
3744
3342
  # @!attribute [rw] engine
3745
3343
  # The cache engine to return. Valid values: `memcached` \| `redis`
3746
3344
  # @return [String]
@@ -3757,7 +3355,7 @@ module Aws::ElastiCache
3757
3355
  #
3758
3356
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
3759
3357
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
3760
- # `redis5.0` \| `redis6.x` \| `redis6.2`
3358
+ # `redis5.0` \| `redis6.x` \| `redis6.2` \| `redis7`
3761
3359
  #
3762
3360
  # Constraints:
3763
3361
  #
@@ -3806,15 +3404,6 @@ module Aws::ElastiCache
3806
3404
 
3807
3405
  # Represents the input of a `DescribeCacheParameterGroups` operation.
3808
3406
  #
3809
- # @note When making an API call, you may pass DescribeCacheParameterGroupsMessage
3810
- # data as a hash:
3811
- #
3812
- # {
3813
- # cache_parameter_group_name: "String",
3814
- # max_records: 1,
3815
- # marker: "String",
3816
- # }
3817
- #
3818
3407
  # @!attribute [rw] cache_parameter_group_name
3819
3408
  # The name of a specific cache parameter group to return details for.
3820
3409
  # @return [String]
@@ -3849,16 +3438,6 @@ module Aws::ElastiCache
3849
3438
 
3850
3439
  # Represents the input of a `DescribeCacheParameters` operation.
3851
3440
  #
3852
- # @note When making an API call, you may pass DescribeCacheParametersMessage
3853
- # data as a hash:
3854
- #
3855
- # {
3856
- # cache_parameter_group_name: "String", # required
3857
- # source: "String",
3858
- # max_records: 1,
3859
- # marker: "String",
3860
- # }
3861
- #
3862
3441
  # @!attribute [rw] cache_parameter_group_name
3863
3442
  # The name of a specific cache parameter group to return details for.
3864
3443
  # @return [String]
@@ -3900,15 +3479,6 @@ module Aws::ElastiCache
3900
3479
 
3901
3480
  # Represents the input of a `DescribeCacheSecurityGroups` operation.
3902
3481
  #
3903
- # @note When making an API call, you may pass DescribeCacheSecurityGroupsMessage
3904
- # data as a hash:
3905
- #
3906
- # {
3907
- # cache_security_group_name: "String",
3908
- # max_records: 1,
3909
- # marker: "String",
3910
- # }
3911
- #
3912
3482
  # @!attribute [rw] cache_security_group_name
3913
3483
  # The name of the cache security group to return details for.
3914
3484
  # @return [String]
@@ -3943,15 +3513,6 @@ module Aws::ElastiCache
3943
3513
 
3944
3514
  # Represents the input of a `DescribeCacheSubnetGroups` operation.
3945
3515
  #
3946
- # @note When making an API call, you may pass DescribeCacheSubnetGroupsMessage
3947
- # data as a hash:
3948
- #
3949
- # {
3950
- # cache_subnet_group_name: "String",
3951
- # max_records: 1,
3952
- # marker: "String",
3953
- # }
3954
- #
3955
3516
  # @!attribute [rw] cache_subnet_group_name
3956
3517
  # The name of the cache subnet group to return details for.
3957
3518
  # @return [String]
@@ -3986,21 +3547,12 @@ module Aws::ElastiCache
3986
3547
 
3987
3548
  # Represents the input of a `DescribeEngineDefaultParameters` operation.
3988
3549
  #
3989
- # @note When making an API call, you may pass DescribeEngineDefaultParametersMessage
3990
- # data as a hash:
3991
- #
3992
- # {
3993
- # cache_parameter_group_family: "String", # required
3994
- # max_records: 1,
3995
- # marker: "String",
3996
- # }
3997
- #
3998
3550
  # @!attribute [rw] cache_parameter_group_family
3999
3551
  # The name of the cache parameter group family.
4000
3552
  #
4001
3553
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4002
3554
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
4003
- # `redis5.0` \| `redis6.x` \| `redis6.2`
3555
+ # `redis5.0` \| `redis6.x` \| `redis6.2` \| `redis7`
4004
3556
  # @return [String]
4005
3557
  #
4006
3558
  # @!attribute [rw] max_records
@@ -4046,19 +3598,6 @@ module Aws::ElastiCache
4046
3598
 
4047
3599
  # Represents the input of a `DescribeEvents` operation.
4048
3600
  #
4049
- # @note When making an API call, you may pass DescribeEventsMessage
4050
- # data as a hash:
4051
- #
4052
- # {
4053
- # source_identifier: "String",
4054
- # source_type: "cache-cluster", # accepts cache-cluster, cache-parameter-group, cache-security-group, cache-subnet-group, replication-group, user, user-group
4055
- # start_time: Time.now,
4056
- # end_time: Time.now,
4057
- # duration: 1,
4058
- # max_records: 1,
4059
- # marker: "String",
4060
- # }
4061
- #
4062
3601
  # @!attribute [rw] source_identifier
4063
3602
  # The identifier of the event source for which events are returned. If
4064
3603
  # not specified, all sources are included in the response.
@@ -4119,16 +3658,6 @@ module Aws::ElastiCache
4119
3658
  include Aws::Structure
4120
3659
  end
4121
3660
 
4122
- # @note When making an API call, you may pass DescribeGlobalReplicationGroupsMessage
4123
- # data as a hash:
4124
- #
4125
- # {
4126
- # global_replication_group_id: "String",
4127
- # max_records: 1,
4128
- # marker: "String",
4129
- # show_member_info: false,
4130
- # }
4131
- #
4132
3661
  # @!attribute [rw] global_replication_group_id
4133
3662
  # The name of the Global datastore
4134
3663
  # @return [String]
@@ -4185,15 +3714,6 @@ module Aws::ElastiCache
4185
3714
 
4186
3715
  # Represents the input of a `DescribeReplicationGroups` operation.
4187
3716
  #
4188
- # @note When making an API call, you may pass DescribeReplicationGroupsMessage
4189
- # data as a hash:
4190
- #
4191
- # {
4192
- # replication_group_id: "String",
4193
- # max_records: 1,
4194
- # marker: "String",
4195
- # }
4196
- #
4197
3717
  # @!attribute [rw] replication_group_id
4198
3718
  # The identifier for the replication group to be described. This
4199
3719
  # parameter is not case sensitive.
@@ -4232,20 +3752,6 @@ module Aws::ElastiCache
4232
3752
 
4233
3753
  # Represents the input of a `DescribeReservedCacheNodes` operation.
4234
3754
  #
4235
- # @note When making an API call, you may pass DescribeReservedCacheNodesMessage
4236
- # data as a hash:
4237
- #
4238
- # {
4239
- # reserved_cache_node_id: "String",
4240
- # reserved_cache_nodes_offering_id: "String",
4241
- # cache_node_type: "String",
4242
- # duration: "String",
4243
- # product_description: "String",
4244
- # offering_type: "String",
4245
- # max_records: 1,
4246
- # marker: "String",
4247
- # }
4248
- #
4249
3755
  # @!attribute [rw] reserved_cache_node_id
4250
3756
  # The reserved cache node identifier filter value. Use this parameter
4251
3757
  # to show only the reservation that matches the specified reservation
@@ -4426,19 +3932,6 @@ module Aws::ElastiCache
4426
3932
  # Represents the input of a `DescribeReservedCacheNodesOfferings`
4427
3933
  # operation.
4428
3934
  #
4429
- # @note When making an API call, you may pass DescribeReservedCacheNodesOfferingsMessage
4430
- # data as a hash:
4431
- #
4432
- # {
4433
- # reserved_cache_nodes_offering_id: "String",
4434
- # cache_node_type: "String",
4435
- # duration: "String",
4436
- # product_description: "String",
4437
- # offering_type: "String",
4438
- # max_records: 1,
4439
- # marker: "String",
4440
- # }
4441
- #
4442
3935
  # @!attribute [rw] reserved_cache_nodes_offering_id
4443
3936
  # The offering identifier filter value. Use this parameter to show
4444
3937
  # only the available offering that matches the specified reservation
@@ -4612,16 +4105,6 @@ module Aws::ElastiCache
4612
4105
  include Aws::Structure
4613
4106
  end
4614
4107
 
4615
- # @note When making an API call, you may pass DescribeServiceUpdatesMessage
4616
- # data as a hash:
4617
- #
4618
- # {
4619
- # service_update_name: "String",
4620
- # service_update_status: ["available"], # accepts available, cancelled, expired
4621
- # max_records: 1,
4622
- # marker: "String",
4623
- # }
4624
- #
4625
4108
  # @!attribute [rw] service_update_name
4626
4109
  # The unique ID of the service update
4627
4110
  # @return [String]
@@ -4677,19 +4160,6 @@ module Aws::ElastiCache
4677
4160
 
4678
4161
  # Represents the input of a `DescribeSnapshotsMessage` operation.
4679
4162
  #
4680
- # @note When making an API call, you may pass DescribeSnapshotsMessage
4681
- # data as a hash:
4682
- #
4683
- # {
4684
- # replication_group_id: "String",
4685
- # cache_cluster_id: "String",
4686
- # snapshot_name: "String",
4687
- # snapshot_source: "String",
4688
- # marker: "String",
4689
- # max_records: 1,
4690
- # show_node_group_config: false,
4691
- # }
4692
- #
4693
4163
  # @!attribute [rw] replication_group_id
4694
4164
  # A user-supplied replication group identifier. If this parameter is
4695
4165
  # specified, only snapshots associated with that specific replication
@@ -4750,25 +4220,6 @@ module Aws::ElastiCache
4750
4220
  include Aws::Structure
4751
4221
  end
4752
4222
 
4753
- # @note When making an API call, you may pass DescribeUpdateActionsMessage
4754
- # data as a hash:
4755
- #
4756
- # {
4757
- # service_update_name: "String",
4758
- # replication_group_ids: ["String"],
4759
- # cache_cluster_ids: ["String"],
4760
- # engine: "String",
4761
- # service_update_status: ["available"], # accepts available, cancelled, expired
4762
- # service_update_time_range: {
4763
- # start_time: Time.now,
4764
- # end_time: Time.now,
4765
- # },
4766
- # update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete, scheduling, scheduled, not-applicable
4767
- # show_node_level_update_status: false,
4768
- # max_records: 1,
4769
- # marker: "String",
4770
- # }
4771
- #
4772
4223
  # @!attribute [rw] service_update_name
4773
4224
  # The unique ID of the service update
4774
4225
  # @return [String]
@@ -4831,15 +4282,6 @@ module Aws::ElastiCache
4831
4282
  include Aws::Structure
4832
4283
  end
4833
4284
 
4834
- # @note When making an API call, you may pass DescribeUserGroupsMessage
4835
- # data as a hash:
4836
- #
4837
- # {
4838
- # user_group_id: "String",
4839
- # max_records: 1,
4840
- # marker: "String",
4841
- # }
4842
- #
4843
4285
  # @!attribute [rw] user_group_id
4844
4286
  # The ID of the user group.
4845
4287
  # @return [String]
@@ -4888,22 +4330,6 @@ module Aws::ElastiCache
4888
4330
  include Aws::Structure
4889
4331
  end
4890
4332
 
4891
- # @note When making an API call, you may pass DescribeUsersMessage
4892
- # data as a hash:
4893
- #
4894
- # {
4895
- # engine: "EngineType",
4896
- # user_id: "UserId",
4897
- # filters: [
4898
- # {
4899
- # name: "FilterName", # required
4900
- # values: ["FilterValue"], # required
4901
- # },
4902
- # ],
4903
- # max_records: 1,
4904
- # marker: "String",
4905
- # }
4906
- #
4907
4333
  # @!attribute [rw] engine
4908
4334
  # The Redis engine.
4909
4335
  # @return [String]
@@ -4965,18 +4391,6 @@ module Aws::ElastiCache
4965
4391
  # Configuration details of either a CloudWatch Logs destination or
4966
4392
  # Kinesis Data Firehose destination.
4967
4393
  #
4968
- # @note When making an API call, you may pass DestinationDetails
4969
- # data as a hash:
4970
- #
4971
- # {
4972
- # cloud_watch_logs_details: {
4973
- # log_group: "String",
4974
- # },
4975
- # kinesis_firehose_details: {
4976
- # delivery_stream: "String",
4977
- # },
4978
- # }
4979
- #
4980
4394
  # @!attribute [rw] cloud_watch_logs_details
4981
4395
  # The configuration details of the CloudWatch Logs destination.
4982
4396
  # @return [Types::CloudWatchLogsDestinationDetails]
@@ -4994,15 +4408,6 @@ module Aws::ElastiCache
4994
4408
  include Aws::Structure
4995
4409
  end
4996
4410
 
4997
- # @note When making an API call, you may pass DisassociateGlobalReplicationGroupMessage
4998
- # data as a hash:
4999
- #
5000
- # {
5001
- # global_replication_group_id: "String", # required
5002
- # replication_group_id: "String", # required
5003
- # replication_group_region: "String", # required
5004
- # }
5005
- #
5006
4411
  # @!attribute [rw] global_replication_group_id
5007
4412
  # The name of the Global datastore
5008
4413
  # @return [String]
@@ -5190,15 +4595,6 @@ module Aws::ElastiCache
5190
4595
  include Aws::Structure
5191
4596
  end
5192
4597
 
5193
- # @note When making an API call, you may pass FailoverGlobalReplicationGroupMessage
5194
- # data as a hash:
5195
- #
5196
- # {
5197
- # global_replication_group_id: "String", # required
5198
- # primary_region: "String", # required
5199
- # primary_replication_group_id: "String", # required
5200
- # }
5201
- #
5202
4598
  # @!attribute [rw] global_replication_group_id
5203
4599
  # The name of the Global datastore
5204
4600
  # @return [String]
@@ -5245,14 +4641,6 @@ module Aws::ElastiCache
5245
4641
  # Used to streamline results of a search based on the property being
5246
4642
  # filtered.
5247
4643
  #
5248
- # @note When making an API call, you may pass Filter
5249
- # data as a hash:
5250
- #
5251
- # {
5252
- # name: "FilterName", # required
5253
- # values: ["FilterValue"], # required
5254
- # }
5255
- #
5256
4644
  # @!attribute [rw] name
5257
4645
  # The property being filtered. For example, UserId.
5258
4646
  # @return [String]
@@ -5347,11 +4735,7 @@ module Aws::ElastiCache
5347
4735
  # @return [Boolean]
5348
4736
  #
5349
4737
  # @!attribute [rw] transit_encryption_enabled
5350
- # A flag that enables in-transit encryption when set to true. You
5351
- # cannot modify the value of `TransitEncryptionEnabled` after the
5352
- # cluster is created. To enable in-transit encryption on a cluster you
5353
- # must set `TransitEncryptionEnabled` to true when you create a
5354
- # cluster.
4738
+ # A flag that enables in-transit encryption when set to true.
5355
4739
  #
5356
4740
  # **Required:** Only available when creating a replication group in an
5357
4741
  # Amazon VPC using redis version `3.2.6`, `4.x` or later.
@@ -5462,27 +4846,6 @@ module Aws::ElastiCache
5462
4846
  #
5463
4847
  class GlobalReplicationGroupNotFoundFault < Aws::EmptyStructure; end
5464
4848
 
5465
- # @note When making an API call, you may pass IncreaseNodeGroupsInGlobalReplicationGroupMessage
5466
- # data as a hash:
5467
- #
5468
- # {
5469
- # global_replication_group_id: "String", # required
5470
- # node_group_count: 1, # required
5471
- # regional_configurations: [
5472
- # {
5473
- # replication_group_id: "String", # required
5474
- # replication_group_region: "String", # required
5475
- # resharding_configuration: [ # required
5476
- # {
5477
- # node_group_id: "AllowedNodeGroupId",
5478
- # preferred_availability_zones: ["String"],
5479
- # },
5480
- # ],
5481
- # },
5482
- # ],
5483
- # apply_immediately: false, # required
5484
- # }
5485
- #
5486
4849
  # @!attribute [rw] global_replication_group_id
5487
4850
  # The name of the Global datastore
5488
4851
  # @return [String]
@@ -5534,23 +4897,6 @@ module Aws::ElastiCache
5534
4897
  include Aws::Structure
5535
4898
  end
5536
4899
 
5537
- # @note When making an API call, you may pass IncreaseReplicaCountMessage
5538
- # data as a hash:
5539
- #
5540
- # {
5541
- # replication_group_id: "String", # required
5542
- # new_replica_count: 1,
5543
- # replica_configuration: [
5544
- # {
5545
- # node_group_id: "AllowedNodeGroupId", # required
5546
- # new_replica_count: 1, # required
5547
- # preferred_availability_zones: ["String"],
5548
- # preferred_outpost_arns: ["String"],
5549
- # },
5550
- # ],
5551
- # apply_immediately: false, # required
5552
- # }
5553
- #
5554
4900
  # @!attribute [rw] replication_group_id
5555
4901
  # The id of the replication group to which you want to add replica
5556
4902
  # nodes.
@@ -5718,13 +5064,6 @@ module Aws::ElastiCache
5718
5064
 
5719
5065
  # The configuration details of the Kinesis Data Firehose destination.
5720
5066
  #
5721
- # @note When making an API call, you may pass KinesisFirehoseDestinationDetails
5722
- # data as a hash:
5723
- #
5724
- # {
5725
- # delivery_stream: "String",
5726
- # }
5727
- #
5728
5067
  # @!attribute [rw] delivery_stream
5729
5068
  # The name of the Kinesis Data Firehose delivery stream.
5730
5069
  # @return [String]
@@ -5740,14 +5079,6 @@ module Aws::ElastiCache
5740
5079
  # The input parameters for the `ListAllowedNodeTypeModifications`
5741
5080
  # operation.
5742
5081
  #
5743
- # @note When making an API call, you may pass ListAllowedNodeTypeModificationsMessage
5744
- # data as a hash:
5745
- #
5746
- # {
5747
- # cache_cluster_id: "String",
5748
- # replication_group_id: "String",
5749
- # }
5750
- #
5751
5082
  # @!attribute [rw] cache_cluster_id
5752
5083
  # The name of the cluster you want to scale up to a larger node
5753
5084
  # instanced type. ElastiCache uses the cluster id to identify the
@@ -5779,13 +5110,6 @@ module Aws::ElastiCache
5779
5110
 
5780
5111
  # The input parameters for the `ListTagsForResource` operation.
5781
5112
  #
5782
- # @note When making an API call, you may pass ListTagsForResourceMessage
5783
- # data as a hash:
5784
- #
5785
- # {
5786
- # resource_name: "String", # required
5787
- # }
5788
- #
5789
5113
  # @!attribute [rw] resource_name
5790
5114
  # The Amazon Resource Name (ARN) of the resource for which you want
5791
5115
  # the list of tags, for example
@@ -5856,24 +5180,6 @@ module Aws::ElastiCache
5856
5180
 
5857
5181
  # Specifies the destination, format and type of the logs.
5858
5182
  #
5859
- # @note When making an API call, you may pass LogDeliveryConfigurationRequest
5860
- # data as a hash:
5861
- #
5862
- # {
5863
- # log_type: "slow-log", # accepts slow-log, engine-log
5864
- # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
5865
- # destination_details: {
5866
- # cloud_watch_logs_details: {
5867
- # log_group: "String",
5868
- # },
5869
- # kinesis_firehose_details: {
5870
- # delivery_stream: "String",
5871
- # },
5872
- # },
5873
- # log_format: "text", # accepts text, json
5874
- # enabled: false,
5875
- # }
5876
- #
5877
5183
  # @!attribute [rw] log_type
5878
5184
  # Refers to [slow-log][1] or engine-log..
5879
5185
  #
@@ -5914,48 +5220,6 @@ module Aws::ElastiCache
5914
5220
 
5915
5221
  # Represents the input of a `ModifyCacheCluster` operation.
5916
5222
  #
5917
- # @note When making an API call, you may pass ModifyCacheClusterMessage
5918
- # data as a hash:
5919
- #
5920
- # {
5921
- # cache_cluster_id: "String", # required
5922
- # num_cache_nodes: 1,
5923
- # cache_node_ids_to_remove: ["String"],
5924
- # az_mode: "single-az", # accepts single-az, cross-az
5925
- # new_availability_zones: ["String"],
5926
- # cache_security_group_names: ["String"],
5927
- # security_group_ids: ["String"],
5928
- # preferred_maintenance_window: "String",
5929
- # notification_topic_arn: "String",
5930
- # cache_parameter_group_name: "String",
5931
- # notification_topic_status: "String",
5932
- # apply_immediately: false,
5933
- # engine_version: "String",
5934
- # auto_minor_version_upgrade: false,
5935
- # snapshot_retention_limit: 1,
5936
- # snapshot_window: "String",
5937
- # cache_node_type: "String",
5938
- # auth_token: "String",
5939
- # auth_token_update_strategy: "SET", # accepts SET, ROTATE, DELETE
5940
- # log_delivery_configurations: [
5941
- # {
5942
- # log_type: "slow-log", # accepts slow-log, engine-log
5943
- # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
5944
- # destination_details: {
5945
- # cloud_watch_logs_details: {
5946
- # log_group: "String",
5947
- # },
5948
- # kinesis_firehose_details: {
5949
- # delivery_stream: "String",
5950
- # },
5951
- # },
5952
- # log_format: "text", # accepts text, json
5953
- # enabled: false,
5954
- # },
5955
- # ],
5956
- # ip_discovery: "ipv4", # accepts ipv4, ipv6
5957
- # }
5958
- #
5959
5223
  # @!attribute [rw] cache_cluster_id
5960
5224
  # The cluster identifier. This value is stored as a lowercase string.
5961
5225
  # @return [String]
@@ -6342,19 +5606,6 @@ module Aws::ElastiCache
6342
5606
 
6343
5607
  # Represents the input of a `ModifyCacheParameterGroup` operation.
6344
5608
  #
6345
- # @note When making an API call, you may pass ModifyCacheParameterGroupMessage
6346
- # data as a hash:
6347
- #
6348
- # {
6349
- # cache_parameter_group_name: "String", # required
6350
- # parameter_name_values: [ # required
6351
- # {
6352
- # parameter_name: "String",
6353
- # parameter_value: "String",
6354
- # },
6355
- # ],
6356
- # }
6357
- #
6358
5609
  # @!attribute [rw] cache_parameter_group_name
6359
5610
  # The name of the cache parameter group to modify.
6360
5611
  # @return [String]
@@ -6377,15 +5628,6 @@ module Aws::ElastiCache
6377
5628
 
6378
5629
  # Represents the input of a `ModifyCacheSubnetGroup` operation.
6379
5630
  #
6380
- # @note When making an API call, you may pass ModifyCacheSubnetGroupMessage
6381
- # data as a hash:
6382
- #
6383
- # {
6384
- # cache_subnet_group_name: "String", # required
6385
- # cache_subnet_group_description: "String",
6386
- # subnet_ids: ["String"],
6387
- # }
6388
- #
6389
5631
  # @!attribute [rw] cache_subnet_group_name
6390
5632
  # The name for the cache subnet group. This value is stored as a
6391
5633
  # lowercase string.
@@ -6430,19 +5672,6 @@ module Aws::ElastiCache
6430
5672
  include Aws::Structure
6431
5673
  end
6432
5674
 
6433
- # @note When making an API call, you may pass ModifyGlobalReplicationGroupMessage
6434
- # data as a hash:
6435
- #
6436
- # {
6437
- # global_replication_group_id: "String", # required
6438
- # apply_immediately: false, # required
6439
- # cache_node_type: "String",
6440
- # engine_version: "String",
6441
- # cache_parameter_group_name: "String",
6442
- # global_replication_group_description: "String",
6443
- # automatic_failover_enabled: false,
6444
- # }
6445
- #
6446
5675
  # @!attribute [rw] global_replication_group_id
6447
5676
  # The name of the Global datastore
6448
5677
  # @return [String]
@@ -6516,53 +5745,6 @@ module Aws::ElastiCache
6516
5745
 
6517
5746
  # Represents the input of a `ModifyReplicationGroups` operation.
6518
5747
  #
6519
- # @note When making an API call, you may pass ModifyReplicationGroupMessage
6520
- # data as a hash:
6521
- #
6522
- # {
6523
- # replication_group_id: "String", # required
6524
- # replication_group_description: "String",
6525
- # primary_cluster_id: "String",
6526
- # snapshotting_cluster_id: "String",
6527
- # automatic_failover_enabled: false,
6528
- # multi_az_enabled: false,
6529
- # node_group_id: "String",
6530
- # cache_security_group_names: ["String"],
6531
- # security_group_ids: ["String"],
6532
- # preferred_maintenance_window: "String",
6533
- # notification_topic_arn: "String",
6534
- # cache_parameter_group_name: "String",
6535
- # notification_topic_status: "String",
6536
- # apply_immediately: false,
6537
- # engine_version: "String",
6538
- # auto_minor_version_upgrade: false,
6539
- # snapshot_retention_limit: 1,
6540
- # snapshot_window: "String",
6541
- # cache_node_type: "String",
6542
- # auth_token: "String",
6543
- # auth_token_update_strategy: "SET", # accepts SET, ROTATE, DELETE
6544
- # user_group_ids_to_add: ["UserGroupId"],
6545
- # user_group_ids_to_remove: ["UserGroupId"],
6546
- # remove_user_groups: false,
6547
- # log_delivery_configurations: [
6548
- # {
6549
- # log_type: "slow-log", # accepts slow-log, engine-log
6550
- # destination_type: "cloudwatch-logs", # accepts cloudwatch-logs, kinesis-firehose
6551
- # destination_details: {
6552
- # cloud_watch_logs_details: {
6553
- # log_group: "String",
6554
- # },
6555
- # kinesis_firehose_details: {
6556
- # delivery_stream: "String",
6557
- # },
6558
- # },
6559
- # log_format: "text", # accepts text, json
6560
- # enabled: false,
6561
- # },
6562
- # ],
6563
- # ip_discovery: "ipv4", # accepts ipv4, ipv6
6564
- # }
6565
- #
6566
5748
  # @!attribute [rw] replication_group_id
6567
5749
  # The identifier of the replication group to modify.
6568
5750
  # @return [String]
@@ -6800,6 +5982,29 @@ module Aws::ElastiCache
6800
5982
  # [1]: https://aws.amazon.com/ec2/nitro/
6801
5983
  # @return [String]
6802
5984
  #
5985
+ # @!attribute [rw] transit_encryption_enabled
5986
+ # A flag that enables in-transit encryption when set to true. If you
5987
+ # are enabling in-transit encryption for an existing cluster, you must
5988
+ # also set `TransitEncryptionMode` to `preferred`.
5989
+ # @return [Boolean]
5990
+ #
5991
+ # @!attribute [rw] transit_encryption_mode
5992
+ # A setting that allows you to migrate your clients to use in-transit
5993
+ # encryption, with no downtime.
5994
+ #
5995
+ # You must set `TransitEncryptionEnabled` to `true`, for your existing
5996
+ # cluster, and set `TransitEncryptionMode` to `preferred` in the same
5997
+ # request to allow both encrypted and unencrypted connections at the
5998
+ # same time. Once you migrate all your Redis clients to use encrypted
5999
+ # connections you can set the value to `required` to allow encrypted
6000
+ # connections only.
6001
+ #
6002
+ # Setting `TransitEncryptionMode` to `required` is a two-step process
6003
+ # that requires you to first set the `TransitEncryptionMode` to
6004
+ # `preferred` first, after that you can set `TransitEncryptionMode` to
6005
+ # `required`.
6006
+ # @return [String]
6007
+ #
6803
6008
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
6804
6009
  #
6805
6010
  class ModifyReplicationGroupMessage < Struct.new(
@@ -6828,7 +6033,9 @@ module Aws::ElastiCache
6828
6033
  :user_group_ids_to_remove,
6829
6034
  :remove_user_groups,
6830
6035
  :log_delivery_configurations,
6831
- :ip_discovery)
6036
+ :ip_discovery,
6037
+ :transit_encryption_enabled,
6038
+ :transit_encryption_mode)
6832
6039
  SENSITIVE = []
6833
6040
  include Aws::Structure
6834
6041
  end
@@ -6849,23 +6056,6 @@ module Aws::ElastiCache
6849
6056
  # Represents the input for a `ModifyReplicationGroupShardConfiguration`
6850
6057
  # operation.
6851
6058
  #
6852
- # @note When making an API call, you may pass ModifyReplicationGroupShardConfigurationMessage
6853
- # data as a hash:
6854
- #
6855
- # {
6856
- # replication_group_id: "String", # required
6857
- # node_group_count: 1, # required
6858
- # apply_immediately: false, # required
6859
- # resharding_configuration: [
6860
- # {
6861
- # node_group_id: "AllowedNodeGroupId",
6862
- # preferred_availability_zones: ["String"],
6863
- # },
6864
- # ],
6865
- # node_groups_to_remove: ["AllowedNodeGroupId"],
6866
- # node_groups_to_retain: ["AllowedNodeGroupId"],
6867
- # }
6868
- #
6869
6059
  # @!attribute [rw] replication_group_id
6870
6060
  # The name of the Redis (cluster mode enabled) cluster (replication
6871
6061
  # group) on which the shards are to be configured.
@@ -6941,15 +6131,6 @@ module Aws::ElastiCache
6941
6131
  include Aws::Structure
6942
6132
  end
6943
6133
 
6944
- # @note When making an API call, you may pass ModifyUserGroupMessage
6945
- # data as a hash:
6946
- #
6947
- # {
6948
- # user_group_id: "String", # required
6949
- # user_ids_to_add: ["UserId"],
6950
- # user_ids_to_remove: ["UserId"],
6951
- # }
6952
- #
6953
6134
  # @!attribute [rw] user_group_id
6954
6135
  # The ID of the user group.
6955
6136
  # @return [String]
@@ -6972,17 +6153,6 @@ module Aws::ElastiCache
6972
6153
  include Aws::Structure
6973
6154
  end
6974
6155
 
6975
- # @note When making an API call, you may pass ModifyUserMessage
6976
- # data as a hash:
6977
- #
6978
- # {
6979
- # user_id: "UserId", # required
6980
- # access_string: "AccessString",
6981
- # append_access_string: "AccessString",
6982
- # passwords: ["String"],
6983
- # no_password_required: false,
6984
- # }
6985
- #
6986
6156
  # @!attribute [rw] user_id
6987
6157
  # The ID of the user.
6988
6158
  # @return [String]
@@ -7003,6 +6173,10 @@ module Aws::ElastiCache
7003
6173
  # Indicates no password is required for the user.
7004
6174
  # @return [Boolean]
7005
6175
  #
6176
+ # @!attribute [rw] authentication_mode
6177
+ # Specifies how to authenticate the user.
6178
+ # @return [Types::AuthenticationMode]
6179
+ #
7006
6180
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyUserMessage AWS API Documentation
7007
6181
  #
7008
6182
  class ModifyUserMessage < Struct.new(
@@ -7010,7 +6184,8 @@ module Aws::ElastiCache
7010
6184
  :access_string,
7011
6185
  :append_access_string,
7012
6186
  :passwords,
7013
- :no_password_required)
6187
+ :no_password_required,
6188
+ :authentication_mode)
7014
6189
  SENSITIVE = []
7015
6190
  include Aws::Structure
7016
6191
  end
@@ -7072,19 +6247,6 @@ module Aws::ElastiCache
7072
6247
  # configuration has the following: `Slots`, `PrimaryAvailabilityZone`,
7073
6248
  # `ReplicaAvailabilityZones`, `ReplicaCount`.
7074
6249
  #
7075
- # @note When making an API call, you may pass NodeGroupConfiguration
7076
- # data as a hash:
7077
- #
7078
- # {
7079
- # node_group_id: "AllowedNodeGroupId",
7080
- # slots: "String",
7081
- # replica_count: 1,
7082
- # primary_availability_zone: "String",
7083
- # replica_availability_zones: ["String"],
7084
- # primary_outpost_arn: "String",
7085
- # replica_outpost_arns: ["String"],
7086
- # }
7087
- #
7088
6250
  # @!attribute [rw] node_group_id
7089
6251
  # Either the ElastiCache for Redis supplied 4-digit id or a user
7090
6252
  # supplied id for the node group these configuration values apply to.
@@ -7417,14 +6579,6 @@ module Aws::ElastiCache
7417
6579
  # Describes a name-value pair that is used to update the value of a
7418
6580
  # parameter.
7419
6581
  #
7420
- # @note When making an API call, you may pass ParameterNameValue
7421
- # data as a hash:
7422
- #
7423
- # {
7424
- # parameter_name: "String",
7425
- # parameter_value: "String",
7426
- # }
7427
- #
7428
6582
  # @!attribute [rw] parameter_name
7429
6583
  # The name of the parameter.
7430
6584
  # @return [String]
@@ -7510,6 +6664,15 @@ module Aws::ElastiCache
7510
6664
  # The log delivery configurations being modified
7511
6665
  # @return [Array<Types::PendingLogDeliveryConfiguration>]
7512
6666
  #
6667
+ # @!attribute [rw] transit_encryption_enabled
6668
+ # A flag that enables in-transit encryption when set to true.
6669
+ # @return [Boolean]
6670
+ #
6671
+ # @!attribute [rw] transit_encryption_mode
6672
+ # A setting that allows you to migrate your clients to use in-transit
6673
+ # encryption, with no downtime.
6674
+ # @return [String]
6675
+ #
7513
6676
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/PendingModifiedValues AWS API Documentation
7514
6677
  #
7515
6678
  class PendingModifiedValues < Struct.new(
@@ -7518,7 +6681,9 @@ module Aws::ElastiCache
7518
6681
  :engine_version,
7519
6682
  :cache_node_type,
7520
6683
  :auth_token_status,
7521
- :log_delivery_configurations)
6684
+ :log_delivery_configurations,
6685
+ :transit_encryption_enabled,
6686
+ :transit_encryption_mode)
7522
6687
  SENSITIVE = []
7523
6688
  include Aws::Structure
7524
6689
  end
@@ -7556,21 +6721,6 @@ module Aws::ElastiCache
7556
6721
  # Represents the input of a `PurchaseReservedCacheNodesOffering`
7557
6722
  # operation.
7558
6723
  #
7559
- # @note When making an API call, you may pass PurchaseReservedCacheNodesOfferingMessage
7560
- # data as a hash:
7561
- #
7562
- # {
7563
- # reserved_cache_nodes_offering_id: "String", # required
7564
- # reserved_cache_node_id: "String",
7565
- # cache_node_count: 1,
7566
- # tags: [
7567
- # {
7568
- # key: "String",
7569
- # value: "String",
7570
- # },
7571
- # ],
7572
- # }
7573
- #
7574
6724
  # @!attribute [rw] reserved_cache_nodes_offering_id
7575
6725
  # The ID of the reserved cache node offering to purchase.
7576
6726
  #
@@ -7626,14 +6776,6 @@ module Aws::ElastiCache
7626
6776
  include Aws::Structure
7627
6777
  end
7628
6778
 
7629
- # @note When making an API call, you may pass RebalanceSlotsInGlobalReplicationGroupMessage
7630
- # data as a hash:
7631
- #
7632
- # {
7633
- # global_replication_group_id: "String", # required
7634
- # apply_immediately: false, # required
7635
- # }
7636
- #
7637
6779
  # @!attribute [rw] global_replication_group_id
7638
6780
  # The name of the Global datastore
7639
6781
  # @return [String]
@@ -7674,14 +6816,6 @@ module Aws::ElastiCache
7674
6816
 
7675
6817
  # Represents the input of a `RebootCacheCluster` operation.
7676
6818
  #
7677
- # @note When making an API call, you may pass RebootCacheClusterMessage
7678
- # data as a hash:
7679
- #
7680
- # {
7681
- # cache_cluster_id: "String", # required
7682
- # cache_node_ids_to_reboot: ["String"], # required
7683
- # }
7684
- #
7685
6819
  # @!attribute [rw] cache_cluster_id
7686
6820
  # The cluster identifier. This parameter is stored as a lowercase
7687
6821
  # string.
@@ -7736,20 +6870,6 @@ module Aws::ElastiCache
7736
6870
 
7737
6871
  # A list of the replication groups
7738
6872
  #
7739
- # @note When making an API call, you may pass RegionalConfiguration
7740
- # data as a hash:
7741
- #
7742
- # {
7743
- # replication_group_id: "String", # required
7744
- # replication_group_region: "String", # required
7745
- # resharding_configuration: [ # required
7746
- # {
7747
- # node_group_id: "AllowedNodeGroupId",
7748
- # preferred_availability_zones: ["String"],
7749
- # },
7750
- # ],
7751
- # }
7752
- #
7753
6873
  # @!attribute [rw] replication_group_id
7754
6874
  # The name of the secondary cluster
7755
6875
  # @return [String]
@@ -7775,14 +6895,6 @@ module Aws::ElastiCache
7775
6895
 
7776
6896
  # Represents the input of a `RemoveTagsFromResource` operation.
7777
6897
  #
7778
- # @note When making an API call, you may pass RemoveTagsFromResourceMessage
7779
- # data as a hash:
7780
- #
7781
- # {
7782
- # resource_name: "String", # required
7783
- # tag_keys: ["String"], # required
7784
- # }
7785
- #
7786
6898
  # @!attribute [rw] resource_name
7787
6899
  # The Amazon Resource Name (ARN) of the resource from which you want
7788
6900
  # the tags removed, for example
@@ -7925,11 +7037,6 @@ module Aws::ElastiCache
7925
7037
  # @!attribute [rw] transit_encryption_enabled
7926
7038
  # A flag that enables in-transit encryption when set to `true`.
7927
7039
  #
7928
- # You cannot modify the value of `TransitEncryptionEnabled` after the
7929
- # cluster is created. To enable in-transit encryption on a cluster you
7930
- # must set `TransitEncryptionEnabled` to `true` when you create a
7931
- # cluster.
7932
- #
7933
7040
  # **Required:** Only available when creating a replication group in an
7934
7041
  # Amazon VPC using redis version `3.2.6`, `4.x` or later.
7935
7042
  #
@@ -7985,10 +7092,10 @@ module Aws::ElastiCache
7985
7092
  # @return [String]
7986
7093
  #
7987
7094
  # @!attribute [rw] auto_minor_version_upgrade
7988
- # If you are running Redis engine version 6.0 or later, set this
7095
+ #  If you are running Redis engine version 6.0 or later, set this
7989
7096
  # parameter to yes if you want to opt-in to the next auto minor
7990
7097
  # version upgrade campaign. This parameter is disabled for previous
7991
- # versions.
7098
+ # versions. 
7992
7099
  # @return [Boolean]
7993
7100
  #
7994
7101
  # @!attribute [rw] network_type
@@ -8013,6 +7120,11 @@ module Aws::ElastiCache
8013
7120
  # [1]: https://aws.amazon.com/ec2/nitro/
8014
7121
  # @return [String]
8015
7122
  #
7123
+ # @!attribute [rw] transit_encryption_mode
7124
+ # A setting that allows you to migrate your clients to use in-transit
7125
+ # encryption, with no downtime.
7126
+ # @return [String]
7127
+ #
8016
7128
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
8017
7129
  #
8018
7130
  class ReplicationGroup < Struct.new(
@@ -8044,7 +7156,8 @@ module Aws::ElastiCache
8044
7156
  :data_tiering,
8045
7157
  :auto_minor_version_upgrade,
8046
7158
  :network_type,
8047
- :ip_discovery)
7159
+ :ip_discovery,
7160
+ :transit_encryption_mode)
8048
7161
  SENSITIVE = []
8049
7162
  include Aws::Structure
8050
7163
  end
@@ -8123,6 +7236,15 @@ module Aws::ElastiCache
8123
7236
  # The log delivery configurations being modified
8124
7237
  # @return [Array<Types::PendingLogDeliveryConfiguration>]
8125
7238
  #
7239
+ # @!attribute [rw] transit_encryption_enabled
7240
+ # A flag that enables in-transit encryption when set to true.
7241
+ # @return [Boolean]
7242
+ #
7243
+ # @!attribute [rw] transit_encryption_mode
7244
+ # A setting that allows you to migrate your clients to use in-transit
7245
+ # encryption, with no downtime.
7246
+ # @return [String]
7247
+ #
8126
7248
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroupPendingModifiedValues AWS API Documentation
8127
7249
  #
8128
7250
  class ReplicationGroupPendingModifiedValues < Struct.new(
@@ -8131,7 +7253,9 @@ module Aws::ElastiCache
8131
7253
  :resharding,
8132
7254
  :auth_token_status,
8133
7255
  :user_groups,
8134
- :log_delivery_configurations)
7256
+ :log_delivery_configurations,
7257
+ :transit_encryption_enabled,
7258
+ :transit_encryption_mode)
8135
7259
  SENSITIVE = []
8136
7260
  include Aws::Structure
8137
7261
  end
@@ -8545,20 +7669,6 @@ module Aws::ElastiCache
8545
7669
 
8546
7670
  # Represents the input of a `ResetCacheParameterGroup` operation.
8547
7671
  #
8548
- # @note When making an API call, you may pass ResetCacheParameterGroupMessage
8549
- # data as a hash:
8550
- #
8551
- # {
8552
- # cache_parameter_group_name: "String", # required
8553
- # reset_all_parameters: false,
8554
- # parameter_name_values: [
8555
- # {
8556
- # parameter_name: "String",
8557
- # parameter_value: "String",
8558
- # },
8559
- # ],
8560
- # }
8561
- #
8562
7672
  # @!attribute [rw] cache_parameter_group_name
8563
7673
  # The name of the cache parameter group to reset.
8564
7674
  # @return [String]
@@ -8591,14 +7701,6 @@ module Aws::ElastiCache
8591
7701
  # A list of `PreferredAvailabilityZones` objects that specifies the
8592
7702
  # configuration of a node group in the resharded cluster.
8593
7703
  #
8594
- # @note When making an API call, you may pass ReshardingConfiguration
8595
- # data as a hash:
8596
- #
8597
- # {
8598
- # node_group_id: "AllowedNodeGroupId",
8599
- # preferred_availability_zones: ["String"],
8600
- # }
8601
- #
8602
7704
  # @!attribute [rw] node_group_id
8603
7705
  # Either the ElastiCache for Redis supplied 4-digit id or a user
8604
7706
  # supplied id for the node group these configuration values apply to.
@@ -8634,15 +7736,6 @@ module Aws::ElastiCache
8634
7736
 
8635
7737
  # Represents the input of a `RevokeCacheSecurityGroupIngress` operation.
8636
7738
  #
8637
- # @note When making an API call, you may pass RevokeCacheSecurityGroupIngressMessage
8638
- # data as a hash:
8639
- #
8640
- # {
8641
- # cache_security_group_name: "String", # required
8642
- # ec2_security_group_name: "String", # required
8643
- # ec2_security_group_owner_id: "String", # required
8644
- # }
8645
- #
8646
7739
  # @!attribute [rw] cache_security_group_name
8647
7740
  # The name of the cache security group to revoke ingress from.
8648
7741
  # @return [String]
@@ -9179,19 +8272,6 @@ module Aws::ElastiCache
9179
8272
  #
9180
8273
  class SnapshotQuotaExceededFault < Aws::EmptyStructure; end
9181
8274
 
9182
- # @note When making an API call, you may pass StartMigrationMessage
9183
- # data as a hash:
9184
- #
9185
- # {
9186
- # replication_group_id: "String", # required
9187
- # customer_node_endpoint_list: [ # required
9188
- # {
9189
- # address: "String",
9190
- # port: 1,
9191
- # },
9192
- # ],
9193
- # }
9194
- #
9195
8275
  # @!attribute [rw] replication_group_id
9196
8276
  # The ID of the replication group to which data should be migrated.
9197
8277
  # @return [String]
@@ -9296,14 +8376,6 @@ module Aws::ElastiCache
9296
8376
  # replication groups, those actions will be replicated to all nodes in
9297
8377
  # the replication group. A tag with a null Value is permitted.
9298
8378
  #
9299
- # @note When making an API call, you may pass Tag
9300
- # data as a hash:
9301
- #
9302
- # {
9303
- # key: "String",
9304
- # value: "String",
9305
- # }
9306
- #
9307
8379
  # @!attribute [rw] key
9308
8380
  # The key for the tag. May not be null.
9309
8381
  # @return [String]
@@ -9350,14 +8422,6 @@ module Aws::ElastiCache
9350
8422
  #
9351
8423
  class TagQuotaPerResourceExceeded < Aws::EmptyStructure; end
9352
8424
 
9353
- # @note When making an API call, you may pass TestFailoverMessage
9354
- # data as a hash:
9355
- #
9356
- # {
9357
- # replication_group_id: "String", # required
9358
- # node_group_id: "AllowedNodeGroupId", # required
9359
- # }
9360
- #
9361
8425
  # @!attribute [rw] replication_group_id
9362
8426
  # The name of the replication group (console: cluster) whose automatic
9363
8427
  # failover is being tested by this operation.
@@ -9401,14 +8465,6 @@ module Aws::ElastiCache
9401
8465
  # Filters update actions from the service updates that are in available
9402
8466
  # status during the time range.
9403
8467
  #
9404
- # @note When making an API call, you may pass TimeRangeFilter
9405
- # data as a hash:
9406
- #
9407
- # {
9408
- # start_time: Time.now,
9409
- # end_time: Time.now,
9410
- # }
9411
- #
9412
8468
  # @!attribute [rw] start_time
9413
8469
  # The start time of the time range filter
9414
8470
  # @return [Time]