aws-sdk-rds 1.183.0 → 1.185.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78e3446d88c63ecb0c8b5cbcd0da68566218af7431d1483a13468940fbf22d42
4
- data.tar.gz: ad0c0a28e66651deb6d77bc401bc722f19230b791d636741532171095f153fab
3
+ metadata.gz: bea18a61eb6f0600ab2f5d8aa3d64d878198fe96ee37dc2044ad0d0b60cbd79e
4
+ data.tar.gz: 6cf9ee3babf8886dcb0895fac87531389e9627ab592ab0bce581eb18412681c6
5
5
  SHA512:
6
- metadata.gz: '0868cd9f9368d40dc14cd2a2ff4f3d17afbd1b290eac44e1482a94164bd37a48673414414cb5f87ab57cd23b30cf6416da02cfa42d65c7533a0a4c9cc99582d1'
7
- data.tar.gz: 7c9d498f5d4ed72fdbc3319b77064dcc0436cefaad46f35ab60bec366950aa83cae7bc815788b24f53b2c9e0e4e4f331055d468dc7a048676e4c910f9338dede
6
+ metadata.gz: 793af81fc241f9dea6834d994b11584f531b38a0211b0d8c3d856e0c26e113f2f807c007fbcd7450e1bf2f003c27e3e4ace20d916005b45b40b2d735b18f5a1d
7
+ data.tar.gz: 943a0396ab8269734e8099082e6f15e5c99e779e21d178d474d4fe5e07398948e5a38b75e77e9ed60ba501f1e00f33dfba725101dab2e9ea3e26b6d66222c9ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.185.0 (2023-07-11)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.184.0 (2023-07-06)
10
+ ------------------
11
+
12
+ * Feature - Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.
13
+
4
14
  1.183.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.183.0
1
+ 1.185.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -78,6 +79,7 @@ module Aws::RDS
78
79
  add_plugin(Aws::Plugins::TransferEncoding)
79
80
  add_plugin(Aws::Plugins::HttpChecksum)
80
81
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
82
+ add_plugin(Aws::Plugins::RequestCompression)
81
83
  add_plugin(Aws::Plugins::DefaultsMode)
82
84
  add_plugin(Aws::Plugins::RecursionDetection)
83
85
  add_plugin(Aws::Plugins::Sign)
@@ -192,6 +194,10 @@ module Aws::RDS
192
194
  # Set to true to disable SDK automatically adding host prefix
193
195
  # to default service endpoint when available.
194
196
  #
197
+ # @option options [Boolean] :disable_request_compression (false)
198
+ # When set to 'true' the request body will not be compressed
199
+ # for supported operations.
200
+ #
195
201
  # @option options [String] :endpoint
196
202
  # The client endpoint is normally constructed from the `:region`
197
203
  # option. You should only configure an `:endpoint` when connecting
@@ -212,6 +218,10 @@ module Aws::RDS
212
218
  # @option options [Boolean] :endpoint_discovery (false)
213
219
  # When set to `true`, endpoint discovery will be enabled for operations when available.
214
220
  #
221
+ # @option options [Boolean] :ignore_configured_endpoint_urls
222
+ # Setting to true disables use of endpoint URLs provided via environment
223
+ # variables and the shared configuration file.
224
+ #
215
225
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
216
226
  # The log formatter.
217
227
  #
@@ -232,6 +242,11 @@ module Aws::RDS
232
242
  # Used when loading credentials from the shared credentials file
233
243
  # at HOME/.aws/credentials. When not specified, 'default' is used.
234
244
  #
245
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
246
+ # The minimum size in bytes that triggers compression for request
247
+ # bodies. The value must be non-negative integer value between 0
248
+ # and 10485780 bytes inclusive.
249
+ #
235
250
  # @option options [Proc] :retry_backoff
236
251
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
237
252
  # This option is only used in the `legacy` retry mode.
@@ -3997,14 +4012,6 @@ module Aws::RDS
3997
4012
  # engine.
3998
4013
  #
3999
4014
  # Amazon Aurora MySQL
