aws-sdk-rds 1.72.0 → 1.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e15eb8231b78a158891b55f25cdd2aeaaf587f89
4
- data.tar.gz: b9dae8763e8150734f077e22797cb8116beded5a
3
+ metadata.gz: 97eb695cef21f8fa167a1cf5dbe4603d28ef6500
4
+ data.tar.gz: 3dfc7b9ccbb3aabd2772f300fa172de61e9badb5
5
5
  SHA512:
6
- metadata.gz: '08cf71cd91efebd1371f965c6ed6b7581b9891e2055b5562b04d9fcdb4b36fe336aef6228f436699b8301887671de8712377514bafea96af3d0228b41e33362c'
7
- data.tar.gz: 0e0a8fe9c74c0b6ac8224d66e164f2661b0286924d2ade012efe069ea2ce7b4064e03d37373f5f835953203fc8eb643df6871ac658f0caec6459b3b8ca7ed990
6
+ metadata.gz: f92536771ea5de8650d0322f818321cf076ca55c2c5a7cd7c44ec0728eb688d15be1e43b08903053432d0622a46af77678860f5f77595dd4fa205051f5311f06
7
+ data.tar.gz: 46d0f2c3cb77ef66d18ab0cb5031f264c6093d4475adcc9abc74e84a795461ee5a7797d2abed19ff979f28f2a4e70ab9b3201b6b719113d449ced14d1fc1a086
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.72.0'
71
+ GEM_VERSION = '1.73.0'
72
72
 
73
73
  end
@@ -21,6 +21,7 @@ module Aws::RDS
21
21
  @name = extract_name(args, options)
22
22
  @data = options.delete(:data)
23
23
  @client = options.delete(:client) || Client.new(options)
24
+ @waiter_block_warned = false
24
25
  end
25
26
 
26
27
  # @!group Read-Only Attributes
@@ -21,6 +21,7 @@ module Aws::RDS
21
21
  @id = extract_id(args, options)
22
22
  @data = options.delete(:data)
23
23
  @client = options.delete(:client) || Client.new(options)
24
+ @waiter_block_warned = false
24
25
  end
25
26
 
26
27
  # @!group Read-Only Attributes
@@ -4292,6 +4292,128 @@ module Aws::RDS
4292
4292
  req.send_request(options)
4293
4293
  end
4294
4294
 
