aws-sdk-rds 1.182.0 → 1.183.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: 458d2ad23bb2930b718dead7c2e8b9b4a7422dc2ad8c8f7016b46ef6d221defb
4
- data.tar.gz: fb6876c3925ea3ab13fa119b8d11353e5f68b2d0e277ba9b8041ab8955c24a2a
3
+ metadata.gz: 78e3446d88c63ecb0c8b5cbcd0da68566218af7431d1483a13468940fbf22d42
4
+ data.tar.gz: ad0c0a28e66651deb6d77bc401bc722f19230b791d636741532171095f153fab
5
5
  SHA512:
6
- metadata.gz: ec79c29b09d9eb05aab41f1c1f4cb4f0a74bc0b61e84f05e6da1f3d7cc62a787038f5c1efcadaa5aeeca657791ed578db10a532278e7d95e1bfd75f5ff0e147b
7
- data.tar.gz: 5759da27cae46842349ec38611394864cd6f8aa6a231751a5afd6c807ffa0756d4fb337b542b81512bafca3f2b045b1f20671b8beec2322646c25b1f81eed34a
6
+ metadata.gz: '0868cd9f9368d40dc14cd2a2ff4f3d17afbd1b290eac44e1482a94164bd37a48673414414cb5f87ab57cd23b30cf6416da02cfa42d65c7533a0a4c9cc99582d1'
7
+ data.tar.gz: 7c9d498f5d4ed72fdbc3319b77064dcc0436cefaad46f35ab60bec366950aa83cae7bc815788b24f53b2c9e0e4e4f331055d468dc7a048676e4c910f9338dede
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.183.0 (2023-06-28)
5
+ ------------------
6
+
7
+ * Feature - Amazon Relational Database Service (RDS) now supports joining a RDS for SQL Server instance to a self-managed Active Directory.
8
+
4
9
  1.182.0 (2023-06-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.182.0
1
+ 1.183.0
@@ -3499,6 +3499,10 @@ module Aws::RDS
3499
3499
  # resp.db_cluster.domain_memberships[0].status #=> String
3500
3500
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
3501
3501
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
3502
+ # resp.db_cluster.domain_memberships[0].ou #=> String
3503
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
3504
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
3505
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
3502
3506
  # resp.db_cluster.tag_list #=> Array
3503
3507
  # resp.db_cluster.tag_list[0].key #=> String
3504
3508
  # resp.db_cluster.tag_list[0].value #=> String
@@ -4734,6 +4738,51 @@ module Aws::RDS
4734
4738
  #
4735
4739
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
4736
4740
  #
4741
+ # @option params [String] :domain_fqdn
4742
+ # Specifies the fully qualified domain name of an Active Directory
4743
+ # domain.
4744
+ #
4745
+ # Constraints:
4746
+ #
4747
+ # * Cannot be greater than 64 characters.
4748
+ #
4749
+ # ^
4750
+ #
4751
+ # Example: `mymanagedADtest.mymanagedAD.mydomain`
4752
+ #
4753
+ # @option params [String] :domain_ou
4754
+ # The Active Directory organizational unit for your DB instance to join.
4755
+ #
4756
+ # Constraints:
4757
+ #
4758
+ # * Must be in the distinguished name format.
4759
+ #
4760
+ # * Cannot be greater than 64 characters.
4761
+ #
4762
+ # Example:
4763
+ # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
4764
+ #
4765
+ # @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.
4768
+ #
4769
+ # Example:
4770
+ # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
4771
+ #
4772
+ # @option params [Array<String>] :domain_dns_ips
4773
+ # The IPv4 DNS IP addresses of your primary and secondary Active
4774
+ # Directory domain controllers.
4775
+ #
4776
+ # Constraints:
4777
+ #
4778
+ # * Two IP addresses must be provided. If there isn't a secondary
4779
+ # domain controller, use the IP address of the primary domain
4780
+ # controller for both entries in the list.
4781
+ #
4782
+ # ^
4783
+ #
4784
+ # Example: `123.124.125.126,234.235.236.237`
4785
+ #
4737
4786
  # @option params [Boolean] :copy_tags_to_snapshot
4738
4787
  # Spcifies whether to copy tags from the DB instance to snapshots of the
4739
4788
  # DB instance. By default, tags are not copied.
@@ -5237,6 +5286,10 @@ module Aws::RDS
5237
5286
  # storage_encrypted: false,
5238
5287
  # kms_key_id: "String",
5239
5288
  # domain: "String",
5289
+ # domain_fqdn: "String",
5290
+ # domain_ou: "String",
5291
+ # domain_auth_secret_arn: "String",
5292
+ # domain_dns_ips: ["String"],
5240
5293
  # copy_tags_to_snapshot: false,
5241
5294
  # monitoring_interval: 1,
5242
5295
  # monitoring_role_arn: "String",
@@ -5367,6 +5420,10 @@ module Aws::RDS
5367
5420
  # resp.db_instance.domain_memberships[0].status #=> String
5368
5421
  # resp.db_instance.domain_memberships[0].fqdn #=> String
5369
5422
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
5423
+ # resp.db_instance.domain_memberships[0].ou #=> String
5424
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
5425
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
5426
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
5370
5427
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
5371
5428
  # resp.db_instance.monitoring_interval #=> Integer
5372
5429
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -5902,6 +5959,51 @@ module Aws::RDS
5902
5959
  #
5903
5960
  # This setting doesn't apply to RDS Custom.
5904
5961
  #
5962
+ # @option params [String] :domain_fqdn
5963
+ # Specifies the fully qualified domain name of an Active Directory
5964
+ # domain.
5965
+ #
5966
+ # Constraints:
5967
+ #
5968
+ # * Cannot be greater than 64 characters.
5969
+ #
5970
+ # ^
5971
+ #
5972
+ # Example: `mymanagedADtest.mymanagedAD.mydomain`
5973
+ #
5974
+ # @option params [String] :domain_ou
5975
+ # The Active Directory organizational unit for your DB instance to join.
5976
+ #
5977
+ # Constraints:
5978
+ #
5979
+ # * Must be in the distinguished name format.
5980
+ #
5981
+ # * Cannot be greater than 64 characters.
5982
+ #
5983
+ # Example:
5984
+ # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
5985
+ #
5986
+ # @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.
5989
+ #
5990
+ # Example:
5991
+ # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
5992
+ #
5993
+ # @option params [Array<String>] :domain_dns_ips
5994
+ # The IPv4 DNS IP addresses of your primary and secondary Active
5995
+ # Directory domain controllers.
5996
+ #
5997
+ # Constraints:
5998
+ #
5999
+ # * Two IP addresses must be provided. If there isn't a secondary
6000
+ # domain controller, use the IP address of the primary domain
6001
+ # controller for both entries in the list.
6002
+ #
6003
+ # ^
6004
+ #
6005
+ # Example: `123.124.125.126,234.235.236.237`
6006
+ #
5905
6007
  # @option params [String] :replica_mode
5906
6008
  # The open mode of the replica database: mounted or read-only.
5907
6009
  #
@@ -6110,6 +6212,10 @@ module Aws::RDS
6110
6212
  # deletion_protection: false,
6111
6213
  # domain: "String",
6112
6214
  # domain_iam_role_name: "String",
6215
+ # domain_fqdn: "String",
6216
+ # domain_ou: "String",
6217
+ # domain_auth_secret_arn: "String",
6218
+ # domain_dns_ips: ["String"],
6113
6219
  # replica_mode: "open-read-only", # accepts open-read-only, mounted
6114
6220
  # max_allocated_storage: 1,
6115
6221
  # custom_iam_instance_profile: "String",
@@ -6222,6 +6328,10 @@ module Aws::RDS
6222
6328
  # resp.db_instance.domain_memberships[0].status #=> String
6223
6329
  # resp.db_instance.domain_memberships[0].fqdn #=> String
6224
6330
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
6331
+ # resp.db_instance.domain_memberships[0].ou #=> String
6332
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
6333
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
6334
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
6225
6335
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
6226
6336
  # resp.db_instance.monitoring_interval #=> Integer
6227
6337
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -7988,6 +8098,10 @@ module Aws::RDS
7988
8098
  # resp.db_cluster.domain_memberships[0].status #=> String
7989
8099
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
7990
8100
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
8101
+ # resp.db_cluster.domain_memberships[0].ou #=> String
8102
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
8103
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
8104
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
7991
8105
  # resp.db_cluster.tag_list #=> Array
7992
8106
  # resp.db_cluster.tag_list[0].key #=> String
7993
8107
  # resp.db_cluster.tag_list[0].value #=> String
@@ -8501,6 +8615,10 @@ module Aws::RDS
8501
8615
  # resp.db_instance.domain_memberships[0].status #=> String
8502
8616
  # resp.db_instance.domain_memberships[0].fqdn #=> String
8503
8617
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
8618
+ # resp.db_instance.domain_memberships[0].ou #=> String
8619
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
8620
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
8621
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
8504
8622
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
8505
8623
  # resp.db_instance.monitoring_interval #=> Integer
8506
8624
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -10986,6 +11104,10 @@ module Aws::RDS
10986
11104
  # resp.db_clusters[0].domain_memberships[0].status #=> String
10987
11105
  # resp.db_clusters[0].domain_memberships[0].fqdn #=> String
10988
11106
  # resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
11107
+ # resp.db_clusters[0].domain_memberships[0].ou #=> String
11108
+ # resp.db_clusters[0].domain_memberships[0].auth_secret_arn #=> String
11109
+ # resp.db_clusters[0].domain_memberships[0].dns_ips #=> Array
11110
+ # resp.db_clusters[0].domain_memberships[0].dns_ips[0] #=> String
10989
11111
  # resp.db_clusters[0].tag_list #=> Array
10990
11112
  # resp.db_clusters[0].tag_list[0].key #=> String
10991
11113
  # resp.db_clusters[0].tag_list[0].value #=> String
@@ -11687,6 +11809,10 @@ module Aws::RDS
11687
11809
  # resp.db_instances[0].domain_memberships[0].status #=> String
11688
11810
  # resp.db_instances[0].domain_memberships[0].fqdn #=> String
11689
11811
  # resp.db_instances[0].domain_memberships[0].iam_role_name #=> String
11812
+ # resp.db_instances[0].domain_memberships[0].ou #=> String
11813
+ # resp.db_instances[0].domain_memberships[0].auth_secret_arn #=> String
11814
+ # resp.db_instances[0].domain_memberships[0].dns_ips #=> Array
11815
+ # resp.db_instances[0].domain_memberships[0].dns_ips[0] #=> String
11690
11816
  # resp.db_instances[0].copy_tags_to_snapshot #=> Boolean
11691
11817
  # resp.db_instances[0].monitoring_interval #=> Integer
11692
11818
  # resp.db_instances[0].enhanced_monitoring_resource_arn #=> String
@@ -15473,6 +15599,10 @@ module Aws::RDS
15473
15599
  # resp.db_cluster.domain_memberships[0].status #=> String
15474
15600
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
15475
15601
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
15602
+ # resp.db_cluster.domain_memberships[0].ou #=> String
15603
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
15604
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
15605
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
15476
15606
  # resp.db_cluster.tag_list #=> Array
15477
15607
  # resp.db_cluster.tag_list[0].key #=> String
15478
15608
  # resp.db_cluster.tag_list[0].value #=> String
@@ -17021,6 +17151,10 @@ module Aws::RDS
17021
17151
  # resp.db_cluster.domain_memberships[0].status #=> String
17022
17152
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
17023
17153
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
17154
+ # resp.db_cluster.domain_memberships[0].ou #=> String
17155
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
17156
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
17157
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
17024
17158
  # resp.db_cluster.tag_list #=> Array
17025
17159
  # resp.db_cluster.tag_list[0].key #=> String
17026
17160
  # resp.db_cluster.tag_list[0].value #=> String
@@ -17922,6 +18056,51 @@ module Aws::RDS
17922
18056
  #
17923
18057
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
17924
18058
  #
18059
+ # @option params [String] :domain_fqdn
18060
+ # Specifies the fully qualified domain name of an Active Directory
18061
+ # domain.
18062
+ #
18063
+ # Constraints:
18064
+ #
18065
+ # * Cannot be greater than 64 characters.
18066
+ #
18067
+ # ^
18068
+ #
18069
+ # Example: `mymanagedADtest.mymanagedAD.mydomain`
18070
+ #
18071
+ # @option params [String] :domain_ou
18072
+ # The Active Directory organizational unit for your DB instance to join.
18073
+ #
18074
+ # Constraints:
18075
+ #
18076
+ # * Must be in the distinguished name format.
18077
+ #
18078
+ # * Cannot be greater than 64 characters.
18079
+ #
18080
+ # Example:
18081
+ # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
18082
+ #
18083
+ # @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.
18086
+ #
18087
+ # Example:
18088
+ # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
18089
+ #
18090
+ # @option params [Array<String>] :domain_dns_ips
18091
+ # The IPv4 DNS IP addresses of your primary and secondary Active
18092
+ # Directory domain controllers.
18093
+ #
18094
+ # Constraints:
18095
+ #
18096
+ # * Two IP addresses must be provided. If there isn't a secondary
18097
+ # domain controller, use the IP address of the primary domain
18098
+ # controller for both entries in the list.
18099
+ #
18100
+ # ^
18101
+ #
18102
+ # Example: `123.124.125.126,234.235.236.237`
18103
+ #
17925
18104
  # @option params [Boolean] :copy_tags_to_snapshot
17926
18105
  # Specifies whether to copy all tags from the DB instance to snapshots
17927
18106
  # of the DB instance. By default, tags aren't copied.
@@ -18023,6 +18202,10 @@ module Aws::RDS
18023
18202
  #
18024
18203
  # This setting doesn't apply to RDS Custom DB instances.
18025
18204
  #
18205
+ # @option params [Boolean] :disable_domain
18206
+ # Boolean. If present, removes the instance from the Active Directory
18207
+ # domain.
18208
+ #
18026
18209
  # @option params [Integer] :promotion_tier
18027
18210
  # The order of priority in which an Aurora Replica is promoted to the
18028
18211
  # primary instance after a failure of the existing primary instance. For
@@ -18467,12 +18650,17 @@ module Aws::RDS
18467
18650
  # tde_credential_password: "String",
18468
18651
  # ca_certificate_identifier: "String",
18469
18652
  # domain: "String",
18653
+ # domain_fqdn: "String",
18654
+ # domain_ou: "String",
18655
+ # domain_auth_secret_arn: "String",
18656
+ # domain_dns_ips: ["String"],
18470
18657
  # copy_tags_to_snapshot: false,
18471
18658
  # monitoring_interval: 1,
18472
18659
  # db_port_number: 1,
18473
18660
  # publicly_accessible: false,
18474
18661
  # monitoring_role_arn: "String",
18475
18662
  # domain_iam_role_name: "String",
18663
+ # disable_domain: false,
18476
18664
  # promotion_tier: 1,
18477
18665
  # enable_iam_database_authentication: false,
18478
18666
  # enable_performance_insights: false,
@@ -18606,6 +18794,10 @@ module Aws::RDS
18606
18794
  # resp.db_instance.domain_memberships[0].status #=> String
18607
18795
  # resp.db_instance.domain_memberships[0].fqdn #=> String
18608
18796
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
18797
+ # resp.db_instance.domain_memberships[0].ou #=> String
18798
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
18799
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
18800
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
18609
18801
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
18610
18802
  # resp.db_instance.monitoring_interval #=> Integer
18611
18803
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -20012,6 +20204,10 @@ module Aws::RDS
20012
20204
  # resp.db_instance.domain_memberships[0].status #=> String
20013
20205
  # resp.db_instance.domain_memberships[0].fqdn #=> String
20014
20206
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
20207
+ # resp.db_instance.domain_memberships[0].ou #=> String
20208
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
20209
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
20210
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
20015
20211
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
20016
20212
  # resp.db_instance.monitoring_interval #=> Integer
20017
20213
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -20176,6 +20372,10 @@ module Aws::RDS
20176
20372
  # resp.db_cluster.domain_memberships[0].status #=> String
20177
20373
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
20178
20374
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
20375
+ # resp.db_cluster.domain_memberships[0].ou #=> String
20376
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
20377
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
20378
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
20179
20379
  # resp.db_cluster.tag_list #=> Array
20180
20380
  # resp.db_cluster.tag_list[0].key #=> String
20181
20381
  # resp.db_cluster.tag_list[0].value #=> String
@@ -20447,6 +20647,10 @@ module Aws::RDS
20447
20647
  # resp.db_cluster.domain_memberships[0].status #=> String
20448
20648
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
20449
20649
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
20650
+ # resp.db_cluster.domain_memberships[0].ou #=> String
20651
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
20652
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
20653
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
20450
20654
  # resp.db_cluster.tag_list #=> Array
20451
20655
  # resp.db_cluster.tag_list[0].key #=> String
20452
20656
  # resp.db_cluster.tag_list[0].value #=> String
@@ -20667,6 +20871,10 @@ module Aws::RDS
20667
20871
  # resp.db_instance.domain_memberships[0].status #=> String
20668
20872
  # resp.db_instance.domain_memberships[0].fqdn #=> String
20669
20873
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
20874
+ # resp.db_instance.domain_memberships[0].ou #=> String
20875
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
20876
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
20877
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
20670
20878
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
20671
20879
  # resp.db_instance.monitoring_interval #=> Integer
20672
20880
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -21895,6 +22103,10 @@ module Aws::RDS
21895
22103
  # resp.db_cluster.domain_memberships[0].status #=> String
21896
22104
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
21897
22105
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
22106
+ # resp.db_cluster.domain_memberships[0].ou #=> String
22107
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
22108
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
22109
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
21898
22110
  # resp.db_cluster.tag_list #=> Array
21899
22111
  # resp.db_cluster.tag_list[0].key #=> String
21900
22112
  # resp.db_cluster.tag_list[0].value #=> String
@@ -22583,6 +22795,10 @@ module Aws::RDS
22583
22795
  # resp.db_cluster.domain_memberships[0].status #=> String
22584
22796
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
22585
22797
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
22798
+ # resp.db_cluster.domain_memberships[0].ou #=> String
22799
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
22800
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
22801
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
22586
22802
  # resp.db_cluster.tag_list #=> Array
22587
22803
  # resp.db_cluster.tag_list[0].key #=> String
22588
22804
  # resp.db_cluster.tag_list[0].value #=> String
@@ -23240,6 +23456,10 @@ module Aws::RDS
23240
23456
  # resp.db_cluster.domain_memberships[0].status #=> String
23241
23457
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
23242
23458
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
23459
+ # resp.db_cluster.domain_memberships[0].ou #=> String
23460
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
23461
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
23462
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
23243
23463
  # resp.db_cluster.tag_list #=> Array
23244
23464
  # resp.db_cluster.tag_list[0].key #=> String
23245
23465
  # resp.db_cluster.tag_list[0].value #=> String
@@ -23541,6 +23761,53 @@ module Aws::RDS
23541
23761
  #
23542
23762
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
23543
23763
  #
23764
+ # @option params [String] :domain_fqdn
23765
+ # Specifies the fully qualified domain name of an Active Directory
23766
+ # domain.
23767
+ #
23768
+ # Constraints:
23769
+ #
23770
+ # * Cannot be greater than 64 characters.
23771
+ #
23772
+ # ^
23773
+ #
23774
+ # Example: `mymanagedADtest.mymanagedAD.mydomain`
23775
+ #
23776
+ # @option params [String] :domain_ou
23777
+ # The Active Directory organizational unit for your DB instance to join.
23778
+ #
23779
+ # Constraints:
23780
+ #
23781
+ # * Must be in the distinguished name format.
23782
+ #
23783
+ # * Cannot be greater than 64 characters.
23784
+ #
23785
+ # Example:
23786
+ # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
23787
+ #
23788
+ # @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.
23791
+ #
23792
+ # Constraints:
23793
+ #
23794
+ # Example:
23795
+ # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
23796
+ #
23797
+ # @option params [Array<String>] :domain_dns_ips
23798
+ # The IPv4 DNS IP addresses of your primary and secondary Active
23799
+ # Directory domain controllers.
23800
+ #
23801
+ # Constraints:
23802
+ #
23803
+ # * Two IP addresses must be provided. If there isn't a secondary
23804
+ # domain controller, use the IP address of the primary domain
23805
+ # controller for both entries in the list.
23806
+ #
23807
+ # ^
23808
+ #
23809
+ # Example: `123.124.125.126,234.235.236.237`
23810
+ #
23544
23811
  # @option params [Boolean] :copy_tags_to_snapshot
23545
23812
  # A value that indicates whether to copy all tags from the restored DB
23546
23813
  # instance to snapshots of the DB instance.
@@ -23825,6 +24092,10 @@ module Aws::RDS
23825
24092
  # tde_credential_password: "String",
23826
24093
  # vpc_security_group_ids: ["String"],
23827
24094
  # domain: "String",
24095
+ # domain_fqdn: "String",
24096
+ # domain_ou: "String",
24097
+ # domain_auth_secret_arn: "String",
24098
+ # domain_dns_ips: ["String"],
23828
24099
  # copy_tags_to_snapshot: false,
23829
24100
  # domain_iam_role_name: "String",
23830
24101
  # enable_iam_database_authentication: false,
@@ -23948,6 +24219,10 @@ module Aws::RDS
23948
24219
  # resp.db_instance.domain_memberships[0].status #=> String
23949
24220
  # resp.db_instance.domain_memberships[0].fqdn #=> String
23950
24221
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
24222
+ # resp.db_instance.domain_memberships[0].ou #=> String
24223
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
24224
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
24225
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
23951
24226
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
23952
24227
  # resp.db_instance.monitoring_interval #=> Integer
23953
24228
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -24676,6 +24951,10 @@ module Aws::RDS
24676
24951
  # resp.db_instance.domain_memberships[0].status #=> String
24677
24952
  # resp.db_instance.domain_memberships[0].fqdn #=> String
24678
24953
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
24954
+ # resp.db_instance.domain_memberships[0].ou #=> String
24955
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
24956
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
24957
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
24679
24958
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
24680
24959
  # resp.db_instance.monitoring_interval #=> Integer
24681
24960
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -25002,6 +25281,57 @@ module Aws::RDS
25002
25281
  #
25003
25282
  # This setting doesn't apply to RDS Custom.
25004
25283
  #
25284
+ # @option params [String] :domain_fqdn
25285
+ # Specifies the fully qualified domain name of an Active Directory
25286
+ # domain.
25287
+ #
25288
+ # Constraints:
25289
+ #
25290
+ # * Cannot be greater than 64 characters.
25291
+ #
25292
+ # ^
25293
+ #
25294
+ # Example: `mymanagedADtest.mymanagedAD.mydomain`
25295
+ #
25296
+ # @option params [String] :domain_ou
25297
+ # The Active Directory organizational unit for your DB instance to join.
25298
+ #
25299
+ # Constraints:
25300
+ #
25301
+ # * Must be in the distinguished name format.
25302
+ #
25303
+ # * Cannot be greater than 64 characters.
25304
+ #
25305
+ # Example:
25306
+ # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
25307
+ #
25308
+ # @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.
25311
+ #
25312
+ # Constraints:
25313
+ #
25314
+ # * Cannot be greater than 64 characters.
25315
+ #
25316
+ # ^
25317
+ #
25318
+ # Example:
25319
+ # `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
25320
+ #
25321
+ # @option params [Array<String>] :domain_dns_ips
25322
+ # The IPv4 DNS IP addresses of your primary and secondary Active
25323
+ # Directory domain controllers.
25324
+ #
25325
+ # Constraints:
25326
+ #
25327
+ # * Two IP addresses must be provided. If there isn't a secondary
25328
+ # domain controller, use the IP address of the primary domain
25329
+ # controller for both entries in the list.
25330
+ #
25331
+ # ^
25332
+ #
25333
+ # Example: `123.124.125.126,234.235.236.237`
25334
+ #
25005
25335
  # @option params [Boolean] :enable_iam_database_authentication
25006
25336
  # A value that indicates whether to enable mapping of Amazon Web
25007
25337
  # Services Identity and Access Management (IAM) accounts to database
@@ -25320,6 +25650,10 @@ module Aws::RDS
25320
25650
  # vpc_security_group_ids: ["String"],
25321
25651
  # domain: "String",
25322
25652
  # domain_iam_role_name: "String",
25653
+ # domain_fqdn: "String",
25654
+ # domain_ou: "String",
25655
+ # domain_auth_secret_arn: "String",
25656
+ # domain_dns_ips: ["String"],
25323
25657
  # enable_iam_database_authentication: false,
25324
25658
  # enable_cloudwatch_logs_exports: ["String"],
25325
25659
  # processor_features: [
@@ -25443,6 +25777,10 @@ module Aws::RDS
25443
25777
  # resp.db_instance.domain_memberships[0].status #=> String
25444
25778
  # resp.db_instance.domain_memberships[0].fqdn #=> String
25445
25779
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
25780
+ # resp.db_instance.domain_memberships[0].ou #=> String
25781
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
25782
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
25783
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
25446
25784
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
25447
25785
  # resp.db_instance.monitoring_interval #=> Integer
25448
25786
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -25835,6 +26173,10 @@ module Aws::RDS
25835
26173
  # resp.db_cluster.domain_memberships[0].status #=> String
25836
26174
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
25837
26175
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
26176
+ # resp.db_cluster.domain_memberships[0].ou #=> String
26177
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
26178
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
26179
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
25838
26180
  # resp.db_cluster.tag_list #=> Array
25839
26181
  # resp.db_cluster.tag_list[0].key #=> String
25840
26182
  # resp.db_cluster.tag_list[0].value #=> String
@@ -26026,6 +26368,10 @@ module Aws::RDS
26026
26368
  # resp.db_instance.domain_memberships[0].status #=> String
26027
26369
  # resp.db_instance.domain_memberships[0].fqdn #=> String
26028
26370
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
26371
+ # resp.db_instance.domain_memberships[0].ou #=> String
26372
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
26373
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
26374
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
26029
26375
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
26030
26376
  # resp.db_instance.monitoring_interval #=> Integer
26031
26377
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -26638,6 +26984,10 @@ module Aws::RDS
26638
26984
  # resp.db_cluster.domain_memberships[0].status #=> String
26639
26985
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
26640
26986
  # resp.db_cluster.domain_memberships[0].iam_role_name #=> String
26987
+ # resp.db_cluster.domain_memberships[0].ou #=> String
26988
+ # resp.db_cluster.domain_memberships[0].auth_secret_arn #=> String
26989
+ # resp.db_cluster.domain_memberships[0].dns_ips #=> Array
26990
+ # resp.db_cluster.domain_memberships[0].dns_ips[0] #=> String
26641
26991
  # resp.db_cluster.tag_list #=> Array
26642
26992
  # resp.db_cluster.tag_list[0].key #=> String
26643
26993
  # resp.db_cluster.tag_list[0].value #=> String
@@ -26836,6 +27186,10 @@ module Aws::RDS
26836
27186
  # resp.db_instance.domain_memberships[0].status #=> String
26837
27187
  # resp.db_instance.domain_memberships[0].fqdn #=> String
26838
27188
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
27189
+ # resp.db_instance.domain_memberships[0].ou #=> String
27190
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
27191
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
27192
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
26839
27193
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
26840
27194
  # resp.db_instance.monitoring_interval #=> Integer
26841
27195
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -27336,6 +27690,10 @@ module Aws::RDS
27336
27690
  # resp.db_instance.domain_memberships[0].status #=> String
27337
27691
  # resp.db_instance.domain_memberships[0].fqdn #=> String
27338
27692
  # resp.db_instance.domain_memberships[0].iam_role_name #=> String
27693
+ # resp.db_instance.domain_memberships[0].ou #=> String
27694
+ # resp.db_instance.domain_memberships[0].auth_secret_arn #=> String
27695
+ # resp.db_instance.domain_memberships[0].dns_ips #=> Array
27696
+ # resp.db_instance.domain_memberships[0].dns_ips[0] #=> String
27339
27697
  # resp.db_instance.copy_tags_to_snapshot #=> Boolean
27340
27698
  # resp.db_instance.monitoring_interval #=> Integer
27341
27699
  # resp.db_instance.enhanced_monitoring_resource_arn #=> String
@@ -27410,7 +27768,7 @@ module Aws::RDS
27410
27768
  params: params,
27411
27769
  config: config)
27412
27770
  context[:gem_name] = 'aws-sdk-rds'
27413
- context[:gem_version] = '1.182.0'
27771
+ context[:gem_version] = '1.183.0'
27414
27772
  Seahorse::Client::Request.new(handlers, context)
27415
27773
  end
27416
27774