4000
- # Amazon Aurora PostgreSQL
4001
- # Amazon RDS Custom for Oracle
4002
- # Amazon RDS Custom for SQL Server
4003
- # RDS for MariaDB
4004
- # RDS for MySQL
4005
- # RDS for Oracle
4006
- # RDS for PostgreSQL
4007
- # RDS for SQL Server
4008
4015
  #
4009
4016
  # : The name of the database to create when the primary DB instance of
4010
4017
  # the Aurora MySQL DB cluster is created. If you don't specify a
@@ -4016,6 +4023,8 @@ module Aws::RDS
4016
4023
  #
4017
4024
  # * Can't be a word reserved by the database engine.
4018
4025
  #
4026
+ # Amazon Aurora PostgreSQL
4027
+ #
4019
4028
  # : The name of the database to create when the primary DB instance of
4020
4029
  # the Aurora PostgreSQL DB cluster is created.
4021
4030
  #
@@ -4030,6 +4039,8 @@ module Aws::RDS
4030
4039
  #
4031
4040
  # * Can't be a word reserved by the database engine.
4032
4041
  #
4042
+ # Amazon RDS Custom for Oracle
4043
+ #
4033
4044
  # : The Oracle System ID (SID) of the created RDS Custom DB instance.
4034
4045
  #
4035
4046
  # Default: `ORCL`
@@ -4042,8 +4053,12 @@ module Aws::RDS
4042
4053
  #
4043
4054
  # * Can't be a word reserved by the database engine.
4044
4055
  #
4056
+ # Amazon RDS Custom for SQL Server
4057
+ #
4045
4058
  # : Not applicable. Must be null.
4046
4059
  #
4060
+ # RDS for MariaDB
4061
+ #
4047
4062
  # : The name of the database to create when the DB instance is created.
4048
4063
  # If you don't specify a value, Amazon RDS doesn't create a database
4049
4064
  # in the DB instance.
@@ -4057,6 +4072,8 @@ module Aws::RDS
4057
4072
  #
4058
4073
  # * Can't be a word reserved by the database engine.
4059
4074
  #
4075
+ # RDS for MySQL
4076
+ #
4060
4077
  # : The name of the database to create when the DB instance is created.
4061
4078
  # If you don't specify a value, Amazon RDS doesn't create a database
4062
4079
  # in the DB instance.
@@ -4070,6 +4087,8 @@ module Aws::RDS
4070
4087
  #
4071
4088
  # * Can't be a word reserved by the database engine.
4072
4089
  #
4090
+ # RDS for Oracle
4091
+ #
4073
4092
  # : The Oracle System ID (SID) of the created DB instance.
4074
4093
  #
4075
4094
  # Default: `ORCL`
@@ -4081,6 +4100,8 @@ module Aws::RDS
4081
4100
  # * Can't be a word reserved by the database engine, such as the
4082
4101
  # string `NULL`.
4083
4102
  #
4103
+ # RDS for PostgreSQL
4104
+ #
4084
4105
  # : The name of the database to create when the DB instance is created.
4085
4106
  #
4086
4107
  # Default: `postgres`
@@ -4094,6 +4115,8 @@ module Aws::RDS
4094
4115
  #
4095
4116
  # * Can't be a word reserved by the database engine.
4096
4117
  #
4118
+ # RDS for SQL Server
4119
+ #
4097
4120
  # : Not applicable. Must be null.
4098
4121
  #
4099
4122
  # @option params [required, String] :db_instance_identifier
@@ -4120,11 +4143,6 @@ module Aws::RDS
4120
4143
  # use in an Aurora cluster volume.
4121
4144
  #
4122
4145
  # Amazon RDS Custom
4123
- # RDS for MariaDB
4124
- # RDS for MySQL
4125
- # RDS for Oracle
4126
- # RDS for PostgreSQL
4127
- # RDS for SQL Server
4128
4146
  #
4129
4147
  # : Constraints to the amount of storage for each storage type are the
4130
4148
  # following:
@@ -4137,6 +4155,8 @@ module Aws::RDS
4137
4155
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
4138
4156
  # Server.
4139
4157
  #
4158
+ # RDS for MariaDB
4159
+ #
4140
4160
  # : Constraints to the amount of storage for each storage type are the