4295
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
4296
+ # preview release. It is subject to change.
4297
+ #
4298
+ # </note>
4299
+ #
4300
+ # Creates a new DB proxy.
4301
+ #
4302
+ # @option params [required, String] :db_proxy_name
4303
+ # The identifier for the proxy. This name must be unique for all proxies
4304
+ # owned by your AWS account in the specified AWS Region. An identifier
4305
+ # must begin with a letter and must contain only ASCII letters, digits,
4306
+ # and hyphens; it can't end with a hyphen or contain two consecutive
4307
+ # hyphens.
4308
+ #
4309
+ # @option params [required, String] :engine_family
4310
+ # The kinds of databases that the proxy can connect to. This value
4311
+ # determines which database network protocol the proxy recognizes when
4312
+ # it interprets network traffic to and from the database. Currently,
4313
+ # this value is always `MYSQL`. The engine family applies to both RDS
4314
+ # MySQL and Aurora MySQL.
4315
+ #
4316
+ # @option params [required, Array<Types::UserAuthConfig>] :auth
4317
+ # The authorization mechanism that the proxy uses.
4318
+ #
4319
+ # @option params [required, String] :role_arn
4320
+ # The Amazon Resource Name (ARN) of the IAM role that the proxy uses to
4321
+ # access secrets in AWS Secrets Manager.
4322
+ #
4323
+ # @option params [required, Array<String>] :vpc_subnet_ids
4324
+ # One or more VPC subnet IDs to associate with the new proxy.
4325
+ #
4326
+ # @option params [Array<String>] :vpc_security_group_ids
4327
+ # One or more VPC security group IDs to associate with the new proxy.
4328
+ #
4329
+ # @option params [Boolean] :require_tls
4330
+ # A Boolean parameter that specifies whether Transport Layer Security
4331
+ # (TLS) encryption is required for connections to the proxy. By enabling
4332
+ # this setting, you can enforce encrypted TLS connections to the proxy.
4333
+ #
4334
+ # @option params [Integer] :idle_client_timeout
4335
+ # The number of seconds that a connection to the proxy can be inactive
4336
+ # before the proxy disconnects it. You can set this value higher or
4337
+ # lower than the connection timeout limit for the associated database.
4338
+ #
4339
+ # @option params [Boolean] :debug_logging
4340
+ # Whether the proxy includes detailed information about SQL statements
4341
+ # in its logs. This information helps you to debug issues involving SQL
4342
+ # behavior or the performance and scalability of the proxy connections.
4343
+ # The debug information includes the text of SQL statements that you
4344
+ # submit through the proxy. Thus, only enable this setting when needed
4345
+ # for debugging, and only when you have security measures in place to
4346
+ # safeguard any sensitive information that appears in the logs.
4347
+ #
4348
+ # @option params [Array<Types::Tag>] :tags
4349
+ # An optional set of key-value pairs to associate arbitrary data of your
4350
+ # choosing with the proxy.
4351
+ #
4352
+ # @return [Types::CreateDBProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4353
+ #
4354
+ # * {Types::CreateDBProxyResponse#db_proxy #db_proxy} => Types::DBProxy
4355
+ #
4356
+ # @example Request syntax with placeholder values
4357
+ #
4358
+ # resp = client.create_db_proxy({
4359
+ # db_proxy_name: "String", # required
4360
+ # engine_family: "MYSQL", # required, accepts MYSQL
4361
+ # auth: [ # required
4362
+ # {
4363
+ # description: "String",
4364
+ # user_name: "String",
4365
+ # auth_scheme: "SECRETS", # accepts SECRETS
4366
+ # secret_arn: "String",
4367
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
4368
+ # },
4369
+ # ],
4370
+ # role_arn: "String", # required
4371
+ # vpc_subnet_ids: ["String"], # required
4372
+ # vpc_security_group_ids: ["String"],
4373
+ # require_tls: false,
4374
+ # idle_client_timeout: 1,
4375
+ # debug_logging: false,
4376
+ # tags: [
4377
+ # {
4378
+ # key: "String",
4379
+ # value: "String",
4380
+ # },
4381
+ # ],
4382
+ # })
4383
+ #
4384
+ # @example Response structure
4385
+ #
4386
+ # resp.db_proxy.db_proxy_name #=> String
4387
+ # resp.db_proxy.db_proxy_arn #=> String
4388
+ # resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
4389
+ # resp.db_proxy.engine_family #=> String
4390
+ # resp.db_proxy.vpc_security_group_ids #=> Array
4391
+ # resp.db_proxy.vpc_security_group_ids[0] #=> String
4392
+ # resp.db_proxy.vpc_subnet_ids #=> Array
4393
+ # resp.db_proxy.vpc_subnet_ids[0] #=> String
4394
+ # resp.db_proxy.auth #=> Array
4395
+ # resp.db_proxy.auth[0].description #=> String
4396
+ # resp.db_proxy.auth[0].user_name #=> String
4397
+ # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
4398
+ # resp.db_proxy.auth[0].secret_arn #=> String
4399
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
4400
+ # resp.db_proxy.role_arn #=> String
4401
+ # resp.db_proxy.endpoint #=> String
4402
+ # resp.db_proxy.require_tls #=> Boolean
4403
+ # resp.db_proxy.idle_client_timeout #=> Integer
4404
+ # resp.db_proxy.debug_logging #=> Boolean
4405
+ # resp.db_proxy.created_date #=> Time
4406
+ # resp.db_proxy.updated_date #=> Time
4407
+ #
4408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxy AWS API Documentation
4409
+ #
4410
+ # @overload create_db_proxy(params = {})
4411
+ # @param [Hash] params ({})
4412
+ def create_db_proxy(params = {}, options = {})
4413
+ req = build_request(:create_db_proxy, params)
4414
+ req.send_request(options)
4415
+ end
4416
+
4295
4417
  # Creates a new DB security group. DB security groups control access to
4296
4418
  # a DB instance.
4297
4419
  #
@@ -5659,6 +5781,59 @@ module Aws::RDS
5659
5781
  req.send_request(options)
5660
5782
  end
5661
5783
 
