aws-sdk-rds 1.290.0 → 1.292.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +148 -3
- data/lib/aws-sdk-rds/client_api.rb +13 -0
- data/lib/aws-sdk-rds/db_cluster.rb +35 -2
- data/lib/aws-sdk-rds/db_instance.rb +28 -0
- data/lib/aws-sdk-rds/resource.rb +30 -0
- data/lib/aws-sdk-rds/types.rb +194 -9
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +12 -5
- data/sig/db_cluster.rbs +3 -1
- data/sig/db_instance.rbs +4 -2
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42b93d780fb78f85eb1de366656e636b15a2cc5c0425ef2db5c18449615ecb8f
|
4
|
+
data.tar.gz: 5a0622f998010132c66e07a76cc6d2611d8219af534305f131ad3b173cc169d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 938b2be89e640b3b87e6bc8435fb90026c7b203f890a17d922c21451e2695e3634291397fdefb3e008f329d25bedffbb6318f19b06afe552c47231f9e435e6ab
|
7
|
+
data.tar.gz: 98bac05c5e70fa46467c0bb62f2fc1b10b25537046c60303db9a1533f162be882055cf43db323f6406a0e3a779c89e2821f9b47acce10899447d954e327979c5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.292.0 (2025-09-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6
|
8
|
+
|
9
|
+
1.291.0 (2025-09-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for MasterUserAuthenticationType parameter on CreateDBInstance, ModifyDBInstance, CreateDBCluster, and ModifyDBCluster operations.
|
13
|
+
|
4
14
|
1.290.0 (2025-08-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.292.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3631,6 +3631,22 @@ module Aws::RDS
|
|
3631
3631
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3632
3632
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3633
3633
|
#
|
3634
|
+
# @option params [String] :master_user_authentication_type
|
3635
|
+
# Specifies the authentication type for the master user. With IAM master
|
3636
|
+
# user authentication, you can configure the master DB user with IAM
|
3637
|
+
# database authentication when you create a DB cluster.
|
3638
|
+
#
|
3639
|
+
# You can specify one of the following values:
|
3640
|
+
#
|
3641
|
+
# * `password` - Use standard database authentication with a password.
|
3642
|
+
#
|
3643
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
3644
|
+
#
|
3645
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3646
|
+
#
|
3647
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
3648
|
+
# engines.
|
3649
|
+
#
|
3634
3650
|
# @option params [String] :source_region
|
3635
3651
|
# The source region of the snapshot. This is only needed when the
|
3636
3652
|
# shapshot is encrypted and in a different region.
|
@@ -3846,6 +3862,7 @@ module Aws::RDS
|
|
3846
3862
|
# enable_local_write_forwarding: false,
|
3847
3863
|
# ca_certificate_identifier: "String",
|
3848
3864
|
# engine_lifecycle_support: "String",
|
3865
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3849
3866
|
# source_region: "String",
|
3850
3867
|
# })
|
3851
3868
|
#
|
@@ -5762,6 +5779,20 @@ module Aws::RDS
|
|
5762
5779
|
#
|
5763
5780
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
5764
5781
|
#
|
5782
|
+
# @option params [String] :master_user_authentication_type
|
5783
|
+
# Specifies the authentication type for the master user. With IAM master
|
5784
|
+
# user authentication, you can configure the master DB user with IAM
|
5785
|
+
# database authentication when you create a DB instance.
|
5786
|
+
#
|
5787
|
+
# You can specify one of the following values:
|
5788
|
+
#
|
5789
|
+
# * `password` - Use standard database authentication with a password.
|
5790
|
+
#
|
5791
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
5792
|
+
#
|
5793
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
5794
|
+
# engines.
|
5795
|
+
#
|
5765
5796
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5766
5797
|
#
|
5767
5798
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5953,6 +5984,7 @@ module Aws::RDS
|
|
5953
5984
|
# dedicated_log_volume: false,
|
5954
5985
|
# multi_tenant: false,
|
5955
5986
|
# engine_lifecycle_support: "String",
|
5987
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
5956
5988
|
# })
|
5957
5989
|
#
|
5958
5990
|
# @example Response structure
|
@@ -7335,6 +7367,49 @@ module Aws::RDS
|
|
7335
7367
|
# An optional set of key-value pairs to associate arbitrary data of your
|
7336
7368
|
# choosing with the proxy.
|
7337
7369
|
#
|
7370
|
+
# @option params [String] :endpoint_network_type
|
7371
|
+
# The network type of the DB proxy endpoint. The network type determines
|
7372
|
+
# the IP version that the proxy endpoint supports.
|
7373
|
+
#
|
7374
|
+
# Valid values:
|
7375
|
+
#
|
7376
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
7377
|
+
#
|
7378
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
7379
|
+
#
|
7380
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
7381
|
+
#
|
7382
|
+
# Default: `IPV4`
|
7383
|
+
#
|
7384
|
+
# Constraints:
|
7385
|
+
#
|
7386
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
7387
|
+
# an IPv6 CIDR block.
|
7388
|
+
#
|
7389
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
7390
|
+
# `dedicated`.
|
7391
|
+
#
|
7392
|
+
# @option params [String] :target_connection_network_type
|
7393
|
+
# The network type that the proxy uses to connect to the target
|
7394
|
+
# database. The network type determines the IP version that the proxy
|
7395
|
+
# uses for connections to the database.
|
7396
|
+
#
|
7397
|
+
# Valid values:
|
7398
|
+
#
|
7399
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
7400
|
+
#
|
7401
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
7402
|
+
#
|
7403
|
+
# Default: `IPV4`
|
7404
|
+
#
|
7405
|
+
# Constraints:
|
7406
|
+
#
|
7407
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
7408
|
+
# RDS doesn't support IPv6-only databases.
|
7409
|
+
#
|
7410
|
+
# * All targets registered with the proxy must be compatible with the
|
7411
|
+
# specified network type.
|
7412
|
+
#
|
7338
7413
|
# @return [Types::CreateDBProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7339
7414
|
#
|
7340
7415
|
# * {Types::CreateDBProxyResponse#db_proxy #db_proxy} => Types::DBProxy
|
@@ -7366,6 +7441,8 @@ module Aws::RDS
|
|
7366
7441
|
# value: "String",
|
7367
7442
|
# },
|
7368
7443
|
# ],
|
7444
|
+
# endpoint_network_type: "IPV4", # accepts IPV4, IPV6, DUAL
|
7445
|
+
# target_connection_network_type: "IPV4", # accepts IPV4, IPV6
|
7369
7446
|
# })
|
7370
7447
|
#
|
7371
7448
|
# @example Response structure
|
@@ -7393,6 +7470,8 @@ module Aws::RDS
|
|
7393
7470
|
# resp.db_proxy.debug_logging #=> Boolean
|
7394
7471
|
# resp.db_proxy.created_date #=> Time
|
7395
7472
|
# resp.db_proxy.updated_date #=> Time
|
7473
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
7474
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
7396
7475
|
#
|
7397
7476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy AWS API Documentation
|
7398
7477
|
#
|
@@ -7444,6 +7523,28 @@ module Aws::RDS
|
|
7444
7523
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7445
7524
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7446
7525
|
#
|
7526
|
+
# @option params [String] :endpoint_network_type
|
7527
|
+
# The network type of the DB proxy endpoint. The network type determines
|
7528
|
+
# the IP version that the proxy endpoint supports.
|
7529
|
+
#
|
7530
|
+
# Valid values:
|
7531
|
+
#
|
7532
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
7533
|
+
#
|
7534
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
7535
|
+
#
|
7536
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
7537
|
+
#
|
7538
|
+
# Default: `IPV4`
|
7539
|
+
#
|
7540
|
+
# Constraints:
|
7541
|
+
#
|
7542
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
7543
|
+
# an IPv6 CIDR block.
|
7544
|
+
#
|
7545
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
7546
|
+
# `dedicated`.
|
7547
|
+
#
|
7447
7548
|
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7448
7549
|
#
|
7449
7550
|
# * {Types::CreateDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
@@ -7462,6 +7563,7 @@ module Aws::RDS
|
|
7462
7563
|
# value: "String",
|
7463
7564
|
# },
|
7464
7565
|
# ],
|
7566
|
+
# endpoint_network_type: "IPV4", # accepts IPV4, IPV6, DUAL
|
7465
7567
|
# })
|
7466
7568
|
#
|
7467
7569
|
# @example Response structure
|
@@ -7479,6 +7581,7 @@ module Aws::RDS
|
|
7479
7581
|
# resp.db_proxy_endpoint.created_date #=> Time
|
7480
7582
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
7481
7583
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
7584
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
7482
7585
|
#
|
7483
7586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint AWS API Documentation
|
7484
7587
|
#
|
@@ -10285,6 +10388,8 @@ module Aws::RDS
|
|
10285
10388
|
# resp.db_proxy.debug_logging #=> Boolean
|
10286
10389
|
# resp.db_proxy.created_date #=> Time
|
10287
10390
|
# resp.db_proxy.updated_date #=> Time
|
10391
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
10392
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
10288
10393
|
#
|
10289
10394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxy AWS API Documentation
|
10290
10395
|
#
|
@@ -10329,6 +10434,7 @@ module Aws::RDS
|
|
10329
10434
|
# resp.db_proxy_endpoint.created_date #=> Time
|
10330
10435
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
10331
10436
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
10437
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
10332
10438
|
#
|
10333
10439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint AWS API Documentation
|
10334
10440
|
#
|
@@ -14228,6 +14334,8 @@ module Aws::RDS
|
|
14228
14334
|
# resp.db_proxies[0].debug_logging #=> Boolean
|
14229
14335
|
# resp.db_proxies[0].created_date #=> Time
|
14230
14336
|
# resp.db_proxies[0].updated_date #=> Time
|
14337
|
+
# resp.db_proxies[0].endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
14338
|
+
# resp.db_proxies[0].target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
14231
14339
|
# resp.marker #=> String
|
14232
14340
|
#
|
14233
14341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies AWS API Documentation
|
@@ -14307,6 +14415,7 @@ module Aws::RDS
|
|
14307
14415
|
# resp.db_proxy_endpoints[0].created_date #=> Time
|
14308
14416
|
# resp.db_proxy_endpoints[0].target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
14309
14417
|
# resp.db_proxy_endpoints[0].is_default #=> Boolean
|
14418
|
+
# resp.db_proxy_endpoints[0].endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
14310
14419
|
# resp.marker #=> String
|
14311
14420
|
#
|
14312
14421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints AWS API Documentation
|
@@ -19580,8 +19689,9 @@ module Aws::RDS
|
|
19580
19689
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
19581
19690
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
19582
19691
|
#
|
19583
|
-
# If you change the value from `advanced` to `standard`, you
|
19584
|
-
#
|
19692
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
19693
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
19694
|
+
# database counter and per-query metrics.
|
19585
19695
|
#
|
19586
19696
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19587
19697
|
#
|
@@ -19817,6 +19927,22 @@ module Aws::RDS
|
|
19817
19927
|
#
|
19818
19928
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
19819
19929
|
#
|
19930
|
+
# @option params [String] :master_user_authentication_type
|
19931
|
+
# Specifies the authentication type for the master user. With IAM master
|
19932
|
+
# user authentication, you can change the master DB user to use IAM
|
19933
|
+
# database authentication.
|
19934
|
+
#
|
19935
|
+
# You can specify one of the following values:
|
19936
|
+
#
|
19937
|
+
# * `password` - Use standard database authentication with a password.
|
19938
|
+
#
|
19939
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
19940
|
+
#
|
19941
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19942
|
+
#
|
19943
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
19944
|
+
# engines.
|
19945
|
+
#
|
19820
19946
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19821
19947
|
#
|
19822
19948
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -19959,6 +20085,7 @@ module Aws::RDS
|
|
19959
20085
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
19960
20086
|
# enable_limitless_database: false,
|
19961
20087
|
# ca_certificate_identifier: "String",
|
20088
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
19962
20089
|
# })
|
19963
20090
|
#
|
19964
20091
|
# @example Response structure
|
@@ -21622,6 +21749,20 @@ module Aws::RDS
|
|
21622
21749
|
# configuration. When you specify this parameter, you must also specify
|
21623
21750
|
# `ApplyImmediately`.
|
21624
21751
|
#
|
21752
|
+
# @option params [String] :master_user_authentication_type
|
21753
|
+
# Specifies the authentication type for the master user. With IAM master
|
21754
|
+
# user authentication, you can change the master DB user to use IAM
|
21755
|
+
# database authentication.
|
21756
|
+
#
|
21757
|
+
# You can specify one of the following values:
|
21758
|
+
#
|
21759
|
+
# * `password` - Use standard database authentication with a password.
|
21760
|
+
#
|
21761
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
21762
|
+
#
|
21763
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
21764
|
+
# engines.
|
21765
|
+
#
|
21625
21766
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21626
21767
|
#
|
21627
21768
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -21749,6 +21890,7 @@ module Aws::RDS
|
|
21749
21890
|
# engine: "String",
|
21750
21891
|
# dedicated_log_volume: false,
|
21751
21892
|
# multi_tenant: false,
|
21893
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
21752
21894
|
# })
|
21753
21895
|
#
|
21754
21896
|
# @example Response structure
|
@@ -22139,6 +22281,8 @@ module Aws::RDS
|
|
22139
22281
|
# resp.db_proxy.debug_logging #=> Boolean
|
22140
22282
|
# resp.db_proxy.created_date #=> Time
|
22141
22283
|
# resp.db_proxy.updated_date #=> Time
|
22284
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
22285
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
22142
22286
|
#
|
22143
22287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxy AWS API Documentation
|
22144
22288
|
#
|
@@ -22194,6 +22338,7 @@ module Aws::RDS
|
|
22194
22338
|
# resp.db_proxy_endpoint.created_date #=> Time
|
22195
22339
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
22196
22340
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
22341
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
22197
22342
|
#
|
22198
22343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint AWS API Documentation
|
22199
22344
|
#
|
@@ -32451,7 +32596,7 @@ module Aws::RDS
|
|
32451
32596
|
tracer: tracer
|
32452
32597
|
)
|
32453
32598
|
context[:gem_name] = 'aws-sdk-rds'
|
32454
|
-
context[:gem_version] = '1.
|
32599
|
+
context[:gem_version] = '1.292.0'
|
32455
32600
|
Seahorse::Client::Request.new(handlers, context)
|
32456
32601
|
end
|
32457
32602
|
|
@@ -400,6 +400,7 @@ module Aws::RDS
|
|
400
400
|
EnableHttpEndpointResponse = Shapes::StructureShape.new(name: 'EnableHttpEndpointResponse')
|
401
401
|
EncryptionContextMap = Shapes::MapShape.new(name: 'EncryptionContextMap')
|
402
402
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
403
|
+
EndpointNetworkType = Shapes::StringShape.new(name: 'EndpointNetworkType')
|
403
404
|
Engine = Shapes::StringShape.new(name: 'Engine')
|
404
405
|
EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
|
405
406
|
EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
|
@@ -510,6 +511,7 @@ module Aws::RDS
|
|
510
511
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
511
512
|
MajorEngineVersion = Shapes::StringShape.new(name: 'MajorEngineVersion')
|
512
513
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
514
|
+
MasterUserAuthenticationType = Shapes::StringShape.new(name: 'MasterUserAuthenticationType')
|
513
515
|
MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
|
514
516
|
MaxDBShardGroupLimitReached = Shapes::StructureShape.new(name: 'MaxDBShardGroupLimitReached', error: {"code" => "MaxDBShardGroupLimitReached", "httpStatusCode" => 400, "senderFault" => true})
|
515
517
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
@@ -738,6 +740,7 @@ module Aws::RDS
|
|
738
740
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
739
741
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
740
742
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
743
|
+
TargetConnectionNetworkType = Shapes::StringShape.new(name: 'TargetConnectionNetworkType')
|
741
744
|
TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
|
742
745
|
TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
|
743
746
|
TargetDBParameterGroupName = Shapes::StringShape.new(name: 'TargetDBParameterGroupName')
|
@@ -1100,6 +1103,7 @@ module Aws::RDS
|
|
1100
1103
|
CreateDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
|
1101
1104
|
CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
1102
1105
|
CreateDBClusterMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1106
|
+
CreateDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1103
1107
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1104
1108
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
1105
1109
|
|
@@ -1187,6 +1191,7 @@ module Aws::RDS
|
|
1187
1191
|
CreateDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
1188
1192
|
CreateDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
1189
1193
|
CreateDBInstanceMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1194
|
+
CreateDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1190
1195
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
1191
1196
|
|
1192
1197
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -1260,6 +1265,7 @@ module Aws::RDS
|
|
1260
1265
|
CreateDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1261
1266
|
CreateDBProxyEndpointRequest.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1262
1267
|
CreateDBProxyEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1268
|
+
CreateDBProxyEndpointRequest.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1263
1269
|
CreateDBProxyEndpointRequest.struct_class = Types::CreateDBProxyEndpointRequest
|
1264
1270
|
|
1265
1271
|
CreateDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
@@ -1275,6 +1281,8 @@ module Aws::RDS
|
|
1275
1281
|
CreateDBProxyRequest.add_member(:idle_client_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IdleClientTimeout"))
|
1276
1282
|
CreateDBProxyRequest.add_member(:debug_logging, Shapes::ShapeRef.new(shape: Boolean, location_name: "DebugLogging"))
|
1277
1283
|
CreateDBProxyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1284
|
+
CreateDBProxyRequest.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1285
|
+
CreateDBProxyRequest.add_member(:target_connection_network_type, Shapes::ShapeRef.new(shape: TargetConnectionNetworkType, location_name: "TargetConnectionNetworkType"))
|
1278
1286
|
CreateDBProxyRequest.struct_class = Types::CreateDBProxyRequest
|
1279
1287
|
|
1280
1288
|
CreateDBProxyResponse.add_member(:db_proxy, Shapes::ShapeRef.new(shape: DBProxy, location_name: "DBProxy"))
|
@@ -1940,6 +1948,8 @@ module Aws::RDS
|
|
1940
1948
|
DBProxy.add_member(:debug_logging, Shapes::ShapeRef.new(shape: Boolean, location_name: "DebugLogging"))
|
1941
1949
|
DBProxy.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1942
1950
|
DBProxy.add_member(:updated_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "UpdatedDate"))
|
1951
|
+
DBProxy.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1952
|
+
DBProxy.add_member(:target_connection_network_type, Shapes::ShapeRef.new(shape: TargetConnectionNetworkType, location_name: "TargetConnectionNetworkType"))
|
1943
1953
|
DBProxy.struct_class = Types::DBProxy
|
1944
1954
|
|
1945
1955
|
DBProxyAlreadyExistsFault.struct_class = Types::DBProxyAlreadyExistsFault
|
@@ -1955,6 +1965,7 @@ module Aws::RDS
|
|
1955
1965
|
DBProxyEndpoint.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1956
1966
|
DBProxyEndpoint.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1957
1967
|
DBProxyEndpoint.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1968
|
+
DBProxyEndpoint.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1958
1969
|
DBProxyEndpoint.struct_class = Types::DBProxyEndpoint
|
1959
1970
|
|
1960
1971
|
DBProxyEndpointAlreadyExistsFault.struct_class = Types::DBProxyEndpointAlreadyExistsFault
|
@@ -3147,6 +3158,7 @@ module Aws::RDS
|
|
3147
3158
|
ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
3148
3159
|
ModifyDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
3149
3160
|
ModifyDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
3161
|
+
ModifyDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3150
3162
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
3151
3163
|
|
3152
3164
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -3226,6 +3238,7 @@ module Aws::RDS
|
|
3226
3238
|
ModifyDBInstanceMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
3227
3239
|
ModifyDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
3228
3240
|
ModifyDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
3241
|
+
ModifyDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3229
3242
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
3230
3243
|
|
3231
3244
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -993,6 +993,7 @@ module Aws::RDS
|
|
993
993
|
# enable_local_write_forwarding: false,
|
994
994
|
# ca_certificate_identifier: "String",
|
995
995
|
# engine_lifecycle_support: "String",
|
996
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
996
997
|
# source_region: "String",
|
997
998
|
# })
|
998
999
|
# @param [Hash] options ({})
|
@@ -1853,6 +1854,21 @@ module Aws::RDS
|
|
1853
1854
|
#
|
1854
1855
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
1855
1856
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
1857
|
+
# @option options [String] :master_user_authentication_type
|
1858
|
+
# Specifies the authentication type for the master user. With IAM master
|
1859
|
+
# user authentication, you can configure the master DB user with IAM
|
1860
|
+
# database authentication when you create a DB cluster.
|
1861
|
+
#
|
1862
|
+
# You can specify one of the following values:
|
1863
|
+
#
|
1864
|
+
# * `password` - Use standard database authentication with a password.
|
1865
|
+
#
|
1866
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1867
|
+
#
|
1868
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1869
|
+
#
|
1870
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1871
|
+
# engines.
|
1856
1872
|
# @option options [String] :source_region
|
1857
1873
|
# The source region of the snapshot. This is only needed when the
|
1858
1874
|
# shapshot is encrypted and in a different region.
|
@@ -2055,6 +2071,7 @@ module Aws::RDS
|
|
2055
2071
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
2056
2072
|
# enable_limitless_database: false,
|
2057
2073
|
# ca_certificate_identifier: "String",
|
2074
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
2058
2075
|
# })
|
2059
2076
|
# @param [Hash] options ({})
|
2060
2077
|
# @option options [String] :new_db_cluster_identifier
|
@@ -2501,8 +2518,9 @@ module Aws::RDS
|
|
2501
2518
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
2502
2519
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2503
2520
|
#
|
2504
|
-
# If you change the value from `advanced` to `standard`, you
|
2505
|
-
#
|
2521
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
2522
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
2523
|
+
# database counter and per-query metrics.
|
2506
2524
|
#
|
2507
2525
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2508
2526
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2723,6 +2741,21 @@ module Aws::RDS
|
|
2723
2741
|
#
|
2724
2742
|
#
|
2725
2743
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2744
|
+
# @option options [String] :master_user_authentication_type
|
2745
|
+
# Specifies the authentication type for the master user. With IAM master
|
2746
|
+
# user authentication, you can change the master DB user to use IAM
|
2747
|
+
# database authentication.
|
2748
|
+
#
|
2749
|
+
# You can specify one of the following values:
|
2750
|
+
#
|
2751
|
+
# * `password` - Use standard database authentication with a password.
|
2752
|
+
#
|
2753
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2754
|
+
#
|
2755
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2756
|
+
#
|
2757
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2758
|
+
# engines.
|
2726
2759
|
# @return [DBCluster]
|
2727
2760
|
def modify(options = {})
|
2728
2761
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -1030,6 +1030,7 @@ module Aws::RDS
|
|
1030
1030
|
# dedicated_log_volume: false,
|
1031
1031
|
# multi_tenant: false,
|
1032
1032
|
# engine_lifecycle_support: "String",
|
1033
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1033
1034
|
# })
|
1034
1035
|
# @param [Hash] options ({})
|
1035
1036
|
# @option options [String] :db_name
|
@@ -2268,6 +2269,19 @@ module Aws::RDS
|
|
2268
2269
|
#
|
2269
2270
|
#
|
2270
2271
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2272
|
+
# @option options [String] :master_user_authentication_type
|
2273
|
+
# Specifies the authentication type for the master user. With IAM master
|
2274
|
+
# user authentication, you can configure the master DB user with IAM
|
2275
|
+
# database authentication when you create a DB instance.
|
2276
|
+
#
|
2277
|
+
# You can specify one of the following values:
|
2278
|
+
#
|
2279
|
+
# * `password` - Use standard database authentication with a password.
|
2280
|
+
#
|
2281
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2282
|
+
#
|
2283
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2284
|
+
# engines.
|
2271
2285
|
# @return [DBInstance]
|
2272
2286
|
def create(options = {})
|
2273
2287
|
options = options.merge(db_instance_identifier: @id)
|
@@ -3179,6 +3193,7 @@ module Aws::RDS
|
|
3179
3193
|
# engine: "String",
|
3180
3194
|
# dedicated_log_volume: false,
|
3181
3195
|
# multi_tenant: false,
|
3196
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3182
3197
|
# })
|
3183
3198
|
# @param [Hash] options ({})
|
3184
3199
|
# @option options [Integer] :allocated_storage
|
@@ -4265,6 +4280,19 @@ module Aws::RDS
|
|
4265
4280
|
# irreversible, so you can't later convert back to the single-tenant
|
4266
4281
|
# configuration. When you specify this parameter, you must also specify
|
4267
4282
|
# `ApplyImmediately`.
|
4283
|
+
# @option options [String] :master_user_authentication_type
|
4284
|
+
# Specifies the authentication type for the master user. With IAM master
|
4285
|
+
# user authentication, you can change the master DB user to use IAM
|
4286
|
+
# database authentication.
|
4287
|
+
#
|
4288
|
+
# You can specify one of the following values:
|
4289
|
+
#
|
4290
|
+
# * `password` - Use standard database authentication with a password.
|
4291
|
+
#
|
4292
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
4293
|
+
#
|
4294
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
4295
|
+
# engines.
|
4268
4296
|
# @return [DBInstance]
|
4269
4297
|
def modify(options = {})
|
4270
4298
|
options = options.merge(db_instance_identifier: @id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -114,6 +114,7 @@ module Aws::RDS
|
|
114
114
|
# enable_local_write_forwarding: false,
|
115
115
|
# ca_certificate_identifier: "String",
|
116
116
|
# engine_lifecycle_support: "String",
|
117
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
117
118
|
# source_region: "String",
|
118
119
|
# })
|
119
120
|
# @param [Hash] options ({})
|
@@ -990,6 +991,21 @@ module Aws::RDS
|
|
990
991
|
#
|
991
992
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
992
993
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
994
|
+
# @option options [String] :master_user_authentication_type
|
995
|
+
# Specifies the authentication type for the master user. With IAM master
|
996
|
+
# user authentication, you can configure the master DB user with IAM
|
997
|
+
# database authentication when you create a DB cluster.
|
998
|
+
#
|
999
|
+
# You can specify one of the following values:
|
1000
|
+
#
|
1001
|
+
# * `password` - Use standard database authentication with a password.
|
1002
|
+
#
|
1003
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1004
|
+
#
|
1005
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1006
|
+
#
|
1007
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1008
|
+
# engines.
|
993
1009
|
# @option options [String] :source_region
|
994
1010
|
# The source region of the snapshot. This is only needed when the
|
995
1011
|
# shapshot is encrypted and in a different region.
|
@@ -1173,6 +1189,7 @@ module Aws::RDS
|
|
1173
1189
|
# dedicated_log_volume: false,
|
1174
1190
|
# multi_tenant: false,
|
1175
1191
|
# engine_lifecycle_support: "String",
|
1192
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1176
1193
|
# })
|
1177
1194
|
# @param [Hash] options ({})
|
1178
1195
|
# @option options [String] :db_name
|
@@ -2424,6 +2441,19 @@ module Aws::RDS
|
|
2424
2441
|
#
|
2425
2442
|
#
|
2426
2443
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2444
|
+
# @option options [String] :master_user_authentication_type
|
2445
|
+
# Specifies the authentication type for the master user. With IAM master
|
2446
|
+
# user authentication, you can configure the master DB user with IAM
|
2447
|
+
# database authentication when you create a DB instance.
|
2448
|
+
#
|
2449
|
+
# You can specify one of the following values:
|
2450
|
+
#
|
2451
|
+
# * `password` - Use standard database authentication with a password.
|
2452
|
+
#
|
2453
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2454
|
+
#
|
2455
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2456
|
+
# engines.
|
2427
2457
|
# @return [DBInstance]
|
2428
2458
|
def create_db_instance(options = {})
|
2429
2459
|
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3188,6 +3188,24 @@ module Aws::RDS
|
|
3188
3188
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3189
3189
|
# @return [String]
|
3190
3190
|
#
|
3191
|
+
# @!attribute [rw] master_user_authentication_type
|
3192
|
+
# Specifies the authentication type for the master user. With IAM
|
3193
|
+
# master user authentication, you can configure the master DB user
|
3194
|
+
# with IAM database authentication when you create a DB cluster.
|
3195
|
+
#
|
3196
|
+
# You can specify one of the following values:
|
3197
|
+
#
|
3198
|
+
# * `password` - Use standard database authentication with a password.
|
3199
|
+
#
|
3200
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
3201
|
+
# user.
|
3202
|
+
#
|
3203
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3204
|
+
#
|
3205
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
3206
|
+
# PostgreSQL engines.
|
3207
|
+
# @return [String]
|
3208
|
+
#
|
3191
3209
|
# @!attribute [rw] source_region
|
3192
3210
|
# The source region of the snapshot. This is only needed when the
|
3193
3211
|
# shapshot is encrypted and in a different region.
|
@@ -3252,6 +3270,7 @@ module Aws::RDS
|
|
3252
3270
|
:enable_local_write_forwarding,
|
3253
3271
|
:ca_certificate_identifier,
|
3254
3272
|
:engine_lifecycle_support,
|
3273
|
+
:master_user_authentication_type,
|
3255
3274
|
:source_region)
|
3256
3275
|
SENSITIVE = []
|
3257
3276
|
include Aws::Structure
|
@@ -4843,6 +4862,22 @@ module Aws::RDS
|
|
4843
4862
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4844
4863
|
# @return [String]
|
4845
4864
|
#
|
4865
|
+
# @!attribute [rw] master_user_authentication_type
|
4866
|
+
# Specifies the authentication type for the master user. With IAM
|
4867
|
+
# master user authentication, you can configure the master DB user
|
4868
|
+
# with IAM database authentication when you create a DB instance.
|
4869
|
+
#
|
4870
|
+
# You can specify one of the following values:
|
4871
|
+
#
|
4872
|
+
# * `password` - Use standard database authentication with a password.
|
4873
|
+
#
|
4874
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
4875
|
+
# user.
|
4876
|
+
#
|
4877
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
4878
|
+
# PostgreSQL engines.
|
4879
|
+
# @return [String]
|
4880
|
+
#
|
4846
4881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4847
4882
|
#
|
4848
4883
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4909,7 +4944,8 @@ module Aws::RDS
|
|
4909
4944
|
:db_system_id,
|
4910
4945
|
:dedicated_log_volume,
|
4911
4946
|
:multi_tenant,
|
4912
|
-
:engine_lifecycle_support
|
4947
|
+
:engine_lifecycle_support,
|
4948
|
+
:master_user_authentication_type)
|
4913
4949
|
SENSITIVE = []
|
4914
4950
|
include Aws::Structure
|
4915
4951
|
end
|
@@ -5942,6 +5978,29 @@ module Aws::RDS
|
|
5942
5978
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
5943
5979
|
# @return [Array<Types::Tag>]
|
5944
5980
|
#
|
5981
|
+
# @!attribute [rw] endpoint_network_type
|
5982
|
+
# The network type of the DB proxy endpoint. The network type
|
5983
|
+
# determines the IP version that the proxy endpoint supports.
|
5984
|
+
#
|
5985
|
+
# Valid values:
|
5986
|
+
#
|
5987
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
5988
|
+
#
|
5989
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
5990
|
+
#
|
5991
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
5992
|
+
#
|
5993
|
+
# Default: `IPV4`
|
5994
|
+
#
|
5995
|
+
# Constraints:
|
5996
|
+
#
|
5997
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
5998
|
+
# an IPv6 CIDR block.
|
5999
|
+
#
|
6000
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
6001
|
+
# `dedicated`.
|
6002
|
+
# @return [String]
|
6003
|
+
#
|
5945
6004
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
|
5946
6005
|
#
|
5947
6006
|
class CreateDBProxyEndpointRequest < Struct.new(
|
@@ -5950,7 +6009,8 @@ module Aws::RDS
|
|
5950
6009
|
:vpc_subnet_ids,
|
5951
6010
|
:vpc_security_group_ids,
|
5952
6011
|
:target_role,
|
5953
|
-
:tags
|
6012
|
+
:tags,
|
6013
|
+
:endpoint_network_type)
|
5954
6014
|
SENSITIVE = []
|
5955
6015
|
include Aws::Structure
|
5956
6016
|
end
|
@@ -6031,6 +6091,51 @@ module Aws::RDS
|
|
6031
6091
|
# your choosing with the proxy.
|
6032
6092
|
# @return [Array<Types::Tag>]
|
6033
6093
|
#
|
6094
|
+
# @!attribute [rw] endpoint_network_type
|
6095
|
+
# The network type of the DB proxy endpoint. The network type
|
6096
|
+
# determines the IP version that the proxy endpoint supports.
|
6097
|
+
#
|
6098
|
+
# Valid values:
|
6099
|
+
#
|
6100
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
6101
|
+
#
|
6102
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
6103
|
+
#
|
6104
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
6105
|
+
#
|
6106
|
+
# Default: `IPV4`
|
6107
|
+
#
|
6108
|
+
# Constraints:
|
6109
|
+
#
|
6110
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
6111
|
+
# an IPv6 CIDR block.
|
6112
|
+
#
|
6113
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
6114
|
+
# `dedicated`.
|
6115
|
+
# @return [String]
|
6116
|
+
#
|
6117
|
+
# @!attribute [rw] target_connection_network_type
|
6118
|
+
# The network type that the proxy uses to connect to the target
|
6119
|
+
# database. The network type determines the IP version that the proxy
|
6120
|
+
# uses for connections to the database.
|
6121
|
+
#
|
6122
|
+
# Valid values:
|
6123
|
+
#
|
6124
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
6125
|
+
#
|
6126
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
6127
|
+
#
|
6128
|
+
# Default: `IPV4`
|
6129
|
+
#
|
6130
|
+
# Constraints:
|
6131
|
+
#
|
6132
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
6133
|
+
# RDS doesn't support IPv6-only databases.
|
6134
|
+
#
|
6135
|
+
# * All targets registered with the proxy must be compatible with the
|
6136
|
+
# specified network type.
|
6137
|
+
# @return [String]
|
6138
|
+
#
|
6034
6139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyRequest AWS API Documentation
|
6035
6140
|
#
|
6036
6141
|
class CreateDBProxyRequest < Struct.new(
|
@@ -6043,7 +6148,9 @@ module Aws::RDS
|
|
6043
6148
|
:require_tls,
|
6044
6149
|
:idle_client_timeout,
|
6045
6150
|
:debug_logging,
|
6046
|
-
:tags
|
6151
|
+
:tags,
|
6152
|
+
:endpoint_network_type,
|
6153
|
+
:target_connection_network_type)
|
6047
6154
|
SENSITIVE = []
|
6048
6155
|
include Aws::Structure
|
6049
6156
|
end
|
@@ -10348,6 +10455,31 @@ module Aws::RDS
|
|
10348
10455
|
# The date and time when the proxy was last updated.
|
10349
10456
|
# @return [Time]
|
10350
10457
|
#
|
10458
|
+
# @!attribute [rw] endpoint_network_type
|
10459
|
+
# The network type of the DB proxy endpoint. The network type
|
10460
|
+
# determines the IP version that the proxy endpoint supports.
|
10461
|
+
#
|
10462
|
+
# Valid values:
|
10463
|
+
#
|
10464
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10465
|
+
#
|
10466
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10467
|
+
#
|
10468
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10469
|
+
# @return [String]
|
10470
|
+
#
|
10471
|
+
# @!attribute [rw] target_connection_network_type
|
10472
|
+
# The network type that the proxy uses to connect to the target
|
10473
|
+
# database. The network type determines the IP version that the proxy
|
10474
|
+
# uses for connections to the database.
|
10475
|
+
#
|
10476
|
+
# Valid values:
|
10477
|
+
#
|
10478
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
10479
|
+
#
|
10480
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
10481
|
+
# @return [String]
|
10482
|
+
#
|
10351
10483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxy AWS API Documentation
|
10352
10484
|
#
|
10353
10485
|
class DBProxy < Struct.new(
|
@@ -10365,7 +10497,9 @@ module Aws::RDS
|
|
10365
10497
|
:idle_client_timeout,
|
10366
10498
|
:debug_logging,
|
10367
10499
|
:created_date,
|
10368
|
-
:updated_date
|
10500
|
+
:updated_date,
|
10501
|
+
:endpoint_network_type,
|
10502
|
+
:target_connection_network_type)
|
10369
10503
|
SENSITIVE = []
|
10370
10504
|
include Aws::Structure
|
10371
10505
|
end
|
@@ -10444,6 +10578,19 @@ module Aws::RDS
|
|
10444
10578
|
# DB proxy can be either read/write or read-only.
|
10445
10579
|
# @return [Boolean]
|
10446
10580
|
#
|
10581
|
+
# @!attribute [rw] endpoint_network_type
|
10582
|
+
# The network type of the DB proxy endpoint. The network type
|
10583
|
+
# determines the IP version that the proxy endpoint supports.
|
10584
|
+
#
|
10585
|
+
# Valid values:
|
10586
|
+
#
|
10587
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10588
|
+
#
|
10589
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10590
|
+
#
|
10591
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10592
|
+
# @return [String]
|
10593
|
+
#
|
10447
10594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
|
10448
10595
|
#
|
10449
10596
|
class DBProxyEndpoint < Struct.new(
|
@@ -10457,7 +10604,8 @@ module Aws::RDS
|
|
10457
10604
|
:endpoint,
|
10458
10605
|
:created_date,
|
10459
10606
|
:target_role,
|
10460
|
-
:is_default
|
10607
|
+
:is_default,
|
10608
|
+
:endpoint_network_type)
|
10461
10609
|
SENSITIVE = []
|
10462
10610
|
include Aws::Structure
|
10463
10611
|
end
|
@@ -18171,8 +18319,9 @@ module Aws::RDS
|
|
18171
18319
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
18172
18320
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
18173
18321
|
#
|
18174
|
-
# If you change the value from `advanced` to `standard`, you
|
18175
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
18322
|
+
# If you change the value from `advanced` to `standard`, you can set
|
18323
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
18324
|
+
# detailed database counter and per-query metrics.
|
18176
18325
|
#
|
18177
18326
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18178
18327
|
# @return [String]
|
@@ -18425,6 +18574,24 @@ module Aws::RDS
|
|
18425
18574
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
18426
18575
|
# @return [String]
|
18427
18576
|
#
|
18577
|
+
# @!attribute [rw] master_user_authentication_type
|
18578
|
+
# Specifies the authentication type for the master user. With IAM
|
18579
|
+
# master user authentication, you can change the master DB user to use
|
18580
|
+
# IAM database authentication.
|
18581
|
+
#
|
18582
|
+
# You can specify one of the following values:
|
18583
|
+
#
|
18584
|
+
# * `password` - Use standard database authentication with a password.
|
18585
|
+
#
|
18586
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
18587
|
+
# user.
|
18588
|
+
#
|
18589
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18590
|
+
#
|
18591
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
18592
|
+
# PostgreSQL engines.
|
18593
|
+
# @return [String]
|
18594
|
+
#
|
18428
18595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
18429
18596
|
#
|
18430
18597
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -18473,7 +18640,8 @@ module Aws::RDS
|
|
18473
18640
|
:enable_local_write_forwarding,
|
18474
18641
|
:aws_backup_recovery_point_arn,
|
18475
18642
|
:enable_limitless_database,
|
18476
|
-
:ca_certificate_identifier
|
18643
|
+
:ca_certificate_identifier,
|
18644
|
+
:master_user_authentication_type)
|
18477
18645
|
SENSITIVE = []
|
18478
18646
|
include Aws::Structure
|
18479
18647
|
end
|
@@ -19853,6 +20021,22 @@ module Aws::RDS
|
|
19853
20021
|
# specify `ApplyImmediately`.
|
19854
20022
|
# @return [Boolean]
|
19855
20023
|
#
|
20024
|
+
# @!attribute [rw] master_user_authentication_type
|
20025
|
+
# Specifies the authentication type for the master user. With IAM
|
20026
|
+
# master user authentication, you can change the master DB user to use
|
20027
|
+
# IAM database authentication.
|
20028
|
+
#
|
20029
|
+
# You can specify one of the following values:
|
20030
|
+
#
|
20031
|
+
# * `password` - Use standard database authentication with a password.
|
20032
|
+
#
|
20033
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
20034
|
+
# user.
|
20035
|
+
#
|
20036
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
20037
|
+
# PostgreSQL engines.
|
20038
|
+
# @return [String]
|
20039
|
+
#
|
19856
20040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
19857
20041
|
#
|
19858
20042
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -19916,7 +20100,8 @@ module Aws::RDS
|
|
19916
20100
|
:master_user_secret_kms_key_id,
|
19917
20101
|
:engine,
|
19918
20102
|
:dedicated_log_volume,
|
19919
|
-
:multi_tenant
|
20103
|
+
:multi_tenant,
|
20104
|
+
:master_user_authentication_type)
|
19920
20105
|
SENSITIVE = []
|
19921
20106
|
include Aws::Structure
|
19922
20107
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.292.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -454,6 +454,7 @@ module Aws
|
|
454
454
|
?enable_local_write_forwarding: bool,
|
455
455
|
?ca_certificate_identifier: ::String,
|
456
456
|
?engine_lifecycle_support: ::String,
|
457
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
457
458
|
?source_region: ::String
|
458
459
|
) -> _CreateDBClusterResponseSuccess
|
459
460
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
@@ -601,7 +602,8 @@ module Aws
|
|
601
602
|
?db_system_id: ::String,
|
602
603
|
?dedicated_log_volume: bool,
|
603
604
|
?multi_tenant: bool,
|
604
|
-
?engine_lifecycle_support: ::String
|
605
|
+
?engine_lifecycle_support: ::String,
|
606
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
605
607
|
) -> _CreateDBInstanceResponseSuccess
|
606
608
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
607
609
|
|
@@ -719,7 +721,9 @@ module Aws
|
|
719
721
|
key: ::String?,
|
720
722
|
value: ::String?
|
721
723
|
},
|
722
|
-
]
|
724
|
+
],
|
725
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL"),
|
726
|
+
?target_connection_network_type: ("IPV4" | "IPV6")
|
723
727
|
) -> _CreateDBProxyResponseSuccess
|
724
728
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyResponseSuccess
|
725
729
|
|
@@ -739,7 +743,8 @@ module Aws
|
|
739
743
|
key: ::String?,
|
740
744
|
value: ::String?
|
741
745
|
},
|
742
|
-
]
|
746
|
+
],
|
747
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
743
748
|
) -> _CreateDBProxyEndpointResponseSuccess
|
744
749
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyEndpointResponseSuccess
|
745
750
|
|
@@ -2347,7 +2352,8 @@ module Aws
|
|
2347
2352
|
?enable_local_write_forwarding: bool,
|
2348
2353
|
?aws_backup_recovery_point_arn: ::String,
|
2349
2354
|
?enable_limitless_database: bool,
|
2350
|
-
?ca_certificate_identifier: ::String
|
2355
|
+
?ca_certificate_identifier: ::String,
|
2356
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2351
2357
|
) -> _ModifyDBClusterResponseSuccess
|
2352
2358
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
2353
2359
|
|
@@ -2485,7 +2491,8 @@ module Aws
|
|
2485
2491
|
?master_user_secret_kms_key_id: ::String,
|
2486
2492
|
?engine: ::String,
|
2487
2493
|
?dedicated_log_volume: bool,
|
2488
|
-
?multi_tenant: bool
|
2494
|
+
?multi_tenant: bool,
|
2495
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2489
2496
|
) -> _ModifyDBInstanceResponseSuccess
|
2490
2497
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
2491
2498
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -357,6 +357,7 @@ module Aws
|
|
357
357
|
?enable_local_write_forwarding: bool,
|
358
358
|
?ca_certificate_identifier: ::String,
|
359
359
|
?engine_lifecycle_support: ::String,
|
360
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
360
361
|
?source_region: ::String
|
361
362
|
) -> DBCluster
|
362
363
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -447,7 +448,8 @@ module Aws
|
|
447
448
|
?enable_local_write_forwarding: bool,
|
448
449
|
?aws_backup_recovery_point_arn: ::String,
|
449
450
|
?enable_limitless_database: bool,
|
450
|
-
?ca_certificate_identifier: ::String
|
451
|
+
?ca_certificate_identifier: ::String,
|
452
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
451
453
|
) -> DBCluster
|
452
454
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
453
455
|
|
data/sig/db_instance.rbs
CHANGED
@@ -363,7 +363,8 @@ module Aws
|
|
363
363
|
?db_system_id: ::String,
|
364
364
|
?dedicated_log_volume: bool,
|
365
365
|
?multi_tenant: bool,
|
366
|
-
?engine_lifecycle_support: ::String
|
366
|
+
?engine_lifecycle_support: ::String,
|
367
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
367
368
|
) -> DBInstance
|
368
369
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
369
370
|
|
@@ -518,7 +519,8 @@ module Aws
|
|
518
519
|
?master_user_secret_kms_key_id: ::String,
|
519
520
|
?engine: ::String,
|
520
521
|
?dedicated_log_volume: bool,
|
521
|
-
?multi_tenant: bool
|
522
|
+
?multi_tenant: bool,
|
523
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
522
524
|
) -> DBInstance
|
523
525
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
524
526
|
|
data/sig/resource.rbs
CHANGED
@@ -158,6 +158,7 @@ module Aws
|
|
158
158
|
?enable_local_write_forwarding: bool,
|
159
159
|
?ca_certificate_identifier: ::String,
|
160
160
|
?engine_lifecycle_support: ::String,
|
161
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
161
162
|
?source_region: ::String
|
162
163
|
) -> DBCluster
|
163
164
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -251,7 +252,8 @@ module Aws
|
|
251
252
|
?db_system_id: ::String,
|
252
253
|
?dedicated_log_volume: bool,
|
253
254
|
?multi_tenant: bool,
|
254
|
-
?engine_lifecycle_support: ::String
|
255
|
+
?engine_lifecycle_support: ::String,
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
255
257
|
) -> DBInstance
|
256
258
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
257
259
|
|
data/sig/types.rbs
CHANGED
@@ -402,6 +402,7 @@ module Aws::RDS
|
|
402
402
|
attr_accessor enable_local_write_forwarding: bool
|
403
403
|
attr_accessor ca_certificate_identifier: ::String
|
404
404
|
attr_accessor engine_lifecycle_support: ::String
|
405
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
405
406
|
attr_accessor source_region: ::String
|
406
407
|
SENSITIVE: []
|
407
408
|
end
|
@@ -501,6 +502,7 @@ module Aws::RDS
|
|
501
502
|
attr_accessor dedicated_log_volume: bool
|
502
503
|
attr_accessor multi_tenant: bool
|
503
504
|
attr_accessor engine_lifecycle_support: ::String
|
505
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
504
506
|
SENSITIVE: []
|
505
507
|
end
|
506
508
|
|
@@ -586,6 +588,7 @@ module Aws::RDS
|
|
586
588
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
587
589
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
588
590
|
attr_accessor tags: ::Array[Types::Tag]
|
591
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
589
592
|
SENSITIVE: []
|
590
593
|
end
|
591
594
|
|
@@ -605,6 +608,8 @@ module Aws::RDS
|
|
605
608
|
attr_accessor idle_client_timeout: ::Integer
|
606
609
|
attr_accessor debug_logging: bool
|
607
610
|
attr_accessor tags: ::Array[Types::Tag]
|
611
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
612
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
608
613
|
SENSITIVE: []
|
609
614
|
end
|
610
615
|
|
@@ -1371,6 +1376,8 @@ module Aws::RDS
|
|
1371
1376
|
attr_accessor debug_logging: bool
|
1372
1377
|
attr_accessor created_date: ::Time
|
1373
1378
|
attr_accessor updated_date: ::Time
|
1379
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
1380
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
1374
1381
|
SENSITIVE: []
|
1375
1382
|
end
|
1376
1383
|
|
@@ -1389,6 +1396,7 @@ module Aws::RDS
|
|
1389
1396
|
attr_accessor created_date: ::Time
|
1390
1397
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
1391
1398
|
attr_accessor is_default: bool
|
1399
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
1392
1400
|
SENSITIVE: []
|
1393
1401
|
end
|
1394
1402
|
|
@@ -2903,6 +2911,7 @@ module Aws::RDS
|
|
2903
2911
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
2904
2912
|
attr_accessor enable_limitless_database: bool
|
2905
2913
|
attr_accessor ca_certificate_identifier: ::String
|
2914
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2906
2915
|
SENSITIVE: []
|
2907
2916
|
end
|
2908
2917
|
|
@@ -2992,6 +3001,7 @@ module Aws::RDS
|
|
2992
3001
|
attr_accessor engine: ::String
|
2993
3002
|
attr_accessor dedicated_log_volume: bool
|
2994
3003
|
attr_accessor multi_tenant: bool
|
3004
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2995
3005
|
SENSITIVE: []
|
2996
3006
|
end
|
2997
3007
|
|