4141
4161
  # following:
4142
4162
  #
@@ -4148,6 +4168,8 @@ module Aws::RDS
4148
4168
  #
4149
4169
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4150
4170
  #
4171
+ # RDS for MySQL
4172
+ #
4151
4173
  # : Constraints to the amount of storage for each storage type are the
4152
4174
  # following:
4153
4175
  #
@@ -4159,6 +4181,8 @@ module Aws::RDS
4159
4181
  #
4160
4182
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4161
4183
  #
4184
+ # RDS for Oracle
4185
+ #
4162
4186
  # : Constraints to the amount of storage for each storage type are the
4163
4187
  # following:
4164
4188
  #
@@ -4170,6 +4194,8 @@ module Aws::RDS
4170
4194
  #
4171
4195
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
4172
4196
  #
4197
+ # RDS for PostgreSQL
4198
+ #
4173
4199
  # : Constraints to the amount of storage for each storage type are the
4174
4200
  # following:
4175
4201
  #
@@ -4181,6 +4207,8 @@ module Aws::RDS
4181
4207
  #
4182
4208
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4183
4209
  #
4210
+ # RDS for SQL Server
4211
+ #
4184
4212
  # : Constraints to the amount of storage for each storage type are the
4185
4213
  # following:
4186
4214
  #
@@ -4498,12 +4526,6 @@ module Aws::RDS
4498
4526
  # Region.
4499
4527
  #
4500
4528
  # Amazon RDS Custom for Oracle
4501
- # Amazon RDS Custom for SQL Server
4502
- # RDS for MariaDB
4503
- # RDS for Microsoft SQL Server
4504
- # RDS for MySQL
4505
- # RDS for Oracle
4506
- # RDS for PostgreSQL
4507
4529
  #
4508
4530
  # : A custom engine version (CEV) that you have previously created. This
4509
4531
  # setting is required for RDS Custom for Oracle. The CEV name has the
@@ -4511,21 +4533,33 @@ module Aws::RDS
4511
4533
  # `19.my_cev1`. For more information, see [ Creating an RDS Custom for
4512
4534
  # Oracle DB instance][1] in the *Amazon RDS User Guide*.
4513
4535
  #
4536
+ # Amazon RDS Custom for SQL Server
4537
+ #
4514
4538
  # : See [RDS Custom for SQL Server general requirements][2] in the
4515
4539
  # *Amazon RDS User Guide*.
4516
4540
  #
4541
+ # RDS for MariaDB
4542
+ #
4517
4543
  # : For information, see [MariaDB on Amazon RDS versions][3] in the
4518
4544
  # *Amazon RDS User Guide*.
4519
4545
  #
4546
+ # RDS for Microsoft SQL Server
4547
+ #
4520
4548
  # : For information, see [Microsoft SQL Server versions on Amazon
4521
4549
  # RDS][4] in the *Amazon RDS User Guide*.
4522
4550
  #
4551
+ # RDS for MySQL
4552
+ #
4523
4553
  # : For information, see [MySQL on Amazon RDS versions][5] in the
4524
4554
  # *Amazon RDS User Guide*.
4525
4555
  #
4556
+ # RDS for Oracle
4557
+ #
4526
4558
  # : For information, see [Oracle Database Engine release notes][6] in
4527
4559
  # the *Amazon RDS User Guide*.
4528
4560
  #
4561
+ # RDS for PostgreSQL
4562
+ #
4529
4563
  # : For information, see [Amazon RDS for PostgreSQL versions and
4530
4564
  # extensions][7] in the *Amazon RDS User Guide*.
4531
4565
  #
@@ -4739,12 +4773,11 @@ module Aws::RDS
4739
4773
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
4740
4774
  #
4741
4775
  # @option params [String] :domain_fqdn
4742
- # Specifies the fully qualified domain name of an Active Directory
4743
- # domain.
4776
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
4744
4777
  #
4745
4778
  # Constraints:
4746
4779
  #
4747
- # * Cannot be greater than 64 characters.
4780
+ # * Can't be longer than 64 characters.
4748
4781
  #
4749
4782
  # ^
4750
4783
  #