5784
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
5785
+ # preview release. It is subject to change.
5786
+ #
5787
+ # </note>
5788
+ #
5789
+ # Deletes an existing proxy.
5790
+ #
5791
+ # @option params [required, String] :db_proxy_name
5792
+ # The name of the DB proxy to delete.
5793
+ #
5794
+ # @return [Types::DeleteDBProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5795
+ #
5796
+ # * {Types::DeleteDBProxyResponse#db_proxy #db_proxy} => Types::DBProxy
5797
+ #
5798
+ # @example Request syntax with placeholder values
5799
+ #
5800
+ # resp = client.delete_db_proxy({
5801
+ # db_proxy_name: "String", # required
5802
+ # })
5803
+ #
5804
+ # @example Response structure
5805
+ #
5806
+ # resp.db_proxy.db_proxy_name #=> String
5807
+ # resp.db_proxy.db_proxy_arn #=> String
5808
+ # resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
5809
+ # resp.db_proxy.engine_family #=> String
5810
+ # resp.db_proxy.vpc_security_group_ids #=> Array
5811
+ # resp.db_proxy.vpc_security_group_ids[0] #=> String
5812
+ # resp.db_proxy.vpc_subnet_ids #=> Array
5813
+ # resp.db_proxy.vpc_subnet_ids[0] #=> String
5814
+ # resp.db_proxy.auth #=> Array
5815
+ # resp.db_proxy.auth[0].description #=> String
5816
+ # resp.db_proxy.auth[0].user_name #=> String
5817
+ # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
5818
+ # resp.db_proxy.auth[0].secret_arn #=> String
5819
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
5820
+ # resp.db_proxy.role_arn #=> String
5821
+ # resp.db_proxy.endpoint #=> String
5822
+ # resp.db_proxy.require_tls #=> Boolean
5823
+ # resp.db_proxy.idle_client_timeout #=> Integer
5824
+ # resp.db_proxy.debug_logging #=> Boolean
5825
+ # resp.db_proxy.created_date #=> Time
5826
+ # resp.db_proxy.updated_date #=> Time
5827
+ #
5828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxy AWS API Documentation
5829
+ #
5830
+ # @overload delete_db_proxy(params = {})
5831
+ # @param [Hash] params ({})
5832
+ def delete_db_proxy(params = {}, options = {})
5833
+ req = build_request(:delete_db_proxy, params)
5834
+ req.send_request(options)
5835
+ end
5836
+
5662
5837
  # Deletes a DB security group.
5663
5838
  #
5664
5839
  # <note markdown="1"> The specified DB security group must not be associated with any DB
@@ -6015,6 +6190,47 @@ module Aws::RDS
6015
6190
  req.send_request(options)
6016
6191
  end
6017
6192
 
6193
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
6194
+ # preview release. It is subject to change.
6195
+ #
6196
+ # </note>
6197
+ #
6198
+ # Remove the association between one or more `DBProxyTarget` data
6199
+ # structures and a `DBProxyTargetGroup`.
6200
+ #
6201
+ # @option params [required, String] :db_proxy_name
6202
+ # The identifier of the `DBProxy` that is associated with the
6203
+ # `DBProxyTargetGroup`.
6204
+ #
6205
+ # @option params [String] :target_group_name
6206
+ # The identifier of the `DBProxyTargetGroup`.
6207
+ #
6208
+ # @option params [Array<String>] :db_instance_identifiers
6209
+ # One or more DB instance identifiers.
6210
+ #
6211
+ # @option params [Array<String>] :db_cluster_identifiers
6212
+ # One or more DB cluster identifiers.
6213
+ #
6214
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6215
+ #
6216
+ # @example Request syntax with placeholder values
6217
+ #
6218
+ # resp = client.deregister_db_proxy_targets({
6219
+ # db_proxy_name: "String", # required
6220
+ # target_group_name: "String",
6221
+ # db_instance_identifiers: ["String"],
6222
+ # db_cluster_identifiers: ["String"],
6223
+ # })
6224
+ #
6225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeregisterDBProxyTargets AWS API Documentation
6226
+ #
6227
+ # @overload deregister_db_proxy_targets(params = {})
6228
+ # @param [Hash] params ({})
6229
+ def deregister_db_proxy_targets(params = {}, options = {})
6230
+ req = build_request(:deregister_db_proxy_targets, params)
6231
+ req.send_request(options)
6232
+ end
6233
+
6018
6234
  # Lists all of the attributes for a customer account. The attributes
6019
6235
  # include Amazon RDS quotas for the account, such as the number of DB
6020
6236
  # instances allowed. The description for a quota includes the quota
@@ -7808,6 +8024,239 @@ module Aws::RDS
7808
8024
  req.send_request(options)
7809
8025
  end
7810
8026
 
