aws-sdk-rds 1.291.0 → 1.293.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 +104 -3
- data/lib/aws-sdk-rds/client_api.rb +13 -1
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/types.rb +145 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +8 -3
- data/sig/types.rbs +9 -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: c5eeadde180a13afff319850a3219b5563fc2f60779821cc18c5865732052fea
|
4
|
+
data.tar.gz: 303aefe70aa05469bd4cd66b3aad55d6c30a8e640b77535af0dfa66ffa4fb90d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 839ddaf977cd0526834dd7ad1ec772d39a97d70cdabe01681023326199f4d089b5148c62e839715f3380c8334e1e759c5e36f93fdc51d8f78390b7a8b0aa41f3
|
7
|
+
data.tar.gz: edebff7aa200ef4d5c0e8659b95145fac69e40b3510e9e75446deeff8a890d9f809077f7d28a15a3d41f286a90e95081189e3f41ff8e7e685d873f50ef6473b9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.293.0 (2025-09-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for end-to-end IAM authentication in RDS Proxy for MySQL, MariaDB, and PostgreSQL engines.
|
8
|
+
|
9
|
+
1.292.0 (2025-09-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6
|
13
|
+
|
4
14
|
1.291.0 (2025-09-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.293.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -7332,7 +7332,15 @@ module Aws::RDS
|
|
7332
7332
|
# For Aurora PostgreSQL and RDS for PostgreSQL databases, specify
|
7333
7333
|
# `POSTGRESQL`. For RDS for Microsoft SQL Server, specify `SQLSERVER`.
|
7334
7334
|
#
|
7335
|
-
# @option params [
|
7335
|
+
# @option params [String] :default_auth_scheme
|
7336
|
+
# The default authentication scheme that the proxy uses for client
|
7337
|
+
# connections to the proxy and connections from the proxy to the
|
7338
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When set
|
7339
|
+
# to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to connect
|
7340
|
+
# to the database. If you don't specify `DefaultAuthScheme` or specify
|
7341
|
+
# this parameter as `NONE`, you must specify the `Auth` option.
|
7342
|
+
#
|
7343
|
+
# @option params [Array<Types::UserAuthConfig>] :auth
|
7336
7344
|
# The authorization mechanism that the proxy uses.
|
7337
7345
|
#
|
7338
7346
|
# @option params [required, String] :role_arn
|
@@ -7367,6 +7375,49 @@ module Aws::RDS
|
|
7367
7375
|
# An optional set of key-value pairs to associate arbitrary data of your
|
7368
7376
|
# choosing with the proxy.
|
7369
7377
|
#
|
7378
|
+
# @option params [String] :endpoint_network_type
|
7379
|
+
# The network type of the DB proxy endpoint. The network type determines
|
7380
|
+
# the IP version that the proxy endpoint supports.
|
7381
|
+
#
|
7382
|
+
# Valid values:
|
7383
|
+
#
|
7384
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
7385
|
+
#
|
7386
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
7387
|
+
#
|
7388
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
7389
|
+
#
|
7390
|
+
# Default: `IPV4`
|
7391
|
+
#
|
7392
|
+
# Constraints:
|
7393
|
+
#
|
7394
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
7395
|
+
# an IPv6 CIDR block.
|
7396
|
+
#
|
7397
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
7398
|
+
# `dedicated`.
|
7399
|
+
#
|
7400
|
+
# @option params [String] :target_connection_network_type
|
7401
|
+
# The network type that the proxy uses to connect to the target
|
7402
|
+
# database. The network type determines the IP version that the proxy
|
7403
|
+
# uses for connections to the database.
|
7404
|
+
#
|
7405
|
+
# Valid values:
|
7406
|
+
#
|
7407
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
7408
|
+
#
|
7409
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
7410
|
+
#
|
7411
|
+
# Default: `IPV4`
|
7412
|
+
#
|
7413
|
+
# Constraints:
|
7414
|
+
#
|
7415
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
7416
|
+
# RDS doesn't support IPv6-only databases.
|
7417
|
+
#
|
7418
|
+
# * All targets registered with the proxy must be compatible with the
|
7419
|
+
# specified network type.
|
7420
|
+
#
|
7370
7421
|
# @return [Types::CreateDBProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7371
7422
|
#
|
7372
7423
|
# * {Types::CreateDBProxyResponse#db_proxy #db_proxy} => Types::DBProxy
|
@@ -7376,7 +7427,8 @@ module Aws::RDS
|
|
7376
7427
|
# resp = client.create_db_proxy({
|
7377
7428
|
# db_proxy_name: "String", # required
|
7378
7429
|
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
|
7379
|
-
#
|
7430
|
+
# default_auth_scheme: "IAM_AUTH", # accepts IAM_AUTH, NONE
|
7431
|
+
# auth: [
|
7380
7432
|
# {
|
7381
7433
|
# description: "String",
|
7382
7434
|
# user_name: "String",
|
@@ -7398,6 +7450,8 @@ module Aws::RDS
|
|
7398
7450
|
# value: "String",
|
7399
7451
|
# },
|
7400
7452
|
# ],
|
7453
|
+
# endpoint_network_type: "IPV4", # accepts IPV4, IPV6, DUAL
|
7454
|
+
# target_connection_network_type: "IPV4", # accepts IPV4, IPV6
|
7401
7455
|
# })
|
7402
7456
|
#
|
7403
7457
|
# @example Response structure
|
@@ -7411,6 +7465,7 @@ module Aws::RDS
|
|
7411
7465
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
7412
7466
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
7413
7467
|
# resp.db_proxy.vpc_subnet_ids[0] #=> String
|
7468
|
+
# resp.db_proxy.default_auth_scheme #=> String
|
7414
7469
|
# resp.db_proxy.auth #=> Array
|
7415
7470
|
# resp.db_proxy.auth[0].description #=> String
|
7416
7471
|
# resp.db_proxy.auth[0].user_name #=> String
|
@@ -7425,6 +7480,8 @@ module Aws::RDS
|
|
7425
7480
|
# resp.db_proxy.debug_logging #=> Boolean
|
7426
7481
|
# resp.db_proxy.created_date #=> Time
|
7427
7482
|
# resp.db_proxy.updated_date #=> Time
|
7483
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
7484
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
7428
7485
|
#
|
7429
7486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy AWS API Documentation
|
7430
7487
|
#
|
@@ -7476,6 +7533,28 @@ module Aws::RDS
|
|
7476
7533
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7477
7534
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7478
7535
|
#
|
7536
|
+
# @option params [String] :endpoint_network_type
|
7537
|
+
# The network type of the DB proxy endpoint. The network type determines
|
7538
|
+
# the IP version that the proxy endpoint supports.
|
7539
|
+
#
|
7540
|
+
# Valid values:
|
7541
|
+
#
|
7542
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
7543
|
+
#
|
7544
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
7545
|
+
#
|
7546
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
7547
|
+
#
|
7548
|
+
# Default: `IPV4`
|
7549
|
+
#
|
7550
|
+
# Constraints:
|
7551
|
+
#
|
7552
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
7553
|
+
# an IPv6 CIDR block.
|
7554
|
+
#
|
7555
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
7556
|
+
# `dedicated`.
|
7557
|
+
#
|
7479
7558
|
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7480
7559
|
#
|
7481
7560
|
# * {Types::CreateDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
@@ -7494,6 +7573,7 @@ module Aws::RDS
|
|
7494
7573
|
# value: "String",
|
7495
7574
|
# },
|
7496
7575
|
# ],
|
7576
|
+
# endpoint_network_type: "IPV4", # accepts IPV4, IPV6, DUAL
|
7497
7577
|
# })
|
7498
7578
|
#
|
7499
7579
|
# @example Response structure
|
@@ -7511,6 +7591,7 @@ module Aws::RDS
|
|
7511
7591
|
# resp.db_proxy_endpoint.created_date #=> Time
|
7512
7592
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
7513
7593
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
7594
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
7514
7595
|
#
|
7515
7596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint AWS API Documentation
|
7516
7597
|
#
|
@@ -10303,6 +10384,7 @@ module Aws::RDS
|
|
10303
10384
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
10304
10385
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
10305
10386
|
# resp.db_proxy.vpc_subnet_ids[0] #=> String
|
10387
|
+
# resp.db_proxy.default_auth_scheme #=> String
|
10306
10388
|
# resp.db_proxy.auth #=> Array
|
10307
10389
|
# resp.db_proxy.auth[0].description #=> String
|
10308
10390
|
# resp.db_proxy.auth[0].user_name #=> String
|
@@ -10317,6 +10399,8 @@ module Aws::RDS
|
|
10317
10399
|
# resp.db_proxy.debug_logging #=> Boolean
|
10318
10400
|
# resp.db_proxy.created_date #=> Time
|
10319
10401
|
# resp.db_proxy.updated_date #=> Time
|
10402
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
10403
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
10320
10404
|
#
|
10321
10405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxy AWS API Documentation
|
10322
10406
|
#
|
@@ -10361,6 +10445,7 @@ module Aws::RDS
|
|
10361
10445
|
# resp.db_proxy_endpoint.created_date #=> Time
|
10362
10446
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
10363
10447
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
10448
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
10364
10449
|
#
|
10365
10450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint AWS API Documentation
|
10366
10451
|
#
|
@@ -14246,6 +14331,7 @@ module Aws::RDS
|
|
14246
14331
|
# resp.db_proxies[0].vpc_security_group_ids[0] #=> String
|
14247
14332
|
# resp.db_proxies[0].vpc_subnet_ids #=> Array
|
14248
14333
|
# resp.db_proxies[0].vpc_subnet_ids[0] #=> String
|
14334
|
+
# resp.db_proxies[0].default_auth_scheme #=> String
|
14249
14335
|
# resp.db_proxies[0].auth #=> Array
|
14250
14336
|
# resp.db_proxies[0].auth[0].description #=> String
|
14251
14337
|
# resp.db_proxies[0].auth[0].user_name #=> String
|
@@ -14260,6 +14346,8 @@ module Aws::RDS
|
|
14260
14346
|
# resp.db_proxies[0].debug_logging #=> Boolean
|
14261
14347
|
# resp.db_proxies[0].created_date #=> Time
|
14262
14348
|
# resp.db_proxies[0].updated_date #=> Time
|
14349
|
+
# resp.db_proxies[0].endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
14350
|
+
# resp.db_proxies[0].target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
14263
14351
|
# resp.marker #=> String
|
14264
14352
|
#
|
14265
14353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies AWS API Documentation
|
@@ -14339,6 +14427,7 @@ module Aws::RDS
|
|
14339
14427
|
# resp.db_proxy_endpoints[0].created_date #=> Time
|
14340
14428
|
# resp.db_proxy_endpoints[0].target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
14341
14429
|
# resp.db_proxy_endpoints[0].is_default #=> Boolean
|
14430
|
+
# resp.db_proxy_endpoints[0].endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
14342
14431
|
# resp.marker #=> String
|
14343
14432
|
#
|
14344
14433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints AWS API Documentation
|
@@ -22124,6 +22213,13 @@ module Aws::RDS
|
|
22124
22213
|
# letter and must contain only ASCII letters, digits, and hyphens; it
|
22125
22214
|
# can't end with a hyphen or contain two consecutive hyphens.
|
22126
22215
|
#
|
22216
|
+
# @option params [String] :default_auth_scheme
|
22217
|
+
# The default authentication scheme that the proxy uses for client
|
22218
|
+
# connections to the proxy and connections from the proxy to the
|
22219
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When set
|
22220
|
+
# to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to connect
|
22221
|
+
# to the database.
|
22222
|
+
#
|
22127
22223
|
# @option params [Array<Types::UserAuthConfig>] :auth
|
22128
22224
|
# The new authentication settings for the `DBProxy`.
|
22129
22225
|
#
|
@@ -22162,6 +22258,7 @@ module Aws::RDS
|
|
22162
22258
|
# resp = client.modify_db_proxy({
|
22163
22259
|
# db_proxy_name: "String", # required
|
22164
22260
|
# new_db_proxy_name: "String",
|
22261
|
+
# default_auth_scheme: "IAM_AUTH", # accepts IAM_AUTH, NONE
|
22165
22262
|
# auth: [
|
22166
22263
|
# {
|
22167
22264
|
# description: "String",
|
@@ -22190,6 +22287,7 @@ module Aws::RDS
|
|
22190
22287
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
22191
22288
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
22192
22289
|
# resp.db_proxy.vpc_subnet_ids[0] #=> String
|
22290
|
+
# resp.db_proxy.default_auth_scheme #=> String
|
22193
22291
|
# resp.db_proxy.auth #=> Array
|
22194
22292
|
# resp.db_proxy.auth[0].description #=> String
|
22195
22293
|
# resp.db_proxy.auth[0].user_name #=> String
|
@@ -22204,6 +22302,8 @@ module Aws::RDS
|
|
22204
22302
|
# resp.db_proxy.debug_logging #=> Boolean
|
22205
22303
|
# resp.db_proxy.created_date #=> Time
|
22206
22304
|
# resp.db_proxy.updated_date #=> Time
|
22305
|
+
# resp.db_proxy.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
22306
|
+
# resp.db_proxy.target_connection_network_type #=> String, one of "IPV4", "IPV6"
|
22207
22307
|
#
|
22208
22308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxy AWS API Documentation
|
22209
22309
|
#
|
@@ -22259,6 +22359,7 @@ module Aws::RDS
|
|
22259
22359
|
# resp.db_proxy_endpoint.created_date #=> Time
|
22260
22360
|
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
22261
22361
|
# resp.db_proxy_endpoint.is_default #=> Boolean
|
22362
|
+
# resp.db_proxy_endpoint.endpoint_network_type #=> String, one of "IPV4", "IPV6", "DUAL"
|
22262
22363
|
#
|
22263
22364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint AWS API Documentation
|
22264
22365
|
#
|
@@ -32516,7 +32617,7 @@ module Aws::RDS
|
|
32516
32617
|
tracer: tracer
|
32517
32618
|
)
|
32518
32619
|
context[:gem_name] = 'aws-sdk-rds'
|
32519
|
-
context[:gem_version] = '1.
|
32620
|
+
context[:gem_version] = '1.293.0'
|
32520
32621
|
Seahorse::Client::Request.new(handlers, context)
|
32521
32622
|
end
|
32522
32623
|
|
@@ -282,6 +282,7 @@ module Aws::RDS
|
|
282
282
|
DataFilter = Shapes::StringShape.new(name: 'DataFilter')
|
283
283
|
DatabaseArn = Shapes::StringShape.new(name: 'DatabaseArn')
|
284
284
|
DatabaseInsightsMode = Shapes::StringShape.new(name: 'DatabaseInsightsMode')
|
285
|
+
DefaultAuthScheme = Shapes::StringShape.new(name: 'DefaultAuthScheme')
|
285
286
|
DeleteBlueGreenDeploymentRequest = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentRequest')
|
286
287
|
DeleteBlueGreenDeploymentResponse = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentResponse')
|
287
288
|
DeleteCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'DeleteCustomDBEngineVersionMessage')
|
@@ -400,6 +401,7 @@ module Aws::RDS
|
|
400
401
|
EnableHttpEndpointResponse = Shapes::StructureShape.new(name: 'EnableHttpEndpointResponse')
|
401
402
|
EncryptionContextMap = Shapes::MapShape.new(name: 'EncryptionContextMap')
|
402
403
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
404
|
+
EndpointNetworkType = Shapes::StringShape.new(name: 'EndpointNetworkType')
|
403
405
|
Engine = Shapes::StringShape.new(name: 'Engine')
|
404
406
|
EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
|
405
407
|
EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
|
@@ -739,6 +741,7 @@ module Aws::RDS
|
|
739
741
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
740
742
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
741
743
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
744
|
+
TargetConnectionNetworkType = Shapes::StringShape.new(name: 'TargetConnectionNetworkType')
|
742
745
|
TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
|
743
746
|
TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
|
744
747
|
TargetDBParameterGroupName = Shapes::StringShape.new(name: 'TargetDBParameterGroupName')
|
@@ -1263,6 +1266,7 @@ module Aws::RDS
|
|
1263
1266
|
CreateDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1264
1267
|
CreateDBProxyEndpointRequest.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1265
1268
|
CreateDBProxyEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1269
|
+
CreateDBProxyEndpointRequest.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1266
1270
|
CreateDBProxyEndpointRequest.struct_class = Types::CreateDBProxyEndpointRequest
|
1267
1271
|
|
1268
1272
|
CreateDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
@@ -1270,7 +1274,8 @@ module Aws::RDS
|
|
1270
1274
|
|
1271
1275
|
CreateDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
1272
1276
|
CreateDBProxyRequest.add_member(:engine_family, Shapes::ShapeRef.new(shape: EngineFamily, required: true, location_name: "EngineFamily"))
|
1273
|
-
CreateDBProxyRequest.add_member(:
|
1277
|
+
CreateDBProxyRequest.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: DefaultAuthScheme, location_name: "DefaultAuthScheme"))
|
1278
|
+
CreateDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
|
1274
1279
|
CreateDBProxyRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
|
1275
1280
|
CreateDBProxyRequest.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "VpcSubnetIds"))
|
1276
1281
|
CreateDBProxyRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
@@ -1278,6 +1283,8 @@ module Aws::RDS
|
|
1278
1283
|
CreateDBProxyRequest.add_member(:idle_client_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IdleClientTimeout"))
|
1279
1284
|
CreateDBProxyRequest.add_member(:debug_logging, Shapes::ShapeRef.new(shape: Boolean, location_name: "DebugLogging"))
|
1280
1285
|
CreateDBProxyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1286
|
+
CreateDBProxyRequest.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1287
|
+
CreateDBProxyRequest.add_member(:target_connection_network_type, Shapes::ShapeRef.new(shape: TargetConnectionNetworkType, location_name: "TargetConnectionNetworkType"))
|
1281
1288
|
CreateDBProxyRequest.struct_class = Types::CreateDBProxyRequest
|
1282
1289
|
|
1283
1290
|
CreateDBProxyResponse.add_member(:db_proxy, Shapes::ShapeRef.new(shape: DBProxy, location_name: "DBProxy"))
|
@@ -1935,6 +1942,7 @@ module Aws::RDS
|
|
1935
1942
|
DBProxy.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1936
1943
|
DBProxy.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1937
1944
|
DBProxy.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
|
1945
|
+
DBProxy.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: String, location_name: "DefaultAuthScheme"))
|
1938
1946
|
DBProxy.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigInfoList, location_name: "Auth"))
|
1939
1947
|
DBProxy.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
1940
1948
|
DBProxy.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
@@ -1943,6 +1951,8 @@ module Aws::RDS
|
|
1943
1951
|
DBProxy.add_member(:debug_logging, Shapes::ShapeRef.new(shape: Boolean, location_name: "DebugLogging"))
|
1944
1952
|
DBProxy.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1945
1953
|
DBProxy.add_member(:updated_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "UpdatedDate"))
|
1954
|
+
DBProxy.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1955
|
+
DBProxy.add_member(:target_connection_network_type, Shapes::ShapeRef.new(shape: TargetConnectionNetworkType, location_name: "TargetConnectionNetworkType"))
|
1946
1956
|
DBProxy.struct_class = Types::DBProxy
|
1947
1957
|
|
1948
1958
|
DBProxyAlreadyExistsFault.struct_class = Types::DBProxyAlreadyExistsFault
|
@@ -1958,6 +1968,7 @@ module Aws::RDS
|
|
1958
1968
|
DBProxyEndpoint.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1959
1969
|
DBProxyEndpoint.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1960
1970
|
DBProxyEndpoint.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1971
|
+
DBProxyEndpoint.add_member(:endpoint_network_type, Shapes::ShapeRef.new(shape: EndpointNetworkType, location_name: "EndpointNetworkType"))
|
1961
1972
|
DBProxyEndpoint.struct_class = Types::DBProxyEndpoint
|
1962
1973
|
|
1963
1974
|
DBProxyEndpointAlreadyExistsFault.struct_class = Types::DBProxyEndpointAlreadyExistsFault
|
@@ -3250,6 +3261,7 @@ module Aws::RDS
|
|
3250
3261
|
|
3251
3262
|
ModifyDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
3252
3263
|
ModifyDBProxyRequest.add_member(:new_db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "NewDBProxyName"))
|
3264
|
+
ModifyDBProxyRequest.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: DefaultAuthScheme, location_name: "DefaultAuthScheme"))
|
3253
3265
|
ModifyDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
|
3254
3266
|
ModifyDBProxyRequest.add_member(:require_tls, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RequireTLS"))
|
3255
3267
|
ModifyDBProxyRequest.add_member(:idle_client_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IdleClientTimeout"))
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -5978,6 +5978,29 @@ module Aws::RDS
|
|
5978
5978
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
5979
5979
|
# @return [Array<Types::Tag>]
|
5980
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
|
+
#
|
5981
6004
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
|
5982
6005
|
#
|
5983
6006
|
class CreateDBProxyEndpointRequest < Struct.new(
|
@@ -5986,7 +6009,8 @@ module Aws::RDS
|
|
5986
6009
|
:vpc_subnet_ids,
|
5987
6010
|
:vpc_security_group_ids,
|
5988
6011
|
:target_role,
|
5989
|
-
:tags
|
6012
|
+
:tags,
|
6013
|
+
:endpoint_network_type)
|
5990
6014
|
SENSITIVE = []
|
5991
6015
|
include Aws::Structure
|
5992
6016
|
end
|
@@ -6024,6 +6048,16 @@ module Aws::RDS
|
|
6024
6048
|
# `SQLSERVER`.
|
6025
6049
|
# @return [String]
|
6026
6050
|
#
|
6051
|
+
# @!attribute [rw] default_auth_scheme
|
6052
|
+
# The default authentication scheme that the proxy uses for client
|
6053
|
+
# connections to the proxy and connections from the proxy to the
|
6054
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
6055
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
6056
|
+
# connect to the database. If you don't specify `DefaultAuthScheme`
|
6057
|
+
# or specify this parameter as `NONE`, you must specify the `Auth`
|
6058
|
+
# option.
|
6059
|
+
# @return [String]
|
6060
|
+
#
|
6027
6061
|
# @!attribute [rw] auth
|
6028
6062
|
# The authorization mechanism that the proxy uses.
|
6029
6063
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -6067,11 +6101,57 @@ module Aws::RDS
|
|
6067
6101
|
# your choosing with the proxy.
|
6068
6102
|
# @return [Array<Types::Tag>]
|
6069
6103
|
#
|
6104
|
+
# @!attribute [rw] endpoint_network_type
|
6105
|
+
# The network type of the DB proxy endpoint. The network type
|
6106
|
+
# determines the IP version that the proxy endpoint supports.
|
6107
|
+
#
|
6108
|
+
# Valid values:
|
6109
|
+
#
|
6110
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
6111
|
+
#
|
6112
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
6113
|
+
#
|
6114
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
6115
|
+
#
|
6116
|
+
# Default: `IPV4`
|
6117
|
+
#
|
6118
|
+
# Constraints:
|
6119
|
+
#
|
6120
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
6121
|
+
# an IPv6 CIDR block.
|
6122
|
+
#
|
6123
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
6124
|
+
# `dedicated`.
|
6125
|
+
# @return [String]
|
6126
|
+
#
|
6127
|
+
# @!attribute [rw] target_connection_network_type
|
6128
|
+
# The network type that the proxy uses to connect to the target
|
6129
|
+
# database. The network type determines the IP version that the proxy
|
6130
|
+
# uses for connections to the database.
|
6131
|
+
#
|
6132
|
+
# Valid values:
|
6133
|
+
#
|
6134
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
6135
|
+
#
|
6136
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
6137
|
+
#
|
6138
|
+
# Default: `IPV4`
|
6139
|
+
#
|
6140
|
+
# Constraints:
|
6141
|
+
#
|
6142
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
6143
|
+
# RDS doesn't support IPv6-only databases.
|
6144
|
+
#
|
6145
|
+
# * All targets registered with the proxy must be compatible with the
|
6146
|
+
# specified network type.
|
6147
|
+
# @return [String]
|
6148
|
+
#
|
6070
6149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyRequest AWS API Documentation
|
6071
6150
|
#
|
6072
6151
|
class CreateDBProxyRequest < Struct.new(
|
6073
6152
|
:db_proxy_name,
|
6074
6153
|
:engine_family,
|
6154
|
+
:default_auth_scheme,
|
6075
6155
|
:auth,
|
6076
6156
|
:role_arn,
|
6077
6157
|
:vpc_subnet_ids,
|
@@ -6079,7 +6159,9 @@ module Aws::RDS
|
|
6079
6159
|
:require_tls,
|
6080
6160
|
:idle_client_timeout,
|
6081
6161
|
:debug_logging,
|
6082
|
-
:tags
|
6162
|
+
:tags,
|
6163
|
+
:endpoint_network_type,
|
6164
|
+
:target_connection_network_type)
|
6083
6165
|
SENSITIVE = []
|
6084
6166
|
include Aws::Structure
|
6085
6167
|
end
|
@@ -10335,6 +10417,14 @@ module Aws::RDS
|
|
10335
10417
|
# The EC2 subnet IDs for the proxy.
|
10336
10418
|
# @return [Array<String>]
|
10337
10419
|
#
|
10420
|
+
# @!attribute [rw] default_auth_scheme
|
10421
|
+
# The default authentication scheme that the proxy uses for client
|
10422
|
+
# connections to the proxy and connections from the proxy to the
|
10423
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
10424
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
10425
|
+
# connect to the database.
|
10426
|
+
# @return [String]
|
10427
|
+
#
|
10338
10428
|
# @!attribute [rw] auth
|
10339
10429
|
# One or more data structures specifying the authorization mechanism
|
10340
10430
|
# to connect to the associated RDS DB instance or Aurora DB cluster.
|
@@ -10384,6 +10474,31 @@ module Aws::RDS
|
|
10384
10474
|
# The date and time when the proxy was last updated.
|
10385
10475
|
# @return [Time]
|
10386
10476
|
#
|
10477
|
+
# @!attribute [rw] endpoint_network_type
|
10478
|
+
# The network type of the DB proxy endpoint. The network type
|
10479
|
+
# determines the IP version that the proxy endpoint supports.
|
10480
|
+
#
|
10481
|
+
# Valid values:
|
10482
|
+
#
|
10483
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10484
|
+
#
|
10485
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10486
|
+
#
|
10487
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10488
|
+
# @return [String]
|
10489
|
+
#
|
10490
|
+
# @!attribute [rw] target_connection_network_type
|
10491
|
+
# The network type that the proxy uses to connect to the target
|
10492
|
+
# database. The network type determines the IP version that the proxy
|
10493
|
+
# uses for connections to the database.
|
10494
|
+
#
|
10495
|
+
# Valid values:
|
10496
|
+
#
|
10497
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
10498
|
+
#
|
10499
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
10500
|
+
# @return [String]
|
10501
|
+
#
|
10387
10502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxy AWS API Documentation
|
10388
10503
|
#
|
10389
10504
|
class DBProxy < Struct.new(
|
@@ -10394,6 +10509,7 @@ module Aws::RDS
|
|
10394
10509
|
:vpc_id,
|
10395
10510
|
:vpc_security_group_ids,
|
10396
10511
|
:vpc_subnet_ids,
|
10512
|
+
:default_auth_scheme,
|
10397
10513
|
:auth,
|
10398
10514
|
:role_arn,
|
10399
10515
|
:endpoint,
|
@@ -10401,7 +10517,9 @@ module Aws::RDS
|
|
10401
10517
|
:idle_client_timeout,
|
10402
10518
|
:debug_logging,
|
10403
10519
|
:created_date,
|
10404
|
-
:updated_date
|
10520
|
+
:updated_date,
|
10521
|
+
:endpoint_network_type,
|
10522
|
+
:target_connection_network_type)
|
10405
10523
|
SENSITIVE = []
|
10406
10524
|
include Aws::Structure
|
10407
10525
|
end
|
@@ -10480,6 +10598,19 @@ module Aws::RDS
|
|
10480
10598
|
# DB proxy can be either read/write or read-only.
|
10481
10599
|
# @return [Boolean]
|
10482
10600
|
#
|
10601
|
+
# @!attribute [rw] endpoint_network_type
|
10602
|
+
# The network type of the DB proxy endpoint. The network type
|
10603
|
+
# determines the IP version that the proxy endpoint supports.
|
10604
|
+
#
|
10605
|
+
# Valid values:
|
10606
|
+
#
|
10607
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10608
|
+
#
|
10609
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10610
|
+
#
|
10611
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10612
|
+
# @return [String]
|
10613
|
+
#
|
10483
10614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
|
10484
10615
|
#
|
10485
10616
|
class DBProxyEndpoint < Struct.new(
|
@@ -10493,7 +10624,8 @@ module Aws::RDS
|
|
10493
10624
|
:endpoint,
|
10494
10625
|
:created_date,
|
10495
10626
|
:target_role,
|
10496
|
-
:is_default
|
10627
|
+
:is_default,
|
10628
|
+
:endpoint_network_type)
|
10497
10629
|
SENSITIVE = []
|
10498
10630
|
include Aws::Structure
|
10499
10631
|
end
|
@@ -20120,6 +20252,14 @@ module Aws::RDS
|
|
20120
20252
|
# it can't end with a hyphen or contain two consecutive hyphens.
|
20121
20253
|
# @return [String]
|
20122
20254
|
#
|
20255
|
+
# @!attribute [rw] default_auth_scheme
|
20256
|
+
# The default authentication scheme that the proxy uses for client
|
20257
|
+
# connections to the proxy and connections from the proxy to the
|
20258
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
20259
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
20260
|
+
# connect to the database.
|
20261
|
+
# @return [String]
|
20262
|
+
#
|
20123
20263
|
# @!attribute [rw] auth
|
20124
20264
|
# The new authentication settings for the `DBProxy`.
|
20125
20265
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -20160,6 +20300,7 @@ module Aws::RDS
|
|
20160
20300
|
class ModifyDBProxyRequest < Struct.new(
|
20161
20301
|
:db_proxy_name,
|
20162
20302
|
:new_db_proxy_name,
|
20303
|
+
:default_auth_scheme,
|
20163
20304
|
:auth,
|
20164
20305
|
:require_tls,
|
20165
20306
|
:idle_client_timeout,
|
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.293.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -700,7 +700,8 @@ module Aws
|
|
700
700
|
def create_db_proxy: (
|
701
701
|
db_proxy_name: ::String,
|
702
702
|
engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER"),
|
703
|
-
|
703
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
704
|
+
?auth: Array[
|
704
705
|
{
|
705
706
|
description: ::String?,
|
706
707
|
user_name: ::String?,
|
@@ -721,7 +722,9 @@ module Aws
|
|
721
722
|
key: ::String?,
|
722
723
|
value: ::String?
|
723
724
|
},
|
724
|
-
]
|
725
|
+
],
|
726
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL"),
|
727
|
+
?target_connection_network_type: ("IPV4" | "IPV6")
|
725
728
|
) -> _CreateDBProxyResponseSuccess
|
726
729
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyResponseSuccess
|
727
730
|
|
@@ -741,7 +744,8 @@ module Aws
|
|
741
744
|
key: ::String?,
|
742
745
|
value: ::String?
|
743
746
|
},
|
744
|
-
]
|
747
|
+
],
|
748
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
745
749
|
) -> _CreateDBProxyEndpointResponseSuccess
|
746
750
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyEndpointResponseSuccess
|
747
751
|
|
@@ -2526,6 +2530,7 @@ module Aws
|
|
2526
2530
|
def modify_db_proxy: (
|
2527
2531
|
db_proxy_name: ::String,
|
2528
2532
|
?new_db_proxy_name: ::String,
|
2533
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
2529
2534
|
?auth: Array[
|
2530
2535
|
{
|
2531
2536
|
description: ::String?,
|
data/sig/types.rbs
CHANGED
@@ -588,6 +588,7 @@ module Aws::RDS
|
|
588
588
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
589
589
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
590
590
|
attr_accessor tags: ::Array[Types::Tag]
|
591
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
591
592
|
SENSITIVE: []
|
592
593
|
end
|
593
594
|
|
@@ -599,6 +600,7 @@ module Aws::RDS
|
|
599
600
|
class CreateDBProxyRequest
|
600
601
|
attr_accessor db_proxy_name: ::String
|
601
602
|
attr_accessor engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER")
|
603
|
+
attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
|
602
604
|
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
603
605
|
attr_accessor role_arn: ::String
|
604
606
|
attr_accessor vpc_subnet_ids: ::Array[::String]
|
@@ -607,6 +609,8 @@ module Aws::RDS
|
|
607
609
|
attr_accessor idle_client_timeout: ::Integer
|
608
610
|
attr_accessor debug_logging: bool
|
609
611
|
attr_accessor tags: ::Array[Types::Tag]
|
612
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
613
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
610
614
|
SENSITIVE: []
|
611
615
|
end
|
612
616
|
|
@@ -1365,6 +1369,7 @@ module Aws::RDS
|
|
1365
1369
|
attr_accessor vpc_id: ::String
|
1366
1370
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1367
1371
|
attr_accessor vpc_subnet_ids: ::Array[::String]
|
1372
|
+
attr_accessor default_auth_scheme: ::String
|
1368
1373
|
attr_accessor auth: ::Array[Types::UserAuthConfigInfo]
|
1369
1374
|
attr_accessor role_arn: ::String
|
1370
1375
|
attr_accessor endpoint: ::String
|
@@ -1373,6 +1378,8 @@ module Aws::RDS
|
|
1373
1378
|
attr_accessor debug_logging: bool
|
1374
1379
|
attr_accessor created_date: ::Time
|
1375
1380
|
attr_accessor updated_date: ::Time
|
1381
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
1382
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
1376
1383
|
SENSITIVE: []
|
1377
1384
|
end
|
1378
1385
|
|
@@ -1391,6 +1398,7 @@ module Aws::RDS
|
|
1391
1398
|
attr_accessor created_date: ::Time
|
1392
1399
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
1393
1400
|
attr_accessor is_default: bool
|
1401
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
1394
1402
|
SENSITIVE: []
|
1395
1403
|
end
|
1396
1404
|
|
@@ -3025,6 +3033,7 @@ module Aws::RDS
|
|
3025
3033
|
class ModifyDBProxyRequest
|
3026
3034
|
attr_accessor db_proxy_name: ::String
|
3027
3035
|
attr_accessor new_db_proxy_name: ::String
|
3036
|
+
attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
|
3028
3037
|
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
3029
3038
|
attr_accessor require_tls: bool
|
3030
3039
|
attr_accessor idle_client_timeout: ::Integer
|