@@ -4757,14 +4790,14 @@ module Aws::RDS
4757
4790
  #
4758
4791
  # * Must be in the distinguished name format.
4759
4792
  #
4760
- # * Cannot be greater than 64 characters.
4793
+ # * Can't be longer than 64 characters.
4761
4794
  #
4762
4795
  # Example:
4763
4796
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
4764
4797
  #
4765
4798
  # @option params [String] :domain_auth_secret_arn
4766
- # The ARN for the Secrets Manager secret that contains the credentials
4767
- # for the user performing the domain join.
4799
+ # The ARN for the Secrets Manager secret with the credentials for the
4800
+ # user joining the domain.
4768
4801
  #
4769
4802
  # Example:
4770
4803
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -4784,8 +4817,8 @@ module Aws::RDS
4784
4817
  # Example: `123.124.125.126,234.235.236.237`
4785
4818
  #
4786
4819
  # @option params [Boolean] :copy_tags_to_snapshot
4787
- # Spcifies whether to copy tags from the DB instance to snapshots of the
4788
- # DB instance. By default, tags are not copied.
4820
+ # Specifies whether to copy tags from the DB instance to snapshots of
4821
+ # the DB instance. By default, tags are not copied.
4789
4822
  #
4790
4823
  # This setting doesn't apply to Amazon Aurora DB instances. Copying
4791
4824
  # tags to snapshots is managed by the DB cluster. Setting this value for
@@ -5960,12 +5993,11 @@ module Aws::RDS
5960
5993
  # This setting doesn't apply to RDS Custom.
5961
5994
  #
5962
5995
  # @option params [String] :domain_fqdn
5963
- # Specifies the fully qualified domain name of an Active Directory
5964
- # domain.
5996
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
5965
5997
  #
5966
5998
  # Constraints:
5967
5999
  #
5968
- # * Cannot be greater than 64 characters.
6000
+ # * Can't be longer than 64 characters.
5969
6001
  #
5970
6002
  # ^
5971
6003
  #
@@ -5978,14 +6010,14 @@ module Aws::RDS
5978
6010
  #
5979
6011
  # * Must be in the distinguished name format.
5980
6012
  #
5981
- # * Cannot be greater than 64 characters.
6013
+ # * Can't be longer than 64 characters.
5982
6014
  #
5983
6015
  # Example:
5984
6016
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
5985
6017
  #
5986
6018
  # @option params [String] :domain_auth_secret_arn
5987
- # The ARN for the Secrets Manager secret that contains the credentials
5988
- # for the user performing the domain join.
6019
+ # The ARN for the Secrets Manager secret with the credentials for the
6020
+ # user joining the domain.
5989
6021
  #
5990
6022
  # Example:
5991
6023
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -7317,35 +7349,82 @@ module Aws::RDS
7317
7349
  # existing Aurora cluster during the create operation, and this cluster
7318
7350
  # becomes the primary cluster of the global database.
7319
7351
  #
7320
- # <note markdown="1"> This action applies only to Aurora DB clusters.
7352
+ # <note markdown="1"> This operation applies only to Aurora DB clusters.
7321
7353
  #
7322
7354
  # </note>
7323
7355
  #
7324
7356
  # @option params [String] :global_cluster_identifier
7325
- # The cluster identifier of the new global database cluster. This
7357
+ # The cluster identifier for this global database cluster. This
7326
7358
  # parameter is stored as a lowercase string.
7327
7359
  #
7328
7360
  # @option params [String] :source_db_cluster_identifier
7329
7361
  # The Amazon Resource Name (ARN) to use as the primary cluster of the
7330
- # global database. This parameter is optional.
7362
+ # global database.
7363
+ #
7364
+ # If you provide a value for this parameter, don't specify values for
7365
+ # the following settings because Amazon Aurora uses the values from the
7366
+ # specified source DB cluster:
7367
+ #
7368
+ # * `DatabaseName`
7369
+ #
7370
+ # * `Engine`
7371
+ #
7372
+ # * `EngineVersion`
7373
+ #
7374
+ # * `StorageEncrypted`
7331
7375
  #
7332
7376
  # @option params [String] :engine