8027
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8028
+ # preview release. It is subject to change.
8029
+ #
8030
+ # </note>
8031
+ #
8032
+ # Returns information about DB proxies.
8033
+ #
8034
+ # @option params [String] :db_proxy_name
8035
+ # The name of the DB proxy.
8036
+ #
8037
+ # @option params [Array<Types::Filter>] :filters
8038
+ # This parameter is not currently supported.
8039
+ #
8040
+ # @option params [String] :marker
8041
+ # An optional pagination token provided by a previous request. If this
8042
+ # parameter is specified, the response includes only records beyond the
8043
+ # marker, up to the value specified by `MaxRecords`.
8044
+ #
8045
+ # @option params [Integer] :max_records
8046
+ # The maximum number of records to include in the response. If more
8047
+ # records exist than the specified `MaxRecords` value, a pagination
8048
+ # token called a marker is included in the response so that the
8049
+ # remaining results can be retrieved.
8050
+ #
8051
+ # Default: 100
8052
+ #
8053
+ # Constraints: Minimum 20, maximum 100.
8054
+ #
8055
+ # @return [Types::DescribeDBProxiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8056
+ #
8057
+ # * {Types::DescribeDBProxiesResponse#db_proxies #db_proxies} => Array&lt;Types::DBProxy&gt;
8058
+ # * {Types::DescribeDBProxiesResponse#marker #marker} => String
8059
+ #
8060
+ # @example Request syntax with placeholder values
8061
+ #
8062
+ # resp = client.describe_db_proxies({
8063
+ # db_proxy_name: "String",
8064
+ # filters: [
8065
+ # {
8066
+ # name: "String", # required
8067
+ # values: ["String"], # required
8068
+ # },
8069
+ # ],
8070
+ # marker: "String",
8071
+ # max_records: 1,
8072
+ # })
8073
+ #
8074
+ # @example Response structure
8075
+ #
8076
+ # resp.db_proxies #=> Array
8077
+ # resp.db_proxies[0].db_proxy_name #=> String
8078
+ # resp.db_proxies[0].db_proxy_arn #=> String
8079
+ # resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
8080
+ # resp.db_proxies[0].engine_family #=> String
8081
+ # resp.db_proxies[0].vpc_security_group_ids #=> Array
8082
+ # resp.db_proxies[0].vpc_security_group_ids[0] #=> String
8083
+ # resp.db_proxies[0].vpc_subnet_ids #=> Array
8084
+ # resp.db_proxies[0].vpc_subnet_ids[0] #=> String
8085
+ # resp.db_proxies[0].auth #=> Array
8086
+ # resp.db_proxies[0].auth[0].description #=> String
8087
+ # resp.db_proxies[0].auth[0].user_name #=> String
8088
+ # resp.db_proxies[0].auth[0].auth_scheme #=> String, one of "SECRETS"
8089
+ # resp.db_proxies[0].auth[0].secret_arn #=> String
8090
+ # resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
8091
+ # resp.db_proxies[0].role_arn #=> String
8092
+ # resp.db_proxies[0].endpoint #=> String
8093
+ # resp.db_proxies[0].require_tls #=> Boolean
8094
+ # resp.db_proxies[0].idle_client_timeout #=> Integer
8095
+ # resp.db_proxies[0].debug_logging #=> Boolean
8096
+ # resp.db_proxies[0].created_date #=> Time
8097
+ # resp.db_proxies[0].updated_date #=> Time
8098
+ # resp.marker #=> String
8099
+ #
8100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxies AWS API Documentation
8101
+ #
8102
+ # @overload describe_db_proxies(params = {})
8103
+ # @param [Hash] params ({})
8104
+ def describe_db_proxies(params = {}, options = {})
8105
+ req = build_request(:describe_db_proxies, params)
8106
+ req.send_request(options)
8107
+ end
8108
+
8109
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8110
+ # preview release. It is subject to change.
8111
+ #
8112
+ # </note>
8113
+ #
8114
+ # Returns information about DB proxy target groups, represented by
8115
+ # `DBProxyTargetGroup` data structures.
8116
+ #
8117
+ # @option params [required, String] :db_proxy_name
8118
+ # The identifier of the `DBProxy` associated with the target group.
8119
+ #
8120
+ # @option params [String] :target_group_name
8121
+ # The identifier of the `DBProxyTargetGroup` to describe.
8122
+ #
8123
+ # @option params [Array<Types::Filter>] :filters
8124
+ # This parameter is not currently supported.
8125
+ #
8126
+ # @option params [String] :marker
8127
+ # An optional pagination token provided by a previous request. If this
8128
+ # parameter is specified, the response includes only records beyond the
8129
+ # marker, up to the value specified by `MaxRecords`.
8130
+ #
8131
+ # @option params [Integer] :max_records
8132
+ # The maximum number of records to include in the response. If more
8133
+ # records exist than the specified `MaxRecords` value, a pagination
8134
+ # token called a marker is included in the response so that the
8135
+ # remaining results can be retrieved.
8136
+ #
8137
+ # Default: 100
8138
+ #
8139
+ # Constraints: Minimum 20, maximum 100.
8140
+ #
8141
+ # @return [Types::DescribeDBProxyTargetGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8142
+ #
8143
+ # * {Types::DescribeDBProxyTargetGroupsResponse#target_groups #target_groups} => Array&lt;Types::DBProxyTargetGroup&gt;
8144
+ # * {Types::DescribeDBProxyTargetGroupsResponse#marker #marker} => String
8145
+ #
8146
+ # @example Request syntax with placeholder values
8147
+ #
8148
+ # resp = client.describe_db_proxy_target_groups({
8149
+ # db_proxy_name: "String", # required
8150
+ # target_group_name: "String",
8151
+ # filters: [
8152
+ # {
8153
+ # name: "String", # required
8154
+ # values: ["String"], # required
8155
+ # },
8156
+ # ],
8157
+ # marker: "String",
8158
+ # max_records: 1,
8159
+ # })
8160
+ #
8161
+ # @example Response structure
8162
+ #
8163
+ # resp.target_groups #=> Array
8164
+ # resp.target_groups[0].db_proxy_name #=> String
8165
+ # resp.target_groups[0].target_group_name #=> String
8166
+ # resp.target_groups[0].target_group_arn #=> String
8167
+ # resp.target_groups[0].is_default #=> Boolean
8168
+ # resp.target_groups[0].status #=> String
8169
+ # resp.target_groups[0].connection_pool_config.max_connections_percent #=> Integer
8170
+ # resp.target_groups[0].connection_pool_config.max_idle_connections_percent #=> Integer
8171
+ # resp.target_groups[0].connection_pool_config.connection_borrow_timeout #=> Integer
8172
+ # resp.target_groups[0].connection_pool_config.session_pinning_filters #=> Array
8173
+ # resp.target_groups[0].connection_pool_config.session_pinning_filters[0] #=> String
8174
+ # resp.target_groups[0].connection_pool_config.init_query #=> String
8175
+ # resp.target_groups[0].created_date #=> Time
8176
+ # resp.target_groups[0].updated_date #=> Time
8177
+ # resp.marker #=> String
8178
+ #
8179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargetGroups AWS API Documentation
8180
+ #
8181
+ # @overload describe_db_proxy_target_groups(params = {})
8182
+ # @param [Hash] params ({})
8183
+ def describe_db_proxy_target_groups(params = {}, options = {})
8184
+ req = build_request(:describe_db_proxy_target_groups, params)
8185
+ req.send_request(options)
8186
+ end
8187
+
8188
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8189
+ # preview release. It is subject to change.
8190
+ #
8191
+ # </note>
8192
+ #
8193
+ # Returns information about `DBProxyTarget` objects. This API supports
8194
+ # pagination.
8195
+ #
8196
+ # @option params [required, String] :db_proxy_name
8197
+ # The identifier of the `DBProxyTarget` to describe.
8198
+ #
8199
+ # @option params [String] :target_group_name
8200
+ # The identifier of the `DBProxyTargetGroup` to describe.
8201
+ #
8202
+ # @option params [Array<Types::Filter>] :filters
8203
+ # This parameter is not currently supported.
8204
+ #
8205
+ # @option params [String] :marker
8206
+ # An optional pagination token provided by a previous request. If this
8207
+ # parameter is specified, the response includes only records beyond the
8208
+ # marker, up to the value specified by `MaxRecords`.
8209
+ #
8210
+ # @option params [Integer] :max_records
8211
+ # The maximum number of records to include in the response. If more
8212
+ # records exist than the specified `MaxRecords` value, a pagination
8213
+ # token called a marker is included in the response so that the
8214
+ # remaining results can be retrieved.
8215
+ #
8216
+ # Default: 100
8217
+ #
8218
+ # Constraints: Minimum 20, maximum 100.
8219
+ #
8220
+ # @return [Types::DescribeDBProxyTargetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8221
+ #
8222
+ # * {Types::DescribeDBProxyTargetsResponse#targets #targets} => Array&lt;Types::DBProxyTarget&gt;
8223
+ # * {Types::DescribeDBProxyTargetsResponse#marker #marker} => String
8224
+ #
8225
+ # @example Request syntax with placeholder values
8226
+ #
8227
+ # resp = client.describe_db_proxy_targets({
8228
+ # db_proxy_name: "String", # required
8229
+ # target_group_name: "String",
8230
+ # filters: [
8231
+ # {
8232
+ # name: "String", # required
8233
+ # values: ["String"], # required
8234
+ # },
8235
+ # ],
8236
+ # marker: "String",
8237
+ # max_records: 1,
8238
+ # })
8239
+ #
8240
+ # @example Response structure
8241
+ #
8242
+ # resp.targets #=> Array
8243
+ # resp.targets[0].target_arn #=> String
8244
+ # resp.targets[0].endpoint #=> String
8245
+ # resp.targets[0].tracked_cluster_id #=> String
8246
+ # resp.targets[0].rds_resource_id #=> String
8247
+ # resp.targets[0].port #=> Integer
8248
+ # resp.targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
8249
+ # resp.marker #=> String
8250
+ #
8251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargets AWS API Documentation
8252
+ #
8253
+ # @overload describe_db_proxy_targets(params = {})
8254
+ # @param [Hash] params ({})
8255
+ def describe_db_proxy_targets(params = {}, options = {})
8256
+ req = build_request(:describe_db_proxy_targets, params)
8257
+ req.send_request(options)
8258
+ end
8259
+
7811
8260
  # Returns a list of `DBSecurityGroup` descriptions. If a
