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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +359 -1
- data/lib/aws-sdk-rds/client_api.rb +24 -0
- data/lib/aws-sdk-rds/db_instance.rb +190 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +47 -0
- data/lib/aws-sdk-rds/resource.rb +45 -0
- data/lib/aws-sdk-rds/types.rb +305 -2
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
@@ -1006,6 +1006,10 @@ module Aws::RDS
|
|
1006
1006
|
CreateDBInstanceMessage.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "StorageEncrypted"))
|
1007
1007
|
CreateDBInstanceMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1008
1008
|
CreateDBInstanceMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
1009
|
+
CreateDBInstanceMessage.add_member(:domain_fqdn, Shapes::ShapeRef.new(shape: String, location_name: "DomainFqdn"))
|
1010
|
+
CreateDBInstanceMessage.add_member(:domain_ou, Shapes::ShapeRef.new(shape: String, location_name: "DomainOu"))
|
1011
|
+
CreateDBInstanceMessage.add_member(:domain_auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "DomainAuthSecretArn"))
|
1012
|
+
CreateDBInstanceMessage.add_member(:domain_dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DomainDnsIps"))
|
1009
1013
|
CreateDBInstanceMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1010
1014
|
CreateDBInstanceMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
1011
1015
|
CreateDBInstanceMessage.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
@@ -1060,6 +1064,10 @@ module Aws::RDS
|
|
1060
1064
|
CreateDBInstanceReadReplicaMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
1061
1065
|
CreateDBInstanceReadReplicaMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
1062
1066
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
1067
|
+
CreateDBInstanceReadReplicaMessage.add_member(:domain_fqdn, Shapes::ShapeRef.new(shape: String, location_name: "DomainFqdn"))
|
1068
|
+
CreateDBInstanceReadReplicaMessage.add_member(:domain_ou, Shapes::ShapeRef.new(shape: String, location_name: "DomainOu"))
|
1069
|
+
CreateDBInstanceReadReplicaMessage.add_member(:domain_auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "DomainAuthSecretArn"))
|
1070
|
+
CreateDBInstanceReadReplicaMessage.add_member(:domain_dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DomainDnsIps"))
|
1063
1071
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
1064
1072
|
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1065
1073
|
CreateDBInstanceReadReplicaMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
@@ -2249,6 +2257,9 @@ module Aws::RDS
|
|
2249
2257
|
DomainMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
2250
2258
|
DomainMembership.add_member(:fqdn, Shapes::ShapeRef.new(shape: String, location_name: "FQDN"))
|
2251
2259
|
DomainMembership.add_member(:iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "IAMRoleName"))
|
2260
|
+
DomainMembership.add_member(:ou, Shapes::ShapeRef.new(shape: String, location_name: "OU"))
|
2261
|
+
DomainMembership.add_member(:auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "AuthSecretArn"))
|
2262
|
+
DomainMembership.add_member(:dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DnsIps"))
|
2252
2263
|
DomainMembership.struct_class = Types::DomainMembership
|
2253
2264
|
|
2254
2265
|
DomainMembershipList.member = Shapes::ShapeRef.new(shape: DomainMembership, location_name: "DomainMembership")
|
@@ -2643,12 +2654,17 @@ module Aws::RDS
|
|
2643
2654
|
ModifyDBInstanceMessage.add_member(:tde_credential_password, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialPassword"))
|
2644
2655
|
ModifyDBInstanceMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
2645
2656
|
ModifyDBInstanceMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
2657
|
+
ModifyDBInstanceMessage.add_member(:domain_fqdn, Shapes::ShapeRef.new(shape: String, location_name: "DomainFqdn"))
|
2658
|
+
ModifyDBInstanceMessage.add_member(:domain_ou, Shapes::ShapeRef.new(shape: String, location_name: "DomainOu"))
|
2659
|
+
ModifyDBInstanceMessage.add_member(:domain_auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "DomainAuthSecretArn"))
|
2660
|
+
ModifyDBInstanceMessage.add_member(:domain_dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DomainDnsIps"))
|
2646
2661
|
ModifyDBInstanceMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
2647
2662
|
ModifyDBInstanceMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
2648
2663
|
ModifyDBInstanceMessage.add_member(:db_port_number, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "DBPortNumber"))
|
2649
2664
|
ModifyDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
2650
2665
|
ModifyDBInstanceMessage.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
2651
2666
|
ModifyDBInstanceMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
2667
|
+
ModifyDBInstanceMessage.add_member(:disable_domain, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DisableDomain"))
|
2652
2668
|
ModifyDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
2653
2669
|
ModifyDBInstanceMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
2654
2670
|
ModifyDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
@@ -3283,6 +3299,10 @@ module Aws::RDS
|
|
3283
3299
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:tde_credential_password, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialPassword"))
|
3284
3300
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
|
3285
3301
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
3302
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain_fqdn, Shapes::ShapeRef.new(shape: String, location_name: "DomainFqdn"))
|
3303
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain_ou, Shapes::ShapeRef.new(shape: String, location_name: "DomainOu"))
|
3304
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain_auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "DomainAuthSecretArn"))
|
3305
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain_dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DomainDnsIps"))
|
3286
3306
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
3287
3307
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
3288
3308
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
@@ -3380,6 +3400,10 @@ module Aws::RDS
|
|
3380
3400
|
RestoreDBInstanceToPointInTimeMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
|
3381
3401
|
RestoreDBInstanceToPointInTimeMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
3382
3402
|
RestoreDBInstanceToPointInTimeMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
3403
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:domain_fqdn, Shapes::ShapeRef.new(shape: String, location_name: "DomainFqdn"))
|
3404
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:domain_ou, Shapes::ShapeRef.new(shape: String, location_name: "DomainOu"))
|
3405
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:domain_auth_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "DomainAuthSecretArn"))
|
3406
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:domain_dns_ips, Shapes::ShapeRef.new(shape: StringList, location_name: "DomainDnsIps"))
|
3383
3407
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
3384
3408
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
|
3385
3409
|
RestoreDBInstanceToPointInTimeMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
@@ -936,6 +936,10 @@ module Aws::RDS
|
|
936
936
|
# storage_encrypted: false,
|
937
937
|
# kms_key_id: "String",
|
938
938
|
# domain: "String",
|
939
|
+
# domain_fqdn: "String",
|
940
|
+
# domain_ou: "String",
|
941
|
+
# domain_auth_secret_arn: "String",
|
942
|
+
# domain_dns_ips: ["String"],
|
939
943
|
# copy_tags_to_snapshot: false,
|
940
944
|
# monitoring_interval: 1,
|
941
945
|
# monitoring_role_arn: "String",
|
@@ -1665,6 +1669,47 @@ module Aws::RDS
|
|
1665
1669
|
#
|
1666
1670
|
#
|
1667
1671
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
1672
|
+
# @option options [String] :domain_fqdn
|
1673
|
+
# Specifies the fully qualified domain name of an Active Directory
|
1674
|
+
# domain.
|
1675
|
+
#
|
1676
|
+
# Constraints:
|
1677
|
+
#
|
1678
|
+
# * Cannot be greater than 64 characters.
|
1679
|
+
#
|
1680
|
+
# ^
|
1681
|
+
#
|
1682
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
1683
|
+
# @option options [String] :domain_ou
|
1684
|
+
# The Active Directory organizational unit for your DB instance to join.
|
1685
|
+
#
|
1686
|
+
# Constraints:
|
1687
|
+
#
|
1688
|
+
# * Must be in the distinguished name format.
|
1689
|
+
#
|
1690
|
+
# * Cannot be greater than 64 characters.
|
1691
|
+
#
|
1692
|
+
# Example:
|
1693
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
1694
|
+
# @option options [String] :domain_auth_secret_arn
|
1695
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
1696
|
+
# for the user performing the domain join.
|
1697
|
+
#
|
1698
|
+
# Example:
|
1699
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
1700
|
+
# @option options [Array<String>] :domain_dns_ips
|
1701
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
1702
|
+
# Directory domain controllers.
|
1703
|
+
#
|
1704
|
+
# Constraints:
|
1705
|
+
#
|
1706
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
1707
|
+
# domain controller, use the IP address of the primary domain
|
1708
|
+
# controller for both entries in the list.
|
1709
|
+
#
|
1710
|
+
# ^
|
1711
|
+
#
|
1712
|
+
# Example: `123.124.125.126,234.235.236.237`
|
1668
1713
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1669
1714
|
# Spcifies whether to copy tags from the DB instance to snapshots of the
|
1670
1715
|
# DB instance. By default, tags are not copied.
|
@@ -2046,6 +2091,10 @@ module Aws::RDS
|
|
2046
2091
|
# deletion_protection: false,
|
2047
2092
|
# domain: "String",
|
2048
2093
|
# domain_iam_role_name: "String",
|
2094
|
+
# domain_fqdn: "String",
|
2095
|
+
# domain_ou: "String",
|
2096
|
+
# domain_auth_secret_arn: "String",
|
2097
|
+
# domain_dns_ips: ["String"],
|
2049
2098
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
2050
2099
|
# max_allocated_storage: 1,
|
2051
2100
|
# custom_iam_instance_profile: "String",
|
@@ -2440,6 +2489,47 @@ module Aws::RDS
|
|
2440
2489
|
# Directory Service.
|
2441
2490
|
#
|
2442
2491
|
# This setting doesn't apply to RDS Custom.
|
2492
|
+
# @option options [String] :domain_fqdn
|
2493
|
+
# Specifies the fully qualified domain name of an Active Directory
|
2494
|
+
# domain.
|
2495
|
+
#
|
2496
|
+
# Constraints:
|
2497
|
+
#
|
2498
|
+
# * Cannot be greater than 64 characters.
|
2499
|
+
#
|
2500
|
+
# ^
|
2501
|
+
#
|
2502
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
2503
|
+
# @option options [String] :domain_ou
|
2504
|
+
# The Active Directory organizational unit for your DB instance to join.
|
2505
|
+
#
|
2506
|
+
# Constraints:
|
2507
|
+
#
|
2508
|
+
# * Must be in the distinguished name format.
|
2509
|
+
#
|
2510
|
+
# * Cannot be greater than 64 characters.
|
2511
|
+
#
|
2512
|
+
# Example:
|
2513
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
2514
|
+
# @option options [String] :domain_auth_secret_arn
|
2515
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
2516
|
+
# for the user performing the domain join.
|
2517
|
+
#
|
2518
|
+
# Example:
|
2519
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
2520
|
+
# @option options [Array<String>] :domain_dns_ips
|
2521
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
2522
|
+
# Directory domain controllers.
|
2523
|
+
#
|
2524
|
+
# Constraints:
|
2525
|
+
#
|
2526
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
2527
|
+
# domain controller, use the IP address of the primary domain
|
2528
|
+
# controller for both entries in the list.
|
2529
|
+
#
|
2530
|
+
# ^
|
2531
|
+
#
|
2532
|
+
# Example: `123.124.125.126,234.235.236.237`
|
2443
2533
|
# @option options [String] :replica_mode
|
2444
2534
|
# The open mode of the replica database: mounted or read-only.
|
2445
2535
|
#
|
@@ -2724,12 +2814,17 @@ module Aws::RDS
|
|
2724
2814
|
# tde_credential_password: "String",
|
2725
2815
|
# ca_certificate_identifier: "String",
|
2726
2816
|
# domain: "String",
|
2817
|
+
# domain_fqdn: "String",
|
2818
|
+
# domain_ou: "String",
|
2819
|
+
# domain_auth_secret_arn: "String",
|
2820
|
+
# domain_dns_ips: ["String"],
|
2727
2821
|
# copy_tags_to_snapshot: false,
|
2728
2822
|
# monitoring_interval: 1,
|
2729
2823
|
# db_port_number: 1,
|
2730
2824
|
# publicly_accessible: false,
|
2731
2825
|
# monitoring_role_arn: "String",
|
2732
2826
|
# domain_iam_role_name: "String",
|
2827
|
+
# disable_domain: false,
|
2733
2828
|
# promotion_tier: 1,
|
2734
2829
|
# enable_iam_database_authentication: false,
|
2735
2830
|
# enable_performance_insights: false,
|
@@ -3231,6 +3326,47 @@ module Aws::RDS
|
|
3231
3326
|
#
|
3232
3327
|
#
|
3233
3328
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3329
|
+
# @option options [String] :domain_fqdn
|
3330
|
+
# Specifies the fully qualified domain name of an Active Directory
|
3331
|
+
# domain.
|
3332
|
+
#
|
3333
|
+
# Constraints:
|
3334
|
+
#
|
3335
|
+
# * Cannot be greater than 64 characters.
|
3336
|
+
#
|
3337
|
+
# ^
|
3338
|
+
#
|
3339
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
3340
|
+
# @option options [String] :domain_ou
|
3341
|
+
# The Active Directory organizational unit for your DB instance to join.
|
3342
|
+
#
|
3343
|
+
# Constraints:
|
3344
|
+
#
|
3345
|
+
# * Must be in the distinguished name format.
|
3346
|
+
#
|
3347
|
+
# * Cannot be greater than 64 characters.
|
3348
|
+
#
|
3349
|
+
# Example:
|
3350
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
3351
|
+
# @option options [String] :domain_auth_secret_arn
|
3352
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
3353
|
+
# for the user performing the domain join.
|
3354
|
+
#
|
3355
|
+
# Example:
|
3356
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
3357
|
+
# @option options [Array<String>] :domain_dns_ips
|
3358
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
3359
|
+
# Directory domain controllers.
|
3360
|
+
#
|
3361
|
+
# Constraints:
|
3362
|
+
#
|
3363
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
3364
|
+
# domain controller, use the IP address of the primary domain
|
3365
|
+
# controller for both entries in the list.
|
3366
|
+
#
|
3367
|
+
# ^
|
3368
|
+
#
|
3369
|
+
# Example: `123.124.125.126,234.235.236.237`
|
3234
3370
|
# @option options [Boolean] :copy_tags_to_snapshot
|
3235
3371
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
3236
3372
|
# of the DB instance. By default, tags aren't copied.
|
@@ -3326,6 +3462,9 @@ module Aws::RDS
|
|
3326
3462
|
# Service.
|
3327
3463
|
#
|
3328
3464
|
# This setting doesn't apply to RDS Custom DB instances.
|
3465
|
+
# @option options [Boolean] :disable_domain
|
3466
|
+
# Boolean. If present, removes the instance from the Active Directory
|
3467
|
+
# domain.
|
3329
3468
|
# @option options [Integer] :promotion_tier
|
3330
3469
|
# The order of priority in which an Aurora Replica is promoted to the
|
3331
3470
|
# primary instance after a failure of the existing primary instance. For
|
@@ -3789,6 +3928,10 @@ module Aws::RDS
|
|
3789
3928
|
# vpc_security_group_ids: ["String"],
|
3790
3929
|
# domain: "String",
|
3791
3930
|
# domain_iam_role_name: "String",
|
3931
|
+
# domain_fqdn: "String",
|
3932
|
+
# domain_ou: "String",
|
3933
|
+
# domain_auth_secret_arn: "String",
|
3934
|
+
# domain_dns_ips: ["String"],
|
3792
3935
|
# enable_iam_database_authentication: false,
|
3793
3936
|
# enable_cloudwatch_logs_exports: ["String"],
|
3794
3937
|
# processor_features: [
|
@@ -4025,6 +4168,53 @@ module Aws::RDS
|
|
4025
4168
|
# the Directory Service.
|
4026
4169
|
#
|
4027
4170
|
# This setting doesn't apply to RDS Custom.
|
4171
|
+
# @option options [String] :domain_fqdn
|
4172
|
+
# Specifies the fully qualified domain name of an Active Directory
|
4173
|
+
# domain.
|
4174
|
+
#
|
4175
|
+
# Constraints:
|
4176
|
+
#
|
4177
|
+
# * Cannot be greater than 64 characters.
|
4178
|
+
#
|
4179
|
+
# ^
|
4180
|
+
#
|
4181
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
4182
|
+
# @option options [String] :domain_ou
|
4183
|
+
# The Active Directory organizational unit for your DB instance to join.
|
4184
|
+
#
|
4185
|
+
# Constraints:
|
4186
|
+
#
|
4187
|
+
# * Must be in the distinguished name format.
|
4188
|
+
#
|
4189
|
+
# * Cannot be greater than 64 characters.
|
4190
|
+
#
|
4191
|
+
# Example:
|
4192
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
4193
|
+
# @option options [String] :domain_auth_secret_arn
|
4194
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
4195
|
+
# for the user performing the domain join.
|
4196
|
+
#
|
4197
|
+
# Constraints:
|
4198
|
+
#
|
4199
|
+
# * Cannot be greater than 64 characters.
|
4200
|
+
#
|
4201
|
+
# ^
|
4202
|
+
#
|
4203
|
+
# Example:
|
4204
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
4205
|
+
# @option options [Array<String>] :domain_dns_ips
|
4206
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
4207
|
+
# Directory domain controllers.
|
4208
|
+
#
|
4209
|
+
# Constraints:
|
4210
|
+
#
|
4211
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
4212
|
+
# domain controller, use the IP address of the primary domain
|
4213
|
+
# controller for both entries in the list.
|
4214
|
+
#
|
4215
|
+
# ^
|
4216
|
+
#
|
4217
|
+
# Example: `123.124.125.126,234.235.236.237`
|
4028
4218
|
# @option options [Boolean] :enable_iam_database_authentication
|
4029
4219
|
# A value that indicates whether to enable mapping of Amazon Web
|
4030
4220
|
# Services Identity and Access Management (IAM) accounts to database
|
@@ -658,6 +658,10 @@ module Aws::RDS
|
|
658
658
|
# tde_credential_password: "String",
|
659
659
|
# vpc_security_group_ids: ["String"],
|
660
660
|
# domain: "String",
|
661
|
+
# domain_fqdn: "String",
|
662
|
+
# domain_ou: "String",
|
663
|
+
# domain_auth_secret_arn: "String",
|
664
|
+
# domain_dns_ips: ["String"],
|
661
665
|
# copy_tags_to_snapshot: false,
|
662
666
|
# domain_iam_role_name: "String",
|
663
667
|
# enable_iam_database_authentication: false,
|
@@ -875,6 +879,49 @@ module Aws::RDS
|
|
875
879
|
#
|
876
880
|
#
|
877
881
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
882
|
+
# @option options [String] :domain_fqdn
|
883
|
+
# Specifies the fully qualified domain name of an Active Directory
|
884
|
+
# domain.
|
885
|
+
#
|
886
|
+
# Constraints:
|
887
|
+
#
|
888
|
+
# * Cannot be greater than 64 characters.
|
889
|
+
#
|
890
|
+
# ^
|
891
|
+
#
|
892
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
893
|
+
# @option options [String] :domain_ou
|
894
|
+
# The Active Directory organizational unit for your DB instance to join.
|
895
|
+
#
|
896
|
+
# Constraints:
|
897
|
+
#
|
898
|
+
# * Must be in the distinguished name format.
|
899
|
+
#
|
900
|
+
# * Cannot be greater than 64 characters.
|
901
|
+
#
|
902
|
+
# Example:
|
903
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
904
|
+
# @option options [String] :domain_auth_secret_arn
|
905
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
906
|
+
# for the user performing the domain join.
|
907
|
+
#
|
908
|
+
# Constraints:
|
909
|
+
#
|
910
|
+
# Example:
|
911
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
912
|
+
# @option options [Array<String>] :domain_dns_ips
|
913
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
914
|
+
# Directory domain controllers.
|
915
|
+
#
|
916
|
+
# Constraints:
|
917
|
+
#
|
918
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
919
|
+
# domain controller, use the IP address of the primary domain
|
920
|
+
# controller for both entries in the list.
|
921
|
+
#
|
922
|
+
# ^
|
923
|
+
#
|
924
|
+
# Example: `123.124.125.126,234.235.236.237`
|
878
925
|
# @option options [Boolean] :copy_tags_to_snapshot
|
879
926
|
# A value that indicates whether to copy all tags from the restored DB
|
880
927
|
# instance to snapshots of the DB instance.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -991,6 +991,10 @@ module Aws::RDS
|
|
991
991
|
# storage_encrypted: false,
|
992
992
|
# kms_key_id: "String",
|
993
993
|
# domain: "String",
|
994
|
+
# domain_fqdn: "String",
|
995
|
+
# domain_ou: "String",
|
996
|
+
# domain_auth_secret_arn: "String",
|
997
|
+
# domain_dns_ips: ["String"],
|
994
998
|
# copy_tags_to_snapshot: false,
|
995
999
|
# monitoring_interval: 1,
|
996
1000
|
# monitoring_role_arn: "String",
|
@@ -1733,6 +1737,47 @@ module Aws::RDS
|
|
1733
1737
|
#
|
1734
1738
|
#
|
1735
1739
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
1740
|
+
# @option options [String] :domain_fqdn
|
1741
|
+
# Specifies the fully qualified domain name of an Active Directory
|
1742
|
+
# domain.
|
1743
|
+
#
|
1744
|
+
# Constraints:
|
1745
|
+
#
|
1746
|
+
# * Cannot be greater than 64 characters.
|
1747
|
+
#
|
1748
|
+
# ^
|
1749
|
+
#
|
1750
|
+
# Example: `mymanagedADtest.mymanagedAD.mydomain`
|
1751
|
+
# @option options [String] :domain_ou
|
1752
|
+
# The Active Directory organizational unit for your DB instance to join.
|
1753
|
+
#
|
1754
|
+
# Constraints:
|
1755
|
+
#
|
1756
|
+
# * Must be in the distinguished name format.
|
1757
|
+
#
|
1758
|
+
# * Cannot be greater than 64 characters.
|
1759
|
+
#
|
1760
|
+
# Example:
|
1761
|
+
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
1762
|
+
# @option options [String] :domain_auth_secret_arn
|
1763
|
+
# The ARN for the Secrets Manager secret that contains the credentials
|
1764
|
+
# for the user performing the domain join.
|
1765
|
+
#
|
1766
|
+
# Example:
|
1767
|
+
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
1768
|
+
# @option options [Array<String>] :domain_dns_ips
|
1769
|
+
# The IPv4 DNS IP addresses of your primary and secondary Active
|
1770
|
+
# Directory domain controllers.
|
1771
|
+
#
|
1772
|
+
# Constraints:
|
1773
|
+
#
|
1774
|
+
# * Two IP addresses must be provided. If there isn't a secondary
|
1775
|
+
# domain controller, use the IP address of the primary domain
|
1776
|
+
# controller for both entries in the list.
|
1777
|
+
#
|
1778
|
+
# ^
|
1779
|
+
#
|
1780
|
+
# Example: `123.124.125.126,234.235.236.237`
|
1736
1781
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1737
1782
|
# Spcifies whether to copy tags from the DB instance to snapshots of the
|
1738
1783
|
# DB instance. By default, tags are not copied.
|