7333
- # The name of the database engine to be used for this DB cluster.
7377
+ # The database engine to use for this global database cluster.
7378
+ #
7379
+ # Valid Values: `aurora-mysql | aurora-postgresql`
7380
+ #
7381
+ # Constraints:
7382
+ #
7383
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7384
+ # this case, Amazon Aurora uses the engine of the source DB cluster.
7385
+ #
7386
+ # ^
7334
7387
  #
7335
7388
  # @option params [String] :engine_version
7336
- # The engine version of the Aurora global database.
7389
+ # The engine version to use for this global database cluster.
7390
+ #
7391
+ # Constraints:
7392
+ #
7393
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7394
+ # this case, Amazon Aurora uses the engine version of the source DB
7395
+ # cluster.
7396
+ #
7397
+ # ^
7337
7398
  #
7338
7399
  # @option params [Boolean] :deletion_protection
7339
- # The deletion protection setting for the new global database. The
7340
- # global database can't be deleted when deletion protection is enabled.
7400
+ # Specifies whether to enable deletion protection for the new global
7401
+ # database cluster. The global database can't be deleted when deletion
7402
+ # protection is enabled.
7341
7403
  #
7342
7404
  # @option params [String] :database_name
7343
7405
  # The name for your database of up to 64 alphanumeric characters. If you
7344
- # do not provide a name, Amazon Aurora will not create a database in the
7345
- # global database cluster you are creating.
7406
+ # don't specify a name, Amazon Aurora doesn't create a database in the
7407
+ # global database cluster.
7408
+ #
7409
+ # Constraints:
7410
+ #
7411
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7412
+ # this case, Amazon Aurora uses the database name from the source DB
7413
+ # cluster.
7414
+ #
7415
+ # ^
7346
7416
  #
7347
7417
  # @option params [Boolean] :storage_encrypted
7348
- # The storage encryption setting for the new global database cluster.
7418
+ # Specifies whether to enable storage encryption for the new global
7419
+ # database cluster.
7420
+ #
7421
+ # Constraints:
7422
+ #
7423
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7424
+ # this case, Amazon Aurora uses the setting from the source DB
7425
+ # cluster.
7426
+ #
7427
+ # ^
7349
7428
  #
7350
7429
  # @return [Types::CreateGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7351
7430
  #
@@ -18057,12 +18136,11 @@ module Aws::RDS
18057
18136
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
18058
18137
  #
18059
18138
  # @option params [String] :domain_fqdn
18060
- # Specifies the fully qualified domain name of an Active Directory
18061
- # domain.
18139
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
18062
18140
  #
18063
18141
  # Constraints:
18064
18142
  #
18065
- # * Cannot be greater than 64 characters.
18143
+ # * Can't be longer than 64 characters.
18066
18144
  #
18067
18145
  # ^
18068
18146
  #
@@ -18075,14 +18153,14 @@ module Aws::RDS
18075
18153
  #
18076
18154
  # * Must be in the distinguished name format.
18077
18155
  #
18078
- # * Cannot be greater than 64 characters.
18156
+ # * Can't be longer than 64 characters.
18079
18157
  #
18080
18158
  # Example:
18081
18159
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
18082
18160
  #
18083
18161
  # @option params [String] :domain_auth_secret_arn
18084
- # The ARN for the Secrets Manager secret that contains the credentials
18085
- # for the user performing the domain join.
18162
+ # The ARN for the Secrets Manager secret with the credentials for the
18163
+ # user joining the domain.
18086
18164
  #
18087
18165
  # Example:
18088
18166
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -18203,7 +18281,7 @@ module Aws::RDS
18203
18281
  # This setting doesn't apply to RDS Custom DB instances.
18204
18282
  #
18205
18283
  # @option params [Boolean] :disable_domain
18206
- # Boolean. If present, removes the instance from the Active Directory
18284
+ # Specifies whether to remove the DB instance from the Active Directory
18207
18285
  # domain.
18208
18286
  #
18209
18287
  # @option params [Integer] :promotion_tier
@@ -23762,12 +23840,11 @@ module Aws::RDS
23762
23840
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
23763
23841
  #