7812
8261
  # `DBSecurityGroupName` is specified, the list will contain only the
7813
8262
  # descriptions of the specified DB security group.
@@ -11860,6 +12309,176 @@ module Aws::RDS
11860
12309
  req.send_request(options)
11861
12310
  end
11862
12311
 
12312
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
12313
+ # preview release. It is subject to change.
12314
+ #
12315
+ # </note>
12316
+ #
12317
+ # Changes the settings for an existing DB proxy.
12318
+ #
12319
+ # @option params [required, String] :db_proxy_name
12320
+ # The identifier for the `DBProxy` to modify.
12321
+ #
12322
+ # @option params [String] :new_db_proxy_name
12323
+ # The new identifier for the `DBProxy`. An identifier must begin with a
12324
+ # letter and must contain only ASCII letters, digits, and hyphens; it
12325
+ # can't end with a hyphen or contain two consecutive hyphens.
12326
+ #
12327
+ # @option params [Array<Types::UserAuthConfig>] :auth
12328
+ # The new authentication settings for the `DBProxy`.
12329
+ #
12330
+ # @option params [Boolean] :require_tls
12331
+ # Whether Transport Layer Security (TLS) encryption is required for
12332
+ # connections to the proxy. By enabling this setting, you can enforce
12333
+ # encrypted TLS connections to the proxy, even if the associated
12334
+ # database doesn't use TLS.
12335
+ #
12336
+ # @option params [Integer] :idle_client_timeout
12337
+ # The number of seconds that a connection to the proxy can be inactive
12338
+ # before the proxy disconnects it. You can set this value higher or
12339
+ # lower than the connection timeout limit for the associated database.
12340
+ #
12341
+ # @option params [Boolean] :debug_logging
12342
+ # Whether the proxy includes detailed information about SQL statements
12343
+ # in its logs. This information helps you to debug issues involving SQL
12344
+ # behavior or the performance and scalability of the proxy connections.
12345
+ # The debug information includes the text of SQL statements that you
12346
+ # submit through the proxy. Thus, only enable this setting when needed
12347
+ # for debugging, and only when you have security measures in place to
12348
+ # safeguard any sensitive information that appears in the logs.
12349
+ #
12350
+ # @option params [String] :role_arn
12351
+ # The Amazon Resource Name (ARN) of the IAM role that the proxy uses to
12352
+ # access secrets in AWS Secrets Manager.
12353
+ #
12354
+ # @option params [Array<String>] :security_groups
12355
+ # The new list of security groups for the `DBProxy`.
12356
+ #
12357
+ # @return [Types::ModifyDBProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12358
+ #
12359
+ # * {Types::ModifyDBProxyResponse#db_proxy #db_proxy} => Types::DBProxy
12360
+ #
12361
+ # @example Request syntax with placeholder values
12362
+ #
12363
+ # resp = client.modify_db_proxy({
12364
+ # db_proxy_name: "String", # required
12365
+ # new_db_proxy_name: "String",
12366
+ # auth: [
12367
+ # {
12368
+ # description: "String",
12369
+ # user_name: "String",
12370
+ # auth_scheme: "SECRETS", # accepts SECRETS
12371
+ # secret_arn: "String",
12372
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
12373
+ # },
12374
+ # ],
12375
+ # require_tls: false,
12376
+ # idle_client_timeout: 1,
12377
+ # debug_logging: false,
12378
+ # role_arn: "String",
12379
+ # security_groups: ["String"],
12380
+ # })
12381
+ #
12382
+ # @example Response structure
12383
+ #
12384
+ # resp.db_proxy.db_proxy_name #=> String
12385
+ # resp.db_proxy.db_proxy_arn #=> String
12386
+ # resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
12387
+ # resp.db_proxy.engine_family #=> String
12388
+ # resp.db_proxy.vpc_security_group_ids #=> Array
12389
+ # resp.db_proxy.vpc_security_group_ids[0] #=> String
12390
+ # resp.db_proxy.vpc_subnet_ids #=> Array
12391
+ # resp.db_proxy.vpc_subnet_ids[0] #=> String
12392
+ # resp.db_proxy.auth #=> Array
12393
+ # resp.db_proxy.auth[0].description #=> String
12394
+ # resp.db_proxy.auth[0].user_name #=> String
12395
+ # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
12396
+ # resp.db_proxy.auth[0].secret_arn #=> String
12397
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
12398
+ # resp.db_proxy.role_arn #=> String
12399
+ # resp.db_proxy.endpoint #=> String
12400
+ # resp.db_proxy.require_tls #=> Boolean
12401
+ # resp.db_proxy.idle_client_timeout #=> Integer
12402
+ # resp.db_proxy.debug_logging #=> Boolean
12403
+ # resp.db_proxy.created_date #=> Time
12404
+ # resp.db_proxy.updated_date #=> Time
12405
+ #
12406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxy AWS API Documentation
12407
+ #
12408
+ # @overload modify_db_proxy(params = {})
12409
+ # @param [Hash] params ({})
12410
+ def modify_db_proxy(params = {}, options = {})
12411
+ req = build_request(:modify_db_proxy, params)
12412
+ req.send_request(options)
12413
+ end
12414
+
12415
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
12416
+ # preview release. It is subject to change.
12417
+ #
12418
+ # </note>
12419
+ #
12420
+ # Modifies the properties of a `DBProxyTargetGroup`.
12421
+ #
12422
+ # @option params [required, String] :target_group_name
12423
+ # The name of the new target group to assign to the proxy.
12424
+ #
12425
+ # @option params [required, String] :db_proxy_name
12426
+ # The name of the new proxy to which to assign the target group.
12427
+ #
12428
+ # @option params [Types::ConnectionPoolConfiguration] :connection_pool_config
12429
+ # The settings that determine the size and behavior of the connection
12430
+ # pool for the target group.
12431
+ #
12432
+ # @option params [String] :new_name
12433
+ # The new name for the modified `DBProxyTarget`. An identifier must
12434
+ # begin with a letter and must contain only ASCII letters, digits, and
12435
+ # hyphens; it can't end with a hyphen or contain two consecutive
12436
+ # hyphens.
12437
+ #
12438
+ # @return [Types::ModifyDBProxyTargetGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12439
+ #
12440
+ # * {Types::ModifyDBProxyTargetGroupResponse#db_proxy_target_group #db_proxy_target_group} => Types::DBProxyTargetGroup
12441
+ #
12442
+ # @example Request syntax with placeholder values
12443
+ #
12444
+ # resp = client.modify_db_proxy_target_group({
12445
+ # target_group_name: "String", # required
12446
+ # db_proxy_name: "String", # required
12447
+ # connection_pool_config: {
12448
+ # max_connections_percent: 1,
12449
+ # max_idle_connections_percent: 1,
12450
+ # connection_borrow_timeout: 1,
12451
+ # session_pinning_filters: ["String"],
12452
+ # init_query: "String",
12453
+ # },
12454
+ # new_name: "String",
12455
+ # })
12456
+ #
12457
+ # @example Response structure
12458
+ #
12459
+ # resp.db_proxy_target_group.db_proxy_name #=> String
12460
+ # resp.db_proxy_target_group.target_group_name #=> String
12461
+ # resp.db_proxy_target_group.target_group_arn #=> String
12462
+ # resp.db_proxy_target_group.is_default #=> Boolean
12463
+ # resp.db_proxy_target_group.status #=> String
12464
+ # resp.db_proxy_target_group.connection_pool_config.max_connections_percent #=> Integer
12465
+ # resp.db_proxy_target_group.connection_pool_config.max_idle_connections_percent #=> Integer
12466
+ # resp.db_proxy_target_group.connection_pool_config.connection_borrow_timeout #=> Integer
12467
+ # resp.db_proxy_target_group.connection_pool_config.session_pinning_filters #=> Array
12468
+ # resp.db_proxy_target_group.connection_pool_config.session_pinning_filters[0] #=> String
12469
+ # resp.db_proxy_target_group.connection_pool_config.init_query #=> String
12470
+ # resp.db_proxy_target_group.created_date #=> Time
12471
+ # resp.db_proxy_target_group.updated_date #=> Time
12472
+ #
12473
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyTargetGroup AWS API Documentation
12474
+ #
12475
+ # @overload modify_db_proxy_target_group(params = {})
12476
+ # @param [Hash] params ({})
12477
+ def modify_db_proxy_target_group(params = {}, options = {})
12478
+ req = build_request(:modify_db_proxy_target_group, params)
12479
+ req.send_request(options)
12480
+ end
12481
+
11863
12482
  # Updates a manual DB snapshot, which can be encrypted or not encrypted,
