aws-sdk-rds 1.183.0 → 1.184.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78e3446d88c63ecb0c8b5cbcd0da68566218af7431d1483a13468940fbf22d42
4
- data.tar.gz: ad0c0a28e66651deb6d77bc401bc722f19230b791d636741532171095f153fab
3
+ metadata.gz: 53962220e71684b99302d4c6cacc4f22684b10c5ccdd82b7c23044cfdfaa1743
4
+ data.tar.gz: 14b446547fd58b16e3a455bb31f8ba26bfcf2c24578b9e49cccf5cbce241b10f
5
5
  SHA512:
6
- metadata.gz: '0868cd9f9368d40dc14cd2a2ff4f3d17afbd1b290eac44e1482a94164bd37a48673414414cb5f87ab57cd23b30cf6416da02cfa42d65c7533a0a4c9cc99582d1'
7
- data.tar.gz: 7c9d498f5d4ed72fdbc3319b77064dcc0436cefaad46f35ab60bec366950aa83cae7bc815788b24f53b2c9e0e4e4f331055d468dc7a048676e4c910f9338dede
6
+ metadata.gz: e51ef3da75db6a57fa85f205e38416b42931d2b515bf480d57a11d5cd17eac22e9abe8d649cfb42c7b0fc466645db612c3e113fa6cfcde5200fad84bce1764e3
7
+ data.tar.gz: a7157c85f6184ad956b5303d7a4b7bca7a4e32aca9e8cbfcca5dc26bb7bf6bd6be1a32554938b76c6789606e826e416b7782949a2e91238ea4259f5ada6e950f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.184.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Updates Amazon RDS documentation for creating DB instances and creating Aurora global clusters.
8
+
4
9
  1.183.0 (2023-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.183.0
1
+ 1.184.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
@@ -232,6 +238,11 @@ module Aws::RDS
232
238
  # Used when loading credentials from the shared credentials file
233
239
  # at HOME/.aws/credentials. When not specified, 'default' is used.
234
240
  #
241
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
242
+ # The minimum size in bytes that triggers compression for request
243
+ # bodies. The value must be non-negative integer value between 0
244
+ # and 10485780 bytes inclusive.
245
+ #
235
246
  # @option options [Proc] :retry_backoff
236
247
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
237
248
  # This option is only used in the `legacy` retry mode.
@@ -3997,14 +4008,6 @@ module Aws::RDS
3997
4008
  # engine.
3998
4009
  #
3999
4010
  # 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
4011
  #
4009
4012
  # : The name of the database to create when the primary DB instance of
4010
4013
  # the Aurora MySQL DB cluster is created. If you don't specify a
@@ -4016,6 +4019,8 @@ module Aws::RDS
4016
4019
  #
4017
4020
  # * Can't be a word reserved by the database engine.
4018
4021
  #
4022
+ # Amazon Aurora PostgreSQL
4023
+ #
4019
4024
  # : The name of the database to create when the primary DB instance of
4020
4025
  # the Aurora PostgreSQL DB cluster is created.
4021
4026
  #
@@ -4030,6 +4035,8 @@ module Aws::RDS
4030
4035
  #
4031
4036
  # * Can't be a word reserved by the database engine.
4032
4037
  #
4038
+ # Amazon RDS Custom for Oracle
4039
+ #
4033
4040
  # : The Oracle System ID (SID) of the created RDS Custom DB instance.
4034
4041
  #
4035
4042
  # Default: `ORCL`
@@ -4042,8 +4049,12 @@ module Aws::RDS
4042
4049
  #
4043
4050
  # * Can't be a word reserved by the database engine.
4044
4051
  #
4052
+ # Amazon RDS Custom for SQL Server
4053
+ #
4045
4054
  # : Not applicable. Must be null.
4046
4055
  #
4056
+ # RDS for MariaDB
4057
+ #
4047
4058
  # : The name of the database to create when the DB instance is created.
4048
4059
  # If you don't specify a value, Amazon RDS doesn't create a database
4049
4060
  # in the DB instance.
@@ -4057,6 +4068,8 @@ module Aws::RDS
4057
4068
  #
4058
4069
  # * Can't be a word reserved by the database engine.
4059
4070
  #
4071
+ # RDS for MySQL
4072
+ #
4060
4073
  # : The name of the database to create when the DB instance is created.
4061
4074
  # If you don't specify a value, Amazon RDS doesn't create a database
4062
4075
  # in the DB instance.
@@ -4070,6 +4083,8 @@ module Aws::RDS
4070
4083
  #
4071
4084
  # * Can't be a word reserved by the database engine.
4072
4085
  #
4086
+ # RDS for Oracle
4087
+ #
4073
4088
  # : The Oracle System ID (SID) of the created DB instance.
4074
4089
  #
4075
4090
  # Default: `ORCL`
@@ -4081,6 +4096,8 @@ module Aws::RDS
4081
4096
  # * Can't be a word reserved by the database engine, such as the
4082
4097
  # string `NULL`.
4083
4098
  #
4099
+ # RDS for PostgreSQL
4100
+ #
4084
4101
  # : The name of the database to create when the DB instance is created.
4085
4102
  #
4086
4103
  # Default: `postgres`
@@ -4094,6 +4111,8 @@ module Aws::RDS
4094
4111
  #
4095
4112
  # * Can't be a word reserved by the database engine.
4096
4113
  #
4114
+ # RDS for SQL Server
4115
+ #
4097
4116
  # : Not applicable. Must be null.
4098
4117
  #
4099
4118
  # @option params [required, String] :db_instance_identifier
@@ -4120,11 +4139,6 @@ module Aws::RDS
4120
4139
  # use in an Aurora cluster volume.
4121
4140
  #
4122
4141
  # 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
4142
  #
4129
4143
  # : Constraints to the amount of storage for each storage type are the
4130
4144
  # following:
@@ -4137,6 +4151,8 @@ module Aws::RDS
4137
4151
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
4138
4152
  # Server.
4139
4153
  #
4154
+ # RDS for MariaDB
4155
+ #
4140
4156
  # : Constraints to the amount of storage for each storage type are the
4141
4157
  # following:
4142
4158
  #
@@ -4148,6 +4164,8 @@ module Aws::RDS
4148
4164
  #
4149
4165
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4150
4166
  #
4167
+ # RDS for MySQL
4168
+ #
4151
4169
  # : Constraints to the amount of storage for each storage type are the
4152
4170
  # following:
4153
4171
  #
@@ -4159,6 +4177,8 @@ module Aws::RDS
4159
4177
  #
4160
4178
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4161
4179
  #
4180
+ # RDS for Oracle
4181
+ #
4162
4182
  # : Constraints to the amount of storage for each storage type are the
4163
4183
  # following:
4164
4184
  #
@@ -4170,6 +4190,8 @@ module Aws::RDS
4170
4190
  #
4171
4191
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
4172
4192
  #
4193
+ # RDS for PostgreSQL
4194
+ #
4173
4195
  # : Constraints to the amount of storage for each storage type are the
4174
4196
  # following:
4175
4197
  #
@@ -4181,6 +4203,8 @@ module Aws::RDS
4181
4203
  #
4182
4204
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4183
4205
  #
4206
+ # RDS for SQL Server
4207
+ #
4184
4208
  # : Constraints to the amount of storage for each storage type are the
4185
4209
  # following:
4186
4210
  #
@@ -4498,12 +4522,6 @@ module Aws::RDS
4498
4522
  # Region.
4499
4523
  #
4500
4524
  # 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
4525
  #
4508
4526
  # : A custom engine version (CEV) that you have previously created. This
4509
4527
  # setting is required for RDS Custom for Oracle. The CEV name has the
@@ -4511,21 +4529,33 @@ module Aws::RDS
4511
4529
  # `19.my_cev1`. For more information, see [ Creating an RDS Custom for
4512
4530
  # Oracle DB instance][1] in the *Amazon RDS User Guide*.
4513
4531
  #
4532
+ # Amazon RDS Custom for SQL Server
4533
+ #
4514
4534
  # : See [RDS Custom for SQL Server general requirements][2] in the
4515
4535
  # *Amazon RDS User Guide*.
4516
4536
  #
4537
+ # RDS for MariaDB
4538
+ #
4517
4539
  # : For information, see [MariaDB on Amazon RDS versions][3] in the
4518
4540
  # *Amazon RDS User Guide*.
4519
4541
  #
4542
+ # RDS for Microsoft SQL Server
4543
+ #
4520
4544
  # : For information, see [Microsoft SQL Server versions on Amazon
4521
4545
  # RDS][4] in the *Amazon RDS User Guide*.
4522
4546
  #
4547
+ # RDS for MySQL
4548
+ #
4523
4549
  # : For information, see [MySQL on Amazon RDS versions][5] in the
4524
4550
  # *Amazon RDS User Guide*.
4525
4551
  #
4552
+ # RDS for Oracle
4553
+ #
4526
4554
  # : For information, see [Oracle Database Engine release notes][6] in
4527
4555
  # the *Amazon RDS User Guide*.
4528
4556
  #
4557
+ # RDS for PostgreSQL
4558
+ #
4529
4559
  # : For information, see [Amazon RDS for PostgreSQL versions and
4530
4560
  # extensions][7] in the *Amazon RDS User Guide*.
4531
4561
  #
@@ -4739,12 +4769,11 @@ module Aws::RDS
4739
4769
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
4740
4770
  #
4741
4771
  # @option params [String] :domain_fqdn
4742
- # Specifies the fully qualified domain name of an Active Directory
4743
- # domain.
4772
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
4744
4773
  #
4745
4774
  # Constraints:
4746
4775
  #
4747
- # * Cannot be greater than 64 characters.
4776
+ # * Can't be longer than 64 characters.
4748
4777
  #
4749
4778
  # ^
4750
4779
  #
@@ -4757,14 +4786,14 @@ module Aws::RDS
4757
4786
  #
4758
4787
  # * Must be in the distinguished name format.
4759
4788
  #
4760
- # * Cannot be greater than 64 characters.
4789
+ # * Can't be longer than 64 characters.
4761
4790
  #
4762
4791
  # Example:
4763
4792
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
4764
4793
  #
4765
4794
  # @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.
4795
+ # The ARN for the Secrets Manager secret with the credentials for the
4796
+ # user joining the domain.
4768
4797
  #
4769
4798
  # Example:
4770
4799
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -4784,8 +4813,8 @@ module Aws::RDS
4784
4813
  # Example: `123.124.125.126,234.235.236.237`
4785
4814
  #
4786
4815
  # @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.
4816
+ # Specifies whether to copy tags from the DB instance to snapshots of
4817
+ # the DB instance. By default, tags are not copied.
4789
4818
  #
4790
4819
  # This setting doesn't apply to Amazon Aurora DB instances. Copying
4791
4820
  # tags to snapshots is managed by the DB cluster. Setting this value for
@@ -5960,12 +5989,11 @@ module Aws::RDS
5960
5989
  # This setting doesn't apply to RDS Custom.
5961
5990
  #
5962
5991
  # @option params [String] :domain_fqdn
5963
- # Specifies the fully qualified domain name of an Active Directory
5964
- # domain.
5992
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
5965
5993
  #
5966
5994
  # Constraints:
5967
5995
  #
5968
- # * Cannot be greater than 64 characters.
5996
+ # * Can't be longer than 64 characters.
5969
5997
  #
5970
5998
  # ^
5971
5999
  #
@@ -5978,14 +6006,14 @@ module Aws::RDS
5978
6006
  #
5979
6007
  # * Must be in the distinguished name format.
5980
6008
  #
5981
- # * Cannot be greater than 64 characters.
6009
+ # * Can't be longer than 64 characters.
5982
6010
  #
5983
6011
  # Example:
5984
6012
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
5985
6013
  #
5986
6014
  # @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.
6015
+ # The ARN for the Secrets Manager secret with the credentials for the
6016
+ # user joining the domain.
5989
6017
  #
5990
6018
  # Example:
5991
6019
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -7317,35 +7345,82 @@ module Aws::RDS
7317
7345
  # existing Aurora cluster during the create operation, and this cluster
7318
7346
  # becomes the primary cluster of the global database.
7319
7347
  #
7320
- # <note markdown="1"> This action applies only to Aurora DB clusters.
7348
+ # <note markdown="1"> This operation applies only to Aurora DB clusters.
7321
7349
  #
7322
7350
  # </note>
7323
7351
  #
7324
7352
  # @option params [String] :global_cluster_identifier
7325
- # The cluster identifier of the new global database cluster. This
7353
+ # The cluster identifier for this global database cluster. This
7326
7354
  # parameter is stored as a lowercase string.
7327
7355
  #
7328
7356
  # @option params [String] :source_db_cluster_identifier
7329
7357
  # The Amazon Resource Name (ARN) to use as the primary cluster of the
7330
- # global database. This parameter is optional.
7358
+ # global database.
7359
+ #
7360
+ # If you provide a value for this parameter, don't specify values for
7361
+ # the following settings because Amazon Aurora uses the values from the
7362
+ # specified source DB cluster:
7363
+ #
7364
+ # * `DatabaseName`
7365
+ #
7366
+ # * `Engine`
7367
+ #
7368
+ # * `EngineVersion`
7369
+ #
7370
+ # * `StorageEncrypted`
7331
7371
  #
7332
7372
  # @option params [String] :engine
7333
- # The name of the database engine to be used for this DB cluster.
7373
+ # The database engine to use for this global database cluster.
7374
+ #
7375
+ # Valid Values: `aurora-mysql | aurora-postgresql`
7376
+ #
7377
+ # Constraints:
7378
+ #
7379
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7380
+ # this case, Amazon Aurora uses the engine of the source DB cluster.
7381
+ #
7382
+ # ^
7334
7383
  #
7335
7384
  # @option params [String] :engine_version
7336
- # The engine version of the Aurora global database.
7385
+ # The engine version to use for this global database cluster.
7386
+ #
7387
+ # Constraints:
7388
+ #
7389
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7390
+ # this case, Amazon Aurora uses the engine version of the source DB
7391
+ # cluster.
7392
+ #
7393
+ # ^
7337
7394
  #
7338
7395
  # @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.
7396
+ # Specifies whether to enable deletion protection for the new global
7397
+ # database cluster. The global database can't be deleted when deletion
7398
+ # protection is enabled.
7341
7399
  #
7342
7400
  # @option params [String] :database_name
7343
7401
  # 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.
7402
+ # don't specify a name, Amazon Aurora doesn't create a database in the
7403
+ # global database cluster.
7404
+ #
7405
+ # Constraints:
7406
+ #
7407
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7408
+ # this case, Amazon Aurora uses the database name from the source DB
7409
+ # cluster.
7410
+ #
7411
+ # ^
7346
7412
  #
7347
7413
  # @option params [Boolean] :storage_encrypted
7348
- # The storage encryption setting for the new global database cluster.
7414
+ # Specifies whether to enable storage encryption for the new global
7415
+ # database cluster.
7416
+ #
7417
+ # Constraints:
7418
+ #
7419
+ # * Can't be specified if `SourceDBClusterIdentifier` is specified. In
7420
+ # this case, Amazon Aurora uses the setting from the source DB
7421
+ # cluster.
7422
+ #
7423
+ # ^
7349
7424
  #
7350
7425
  # @return [Types::CreateGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7351
7426
  #
@@ -18057,12 +18132,11 @@ module Aws::RDS
18057
18132
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
18058
18133
  #
18059
18134
  # @option params [String] :domain_fqdn
18060
- # Specifies the fully qualified domain name of an Active Directory
18061
- # domain.
18135
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
18062
18136
  #
18063
18137
  # Constraints:
18064
18138
  #
18065
- # * Cannot be greater than 64 characters.
18139
+ # * Can't be longer than 64 characters.
18066
18140
  #
18067
18141
  # ^
18068
18142
  #
@@ -18075,14 +18149,14 @@ module Aws::RDS
18075
18149
  #
18076
18150
  # * Must be in the distinguished name format.
18077
18151
  #
18078
- # * Cannot be greater than 64 characters.
18152
+ # * Can't be longer than 64 characters.
18079
18153
  #
18080
18154
  # Example:
18081
18155
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
18082
18156
  #
18083
18157
  # @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.
18158
+ # The ARN for the Secrets Manager secret with the credentials for the
18159
+ # user joining the domain.
18086
18160
  #
18087
18161
  # Example:
18088
18162
  # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
@@ -18203,7 +18277,7 @@ module Aws::RDS
18203
18277
  # This setting doesn't apply to RDS Custom DB instances.
18204
18278
  #
18205
18279
  # @option params [Boolean] :disable_domain
18206
- # Boolean. If present, removes the instance from the Active Directory
18280
+ # Specifies whether to remove the DB instance from the Active Directory
18207
18281
  # domain.
18208
18282
  #
18209
18283
  # @option params [Integer] :promotion_tier
@@ -23762,12 +23836,11 @@ module Aws::RDS
23762
23836
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
23763
23837
  #
23764
23838
  # @option params [String] :domain_fqdn
23765
- # Specifies the fully qualified domain name of an Active Directory
23766
- # domain.
23839
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
23767
23840
  #
23768
23841
  # Constraints:
23769
23842
  #
23770
- # * Cannot be greater than 64 characters.
23843
+ # * Can't be longer than 64 characters.
23771
23844
  #
23772
23845
  # ^
23773
23846
  #
@@ -23780,14 +23853,14 @@ module Aws::RDS
23780
23853
  #
23781
23854
  # * Must be in the distinguished name format.
23782
23855
  #
23783
- # * Cannot be greater than 64 characters.
23856
+ # * Can't be longer than 64 characters.
23784
23857
  #
23785
23858
  # Example:
23786
23859
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
23787
23860
  #
23788
23861
  # @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.
23862
+ # The ARN for the Secrets Manager secret with the credentials for the
23863
+ # user joining the domain.
23791
23864
  #
23792
23865
  # Constraints:
23793
23866
  #
@@ -23827,10 +23900,10 @@ module Aws::RDS
23827
23900
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags
23828
23901
  #
23829
23902
  # @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.
23903
+ # The name of the IAM role to use when making API calls to the Directory
23904
+ # Service.
23832
23905
  #
23833
- # This setting doesn't apply to RDS Custom.
23906
+ # This setting doesn't apply to RDS Custom DB instances.
23834
23907
  #
23835
23908
  # @option params [Boolean] :enable_iam_database_authentication
23836
23909
  # A value that indicates whether to enable mapping of Amazon Web
@@ -25276,18 +25349,17 @@ module Aws::RDS
25276
25349
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
25277
25350
  #
25278
25351
  # @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.
25352
+ # The name of the IAM role to use when making API calls to the Directory
25353
+ # Service.
25281
25354
  #
25282
- # This setting doesn't apply to RDS Custom.
25355
+ # This setting doesn't apply to RDS Custom DB instances.
25283
25356
  #
25284
25357
  # @option params [String] :domain_fqdn
25285
- # Specifies the fully qualified domain name of an Active Directory
25286
- # domain.
25358
+ # The fully qualified domain name (FQDN) of an Active Directory domain.
25287
25359
  #
25288
25360
  # Constraints:
25289
25361
  #
25290
- # * Cannot be greater than 64 characters.
25362
+ # * Can't be longer than 64 characters.
25291
25363
  #
25292
25364
  # ^
25293
25365
  #
@@ -25300,18 +25372,18 @@ module Aws::RDS
25300
25372
  #
25301
25373
  # * Must be in the distinguished name format.
25302
25374
  #
25303
- # * Cannot be greater than 64 characters.
25375
+ # * Can't be longer than 64 characters.
25304
25376
  #
25305
25377
  # Example:
25306
25378
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
25307
25379
  #
25308
25380
  # @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.
25381
+ # The ARN for the Secrets Manager secret with the credentials for the
25382
+ # user joining the domain.
25311
25383
  #
25312
25384
  # Constraints:
25313
25385
  #
25314
- # * Cannot be greater than 64 characters.
25386
+ # * Can't be longer than 64 characters.
25315
25387
  #
25316
25388
  # ^
25317
25389
  #
@@ -27768,7 +27840,7 @@ module Aws::RDS
27768
27840
  params: params,
27769
27841
  config: config)
27770
27842
  context[:gem_name] = 'aws-sdk-rds'
27771
- context[:gem_version] = '1.183.0'
27843
+ context[:gem_version] = '1.184.0'
27772
27844
  Seahorse::Client::Request.new(handlers, context)
27773
27845
  end
27774
27846