23764
23842
  # @option params [String] :domain_fqdn
23765
- # Specifies the fully qualified domain name of an Active Directory
23766
- # domain.
23843
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
23767
23844
  #
23768
23845
  # Constraints:
23769
23846
  #
23770
- # * Cannot be greater than 64 characters.
23847
+ # * Can't be longer than 64 characters.
23771
23848
  #
23772
23849
  # ^
23773
23850
  #
@@ -23780,14 +23857,14 @@ module Aws::RDS
23780
23857
  #
23781
23858
  # * Must be in the distinguished name format.
23782
23859
  #
23783
- # * Cannot be greater than 64 characters.
23860
+ # * Can't be longer than 64 characters.
23784
23861
  #
23785
23862
  # Example:
23786
23863
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
23787
23864
  #
23788
23865
  # @option params [String] :domain_auth_secret_arn
23789
- # The ARN for the Secrets Manager secret that contains the credentials
23790
- # for the user performing the domain join.
23866
+ # The ARN for the Secrets Manager secret with the credentials for the
23867
+ # user joining the domain.
23791
23868
  #
23792
23869
  # Constraints:
23793
23870
  #
@@ -23827,10 +23904,10 @@ module Aws::RDS
23827
23904
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags
23828
23905
  #
23829
23906
  # @option params [String] :domain_iam_role_name
23830
- # Specify the name of the IAM role to be used when making API calls to
23831
- # the Directory Service.
23907
+ # The name of the IAM role to use when making API calls to the Directory
23908
+ # Service.
23832
23909
  #
23833
- # This setting doesn't apply to RDS Custom.
23910
+ # This setting doesn't apply to RDS Custom DB instances.
23834
23911
  #
23835
23912
  # @option params [Boolean] :enable_iam_database_authentication
23836
23913
  # A value that indicates whether to enable mapping of Amazon Web
@@ -25276,18 +25353,17 @@ module Aws::RDS
25276
25353
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
25277
25354
  #
25278
25355
  # @option params [String] :domain_iam_role_name
25279
- # Specify the name of the IAM role to be used when making API calls to
25280
- # the Directory Service.
25356
+ # The name of the IAM role to use when making API calls to the Directory
25357
+ # Service.
25281
25358
  #
25282
- # This setting doesn't apply to RDS Custom.
25359
+ # This setting doesn't apply to RDS Custom DB instances.
25283
25360
  #
25284
25361
  # @option params [String] :domain_fqdn
25285
- # Specifies the fully qualified domain name of an Active Directory
25286
- # domain.
25362
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
25287
25363
  #
25288
25364
  # Constraints:
25289
25365
  #
25290
- # * Cannot be greater than 64 characters.
25366
+ # * Can't be longer than 64 characters.
25291
25367
  #
25292
25368
  # ^
25293
25369
  #
@@ -25300,18 +25376,18 @@ module Aws::RDS
25300
25376
  #
25301
25377
  # * Must be in the distinguished name format.
25302
25378
  #
25303
- # * Cannot be greater than 64 characters.
25379
+ # * Can't be longer than 64 characters.
25304
25380
  #
25305
25381
  # Example:
25306
25382
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
25307
25383
  #
25308
25384
  # @option params [String] :domain_auth_secret_arn
25309
- # The ARN for the Secrets Manager secret that contains the credentials
25310
- # for the user performing the domain join.
25385
+ # The ARN for the Secrets Manager secret with the credentials for the
25386
+ # user joining the domain.
25311
25387
  #
25312
25388
  # Constraints:
25313
25389
  #
25314
- # * Cannot be greater than 64 characters.
25390
+ # * Can't be longer than 64 characters.
25315
25391
  #
25316
25392
  # ^
25317
25393
  #
@@ -27768,7 +27844,7 @@ module Aws::RDS
27768
27844
  params: params,
27769
27845
  config: config)
27770
27846
  context[:gem_name] = 'aws-sdk-rds'
27771
- context[:gem_version] = '1.183.0'
27847
+ context[:gem_version] = '1.185.0'
27772
27848
  Seahorse::Client::Request.new(handlers, context)
27773
27849
  end
27774
27850