11864
12483
  # with a new engine version.
11865
12484
  #
@@ -13042,6 +13661,59 @@ module Aws::RDS
13042
13661
  req.send_request(options)
13043
13662
  end
13044
13663
 
13664
+ # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
13665
+ # preview release. It is subject to change.
13666
+ #
13667
+ # </note>
13668
+ #
13669
+ # Associate one or more `DBProxyTarget` data structures with a
13670
+ # `DBProxyTargetGroup`.
13671
+ #
13672
+ # @option params [required, String] :db_proxy_name
13673
+ # The identifier of the `DBProxy` that is associated with the
13674
+ # `DBProxyTargetGroup`.
13675
+ #
13676
+ # @option params [String] :target_group_name
13677
+ # The identifier of the `DBProxyTargetGroup`.
13678
+ #
13679
+ # @option params [Array<String>] :db_instance_identifiers
13680
+ # One or more DB instance identifiers.
13681
+ #
13682
+ # @option params [Array<String>] :db_cluster_identifiers
13683
+ # One or more DB cluster identifiers.
13684
+ #
13685
+ # @return [Types::RegisterDBProxyTargetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13686
+ #
13687
+ # * {Types::RegisterDBProxyTargetsResponse#db_proxy_targets #db_proxy_targets} => Array&lt;Types::DBProxyTarget&gt;
13688
+ #
13689
+ # @example Request syntax with placeholder values
13690
+ #
13691
+ # resp = client.register_db_proxy_targets({
13692
+ # db_proxy_name: "String", # required
13693
+ # target_group_name: "String",
13694
+ # db_instance_identifiers: ["String"],
13695
+ # db_cluster_identifiers: ["String"],
13696
+ # })
13697
+ #
13698
+ # @example Response structure
13699
+ #
13700
+ # resp.db_proxy_targets #=> Array
13701
+ # resp.db_proxy_targets[0].target_arn #=> String
13702
+ # resp.db_proxy_targets[0].endpoint #=> String
13703
+ # resp.db_proxy_targets[0].tracked_cluster_id #=> String
13704
+ # resp.db_proxy_targets[0].rds_resource_id #=> String
13705
+ # resp.db_proxy_targets[0].port #=> Integer
13706
+ # resp.db_proxy_targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
13707
+ #
13708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets AWS API Documentation
13709
+ #
13710
+ # @overload register_db_proxy_targets(params = {})
13711
+ # @param [Hash] params ({})
13712
+ def register_db_proxy_targets(params = {}, options = {})
13713
+ req = build_request(:register_db_proxy_targets, params)
13714
+ req.send_request(options)
13715
+ end
13716
+
13045
13717
  # Detaches an Aurora secondary cluster from an Aurora global database
13046
13718
  # cluster. The cluster becomes a standalone cluster with read-write
13047
13719
  # capability instead of being read-only and receiving data from a
@@ -17035,7 +17707,7 @@ module Aws::RDS
17035
17707
  params: params,
17036
17708
  config: config)
17037
17709
  context[:gem_name] = 'aws-sdk-rds'
17038
- context[:gem_version] = '1.72.0'
17710
+ context[:gem_version] = '1.73.0'
17039
17711
  Seahorse::Client::Request.new(handlers, context)
17040
17712
  end
17041
17713