aws-sdk 2.583.0 → 2.587.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +632 -201
  4. package/apis/ebs-2019-11-02.examples.json +5 -0
  5. package/apis/ebs-2019-11-02.min.json +195 -0
  6. package/apis/ebs-2019-11-02.paginators.json +14 -0
  7. package/apis/kafka-2018-11-14.min.json +170 -34
  8. package/apis/kendra-2019-02-03.min.json +2 -1
  9. package/apis/kinesis-video-signaling-2019-12-04.examples.json +5 -0
  10. package/apis/kinesis-video-signaling-2019-12-04.min.json +79 -0
  11. package/apis/kinesis-video-signaling-2019-12-04.paginators.json +4 -0
  12. package/apis/kinesisvideo-2017-09-30.min.json +281 -8
  13. package/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
  14. package/apis/lambda-2015-03-31.min.json +217 -25
  15. package/apis/lambda-2015-03-31.paginators.json +6 -0
  16. package/apis/metadata.json +8 -0
  17. package/apis/rds-2014-10-31.min.json +495 -101
  18. package/apis/rds-2014-10-31.paginators.json +18 -0
  19. package/apis/rekognition-2016-06-27.min.json +409 -85
  20. package/apis/rekognition-2016-06-27.paginators.json +12 -0
  21. package/apis/rekognition-2016-06-27.waiters2.json +45 -0
  22. package/apis/sagemaker-2017-07-24.min.json +3471 -472
  23. package/apis/sagemaker-2017-07-24.paginators.json +128 -16
  24. package/apis/sagemaker-2017-07-24.waiters2.json +30 -0
  25. package/apis/ssm-2014-11-06.min.json +94 -71
  26. package/apis/states-2016-11-23.min.json +92 -55
  27. package/clients/all.d.ts +2 -0
  28. package/clients/all.js +3 -1
  29. package/clients/apigatewayv2.d.ts +856 -1161
  30. package/clients/applicationautoscaling.d.ts +32 -32
  31. package/clients/browser_default.d.ts +1 -0
  32. package/clients/browser_default.js +2 -1
  33. package/clients/ebs.d.ts +211 -0
  34. package/clients/ebs.js +18 -0
  35. package/clients/kafka.d.ts +152 -0
  36. package/clients/kendra.d.ts +7 -3
  37. package/clients/kinesisvideo.d.ts +312 -1
  38. package/clients/kinesisvideosignalingchannels.d.ts +121 -0
  39. package/clients/kinesisvideosignalingchannels.js +18 -0
  40. package/clients/kms.d.ts +6 -6
  41. package/clients/lambda.d.ts +199 -2
  42. package/clients/quicksight.d.ts +223 -223
  43. package/clients/rds.d.ts +549 -0
  44. package/clients/rekognition.d.ts +423 -8
  45. package/clients/rekognition.js +1 -0
  46. package/clients/sagemaker.d.ts +4588 -610
  47. package/clients/ssm.d.ts +42 -6
  48. package/clients/stepfunctions.d.ts +54 -0
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +1182 -1102
  51. package/dist/aws-sdk.js +2265 -859
  52. package/dist/aws-sdk.min.js +35 -35
  53. package/lib/config.d.ts +12 -0
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. package/lib/services/s3.js +5 -4
  57. package/lib/services/sts.js +2 -4
  58. package/package.json +1 -1
  59. package/scripts/region-checker/whitelist.js +5 -5
package/clients/rds.d.ts CHANGED
@@ -173,6 +173,14 @@ declare class RDS extends Service {
173
173
  * Creates a new DB parameter group. A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup. Once you've created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance. When you associate a new DB parameter group with a running DB instance, you need to reboot the DB instance without failover for the new DB parameter group and associated settings to take effect. After you create a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the create action before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.
174
174
  */
175
175
  createDBParameterGroup(callback?: (err: AWSError, data: RDS.Types.CreateDBParameterGroupResult) => void): Request<RDS.Types.CreateDBParameterGroupResult, AWSError>;
176
+ /**
177
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Creates a new DB proxy.
178
+ */
179
+ createDBProxy(params: RDS.Types.CreateDBProxyRequest, callback?: (err: AWSError, data: RDS.Types.CreateDBProxyResponse) => void): Request<RDS.Types.CreateDBProxyResponse, AWSError>;
180
+ /**
181
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Creates a new DB proxy.
182
+ */
183
+ createDBProxy(callback?: (err: AWSError, data: RDS.Types.CreateDBProxyResponse) => void): Request<RDS.Types.CreateDBProxyResponse, AWSError>;
176
184
  /**
177
185
  * Creates a new DB security group. DB security groups control access to a DB instance. A DB security group controls access to EC2-Classic DB instances that are not in a VPC.
178
186
  */
@@ -285,6 +293,14 @@ declare class RDS extends Service {
285
293
  * Deletes a specified DB parameter group. The DB parameter group to be deleted can't be associated with any DB instances.
286
294
  */
287
295
  deleteDBParameterGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
296
+ /**
297
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Deletes an existing proxy.
298
+ */
299
+ deleteDBProxy(params: RDS.Types.DeleteDBProxyRequest, callback?: (err: AWSError, data: RDS.Types.DeleteDBProxyResponse) => void): Request<RDS.Types.DeleteDBProxyResponse, AWSError>;
300
+ /**
301
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Deletes an existing proxy.
302
+ */
303
+ deleteDBProxy(callback?: (err: AWSError, data: RDS.Types.DeleteDBProxyResponse) => void): Request<RDS.Types.DeleteDBProxyResponse, AWSError>;
288
304
  /**
289
305
  * Deletes a DB security group. The specified DB security group must not be associated with any DB instances.
290
306
  */
@@ -341,6 +357,14 @@ declare class RDS extends Service {
341
357
  * Deletes an existing option group.
342
358
  */
343
359
  deleteOptionGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
360
+ /**
361
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.
362
+ */
363
+ deregisterDBProxyTargets(params: RDS.Types.DeregisterDBProxyTargetsRequest, callback?: (err: AWSError, data: RDS.Types.DeregisterDBProxyTargetsResponse) => void): Request<RDS.Types.DeregisterDBProxyTargetsResponse, AWSError>;
364
+ /**
365
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.
366
+ */
367
+ deregisterDBProxyTargets(callback?: (err: AWSError, data: RDS.Types.DeregisterDBProxyTargetsResponse) => void): Request<RDS.Types.DeregisterDBProxyTargetsResponse, AWSError>;
344
368
  /**
345
369
  * Lists all of the attributes for a customer account. The attributes include Amazon RDS quotas for the account, such as the number of DB instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This command doesn't take any parameters.
346
370
  */
@@ -469,6 +493,30 @@ declare class RDS extends Service {
469
493
  * Returns the detailed parameter list for a particular DB parameter group.
470
494
  */
471
495
  describeDBParameters(callback?: (err: AWSError, data: RDS.Types.DBParameterGroupDetails) => void): Request<RDS.Types.DBParameterGroupDetails, AWSError>;
496
+ /**
497
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DB proxies.
498
+ */
499
+ describeDBProxies(params: RDS.Types.DescribeDBProxiesRequest, callback?: (err: AWSError, data: RDS.Types.DescribeDBProxiesResponse) => void): Request<RDS.Types.DescribeDBProxiesResponse, AWSError>;
500
+ /**
501
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DB proxies.
502
+ */
503
+ describeDBProxies(callback?: (err: AWSError, data: RDS.Types.DescribeDBProxiesResponse) => void): Request<RDS.Types.DescribeDBProxiesResponse, AWSError>;
504
+ /**
505
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DB proxy target groups, represented by DBProxyTargetGroup data structures.
506
+ */
507
+ describeDBProxyTargetGroups(params: RDS.Types.DescribeDBProxyTargetGroupsRequest, callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetGroupsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetGroupsResponse, AWSError>;
508
+ /**
509
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DB proxy target groups, represented by DBProxyTargetGroup data structures.
510
+ */
511
+ describeDBProxyTargetGroups(callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetGroupsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetGroupsResponse, AWSError>;
512
+ /**
513
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DBProxyTarget objects. This API supports pagination.
514
+ */
515
+ describeDBProxyTargets(params: RDS.Types.DescribeDBProxyTargetsRequest, callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetsResponse, AWSError>;
516
+ /**
517
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Returns information about DBProxyTarget objects. This API supports pagination.
518
+ */
519
+ describeDBProxyTargets(callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetsResponse, AWSError>;
472
520
  /**
473
521
  * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.
474
522
  */
@@ -709,6 +757,22 @@ declare class RDS extends Service {
709
757
  * Modifies the parameters of a DB parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request. Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB instance associated with the parameter group before the change can take effect. After you modify a DB parameter group, you should wait at least 5 minutes before creating your first DB instance that uses that DB parameter group as the default parameter group. This allows Amazon RDS to fully complete the modify action before the parameter group is used as the default for a new DB instance. This is especially important for parameters that are critical when creating the default database for a DB instance, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon RDS console or the DescribeDBParameters command to verify that your DB parameter group has been created or modified.
710
758
  */
711
759
  modifyDBParameterGroup(callback?: (err: AWSError, data: RDS.Types.DBParameterGroupNameMessage) => void): Request<RDS.Types.DBParameterGroupNameMessage, AWSError>;
760
+ /**
761
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Changes the settings for an existing DB proxy.
762
+ */
763
+ modifyDBProxy(params: RDS.Types.ModifyDBProxyRequest, callback?: (err: AWSError, data: RDS.Types.ModifyDBProxyResponse) => void): Request<RDS.Types.ModifyDBProxyResponse, AWSError>;
764
+ /**
765
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Changes the settings for an existing DB proxy.
766
+ */
767
+ modifyDBProxy(callback?: (err: AWSError, data: RDS.Types.ModifyDBProxyResponse) => void): Request<RDS.Types.ModifyDBProxyResponse, AWSError>;
768
+ /**
769
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Modifies the properties of a DBProxyTargetGroup.
770
+ */
771
+ modifyDBProxyTargetGroup(params: RDS.Types.ModifyDBProxyTargetGroupRequest, callback?: (err: AWSError, data: RDS.Types.ModifyDBProxyTargetGroupResponse) => void): Request<RDS.Types.ModifyDBProxyTargetGroupResponse, AWSError>;
772
+ /**
773
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Modifies the properties of a DBProxyTargetGroup.
774
+ */
775
+ modifyDBProxyTargetGroup(callback?: (err: AWSError, data: RDS.Types.ModifyDBProxyTargetGroupResponse) => void): Request<RDS.Types.ModifyDBProxyTargetGroupResponse, AWSError>;
712
776
  /**
713
777
  * Updates a manual DB snapshot, which can be encrypted or not encrypted, with a new engine version. Amazon RDS supports upgrading DB snapshots for MySQL, Oracle, and PostgreSQL.
714
778
  */
@@ -789,6 +853,14 @@ declare class RDS extends Service {
789
853
  * You might need to reboot your DB instance, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB parameter group associated with the DB instance, you must reboot the instance for the changes to take effect. Rebooting a DB instance restarts the database engine service. Rebooting a DB instance results in a momentary outage, during which the DB instance status is set to rebooting. For more information about rebooting, see Rebooting a DB Instance in the Amazon RDS User Guide.
790
854
  */
791
855
  rebootDBInstance(callback?: (err: AWSError, data: RDS.Types.RebootDBInstanceResult) => void): Request<RDS.Types.RebootDBInstanceResult, AWSError>;
856
+ /**
857
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Associate one or more DBProxyTarget data structures with a DBProxyTargetGroup.
858
+ */
859
+ registerDBProxyTargets(params: RDS.Types.RegisterDBProxyTargetsRequest, callback?: (err: AWSError, data: RDS.Types.RegisterDBProxyTargetsResponse) => void): Request<RDS.Types.RegisterDBProxyTargetsResponse, AWSError>;
860
+ /**
861
+ * This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change. Associate one or more DBProxyTarget data structures with a DBProxyTargetGroup.
862
+ */
863
+ registerDBProxyTargets(callback?: (err: AWSError, data: RDS.Types.RegisterDBProxyTargetsResponse) => void): Request<RDS.Types.RegisterDBProxyTargetsResponse, AWSError>;
792
864
  /**
793
865
  * Detaches an Aurora secondary cluster from an Aurora global database cluster. The cluster becomes a standalone cluster with read-write capability instead of being read-only and receiving data from a primary cluster in a different region. This action only applies to Aurora DB clusters.
794
866
  */
@@ -1095,6 +1167,7 @@ declare namespace RDS {
1095
1167
  ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
1096
1168
  }
1097
1169
  export type AttributeValueList = String[];
1170
+ export type AuthScheme = "SECRETS"|string;
1098
1171
  export interface AuthorizeDBSecurityGroupIngressMessage {
1099
1172
  /**
1100
1173
  * The name of the DB security group to add authorization to.
@@ -1220,6 +1293,50 @@ declare namespace RDS {
1220
1293
  */
1221
1294
  DisableLogTypes?: LogTypeList;
1222
1295
  }
1296
+ export interface ConnectionPoolConfiguration {
1297
+ /**
1298
+ * The maximum size of the connection pool for each target in a target group. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 100 Constraints: between 1 and 100
1299
+ */
1300
+ MaxConnectionsPercent?: IntegerOptional;
1301
+ /**
1302
+ * Controls how actively the proxy closes idle database connections in the connection pool. A high value enables the proxy to leave a high percentage of idle connections open. A low value causes the proxy to close idle client connections and return the underlying database connections to the connection pool. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 50 Constraints: between 0 and MaxConnectionsPercent
1303
+ */
1304
+ MaxIdleConnectionsPercent?: IntegerOptional;
1305
+ /**
1306
+ * The number of seconds for a proxy to wait for a connection to become available in the connection pool. Only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions. Default: 120 Constraints: between 1 and 3600, or 0 representing unlimited
1307
+ */
1308
+ ConnectionBorrowTimeout?: IntegerOptional;
1309
+ /**
1310
+ * Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. Default: no session pinning filters
1311
+ */
1312
+ SessionPinningFilters?: StringList;
1313
+ /**
1314
+ * One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET statements to make sure that each connection has identical settings such as time zone and character set. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET statement, such as SET x=1, y=2. Default: no initialization query
1315
+ */
1316
+ InitQuery?: String;
1317
+ }
1318
+ export interface ConnectionPoolConfigurationInfo {
1319
+ /**
1320
+ * The maximum size of the connection pool for each target in a target group. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.
1321
+ */
1322
+ MaxConnectionsPercent?: Integer;
1323
+ /**
1324
+ * Controls how actively the proxy closes idle database connections in the connection pool. A high value enables the proxy to leave a high percentage of idle connections open. A low value causes the proxy to close idle client connections and return the underlying database connections to the connection pool. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group.
1325
+ */
1326
+ MaxIdleConnectionsPercent?: Integer;
1327
+ /**
1328
+ * The number of seconds for a proxy to wait for a connection to become available in the connection pool. Only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions.
1329
+ */
1330
+ ConnectionBorrowTimeout?: Integer;
1331
+ /**
1332
+ * Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. Currently, the only allowed value is EXCLUDE_VARIABLE_SETS.
1333
+ */
1334
+ SessionPinningFilters?: StringList;
1335
+ /**
1336
+ * One or more SQL statements for the proxy to run when opening each new database connection. Typically used with SET statements to make sure that each connection has identical settings such as time zone and character set. This setting is empty by default. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single SET statement, such as SET x=1, y=2.
1337
+ */
1338
+ InitQuery?: String;
1339
+ }
1223
1340
  export interface CopyDBClusterParameterGroupMessage {
1224
1341
  /**
1225
1342
  * The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon Aurora User Guide. Constraints: Must specify a valid DB cluster parameter group. If the source DB cluster parameter group is in the same AWS Region as the copy, specify a valid DB parameter group identifier, for example my-db-cluster-param-group, or a valid ARN. If the source DB parameter group is in a different AWS Region than the copy, specify a valid DB cluster parameter group ARN, for example arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1.
@@ -1888,6 +2005,54 @@ declare namespace RDS {
1888
2005
  export interface CreateDBParameterGroupResult {
1889
2006
  DBParameterGroup?: DBParameterGroup;
1890
2007
  }
2008
+ export interface CreateDBProxyRequest {
2009
+ /**
2010
+ * The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.
2011
+ */
2012
+ DBProxyName: String;
2013
+ /**
2014
+ * The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. Currently, this value is always MYSQL. The engine family applies to both RDS MySQL and Aurora MySQL.
2015
+ */
2016
+ EngineFamily: EngineFamily;
2017
+ /**
2018
+ * The authorization mechanism that the proxy uses.
2019
+ */
2020
+ Auth: UserAuthConfigList;
2021
+ /**
2022
+ * The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager.
2023
+ */
2024
+ RoleArn: String;
2025
+ /**
2026
+ * One or more VPC subnet IDs to associate with the new proxy.
2027
+ */
2028
+ VpcSubnetIds: StringList;
2029
+ /**
2030
+ * One or more VPC security group IDs to associate with the new proxy.
2031
+ */
2032
+ VpcSecurityGroupIds?: StringList;
2033
+ /**
2034
+ * A Boolean parameter that specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy.
2035
+ */
2036
+ RequireTLS?: Boolean;
2037
+ /**
2038
+ * The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.
2039
+ */
2040
+ IdleClientTimeout?: IntegerOptional;
2041
+ /**
2042
+ * Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.
2043
+ */
2044
+ DebugLogging?: Boolean;
2045
+ /**
2046
+ * An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
2047
+ */
2048
+ Tags?: TagList;
2049
+ }
2050
+ export interface CreateDBProxyResponse {
2051
+ /**
2052
+ * The DBProxy structure corresponding to the new proxy.
2053
+ */
2054
+ DBProxy?: DBProxy;
2055
+ }
1891
2056
  export interface CreateDBSecurityGroupMessage {
1892
2057
  /**
1893
2058
  * The name for the DB security group. This value is stored as a lowercase string. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens Must not be "Default" Example: mysecuritygroup
@@ -3100,6 +3265,126 @@ declare namespace RDS {
3100
3265
  */
3101
3266
  DBParameterGroups?: DBParameterGroupList;
3102
3267
  }
3268
+ export interface DBProxy {
3269
+ /**
3270
+ * The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.
3271
+ */
3272
+ DBProxyName?: String;
3273
+ /**
3274
+ * The Amazon Resource Name (ARN) for the proxy.
3275
+ */
3276
+ DBProxyArn?: String;
3277
+ /**
3278
+ * The current status of this proxy. A status of available means the proxy is ready to handle requests. Other values indicate that you must wait for the proxy to be ready, or take some action to resolve an issue.
3279
+ */
3280
+ Status?: DBProxyStatus;
3281
+ /**
3282
+ * Currently, this value is always MYSQL. The engine family applies to both RDS MySQL and Aurora MySQL.
3283
+ */
3284
+ EngineFamily?: String;
3285
+ /**
3286
+ * Provides a list of VPC security groups that the proxy belongs to.
3287
+ */
3288
+ VpcSecurityGroupIds?: StringList;
3289
+ /**
3290
+ * The EC2 subnet IDs for the proxy.
3291
+ */
3292
+ VpcSubnetIds?: StringList;
3293
+ /**
3294
+ * One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance or Aurora DB cluster.
3295
+ */
3296
+ Auth?: UserAuthConfigInfoList;
3297
+ /**
3298
+ * The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access Amazon Secrets Manager.
3299
+ */
3300
+ RoleArn?: String;
3301
+ /**
3302
+ * The endpoint that you can use to connect to the proxy. You include the endpoint value in the connection string for a database client application.
3303
+ */
3304
+ Endpoint?: String;
3305
+ /**
3306
+ * Indicates whether Transport Layer Security (TLS) encryption is required for connections to the proxy.
3307
+ */
3308
+ RequireTLS?: Boolean;
3309
+ /**
3310
+ * The number of seconds a connection to the proxy can have no activity before the proxy drops the client connection. The proxy keeps the underlying database connection open and puts it back into the connection pool for reuse by later connection requests. Default: 1800 (30 minutes) Constraints: 1 to 28,800
3311
+ */
3312
+ IdleClientTimeout?: Integer;
3313
+ /**
3314
+ * Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.
3315
+ */
3316
+ DebugLogging?: Boolean;
3317
+ /**
3318
+ * The date and time when the proxy was first created.
3319
+ */
3320
+ CreatedDate?: TStamp;
3321
+ /**
3322
+ * The date and time when the proxy was last updated.
3323
+ */
3324
+ UpdatedDate?: TStamp;
3325
+ }
3326
+ export type DBProxyList = DBProxy[];
3327
+ export type DBProxyStatus = "available"|"modifying"|"incompatible-network"|"insufficient-resource-limits"|"creating"|"deleting"|string;
3328
+ export interface DBProxyTarget {
3329
+ /**
3330
+ * The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.
3331
+ */
3332
+ TargetArn?: String;
3333
+ /**
3334
+ * The writer endpoint for the RDS DB instance or Aurora DB cluster.
3335
+ */
3336
+ Endpoint?: String;
3337
+ /**
3338
+ * The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an
3339
+ */
3340
+ TrackedClusterId?: String;
3341
+ /**
3342
+ * The identifier representing the target. It can be the instance identifier for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.
3343
+ */
3344
+ RdsResourceId?: String;
3345
+ /**
3346
+ * The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.
3347
+ */
3348
+ Port?: Integer;
3349
+ /**
3350
+ * Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.
3351
+ */
3352
+ Type?: TargetType;
3353
+ }
3354
+ export interface DBProxyTargetGroup {
3355
+ /**
3356
+ * The identifier for the RDS proxy associated with this target group.
3357
+ */
3358
+ DBProxyName?: String;
3359
+ /**
3360
+ * The identifier for the target group. This name must be unique for all target groups owned by your AWS account in the specified AWS Region.
3361
+ */
3362
+ TargetGroupName?: String;
3363
+ /**
3364
+ * The Amazon Resource Name (ARN) representing the target group.
3365
+ */
3366
+ TargetGroupArn?: String;
3367
+ /**
3368
+ * Whether this target group is the first one used for connection requests by the associated proxy. Because each proxy is currently associated with a single target group, currently this setting is always true.
3369
+ */
3370
+ IsDefault?: Boolean;
3371
+ /**
3372
+ * The current status of this target group. A status of available means the target group is correctly associated with a database. Other values indicate that you must wait for the target group to be ready, or take some action to resolve an issue.
3373
+ */
3374
+ Status?: String;
3375
+ /**
3376
+ * The settings that determine the size and behavior of the connection pool for the target group.
3377
+ */
3378
+ ConnectionPoolConfig?: ConnectionPoolConfigurationInfo;
3379
+ /**
3380
+ * The date and time when the target group was first created.
3381
+ */
3382
+ CreatedDate?: TStamp;
3383
+ /**
3384
+ * The date and time when the target group was last updated.
3385
+ */
3386
+ UpdatedDate?: TStamp;
3387
+ }
3103
3388
  export interface DBSecurityGroup {
3104
3389
  /**
3105
3390
  * Provides the AWS ID of the owner of a specific DB security group.
@@ -3419,6 +3704,18 @@ declare namespace RDS {
3419
3704
  */
3420
3705
  DBParameterGroupName: String;
3421
3706
  }
3707
+ export interface DeleteDBProxyRequest {
3708
+ /**
3709
+ * The name of the DB proxy to delete.
3710
+ */
3711
+ DBProxyName: String;
3712
+ }
3713
+ export interface DeleteDBProxyResponse {
3714
+ /**
3715
+ * The data structure representing the details of the DB proxy that you delete.
3716
+ */
3717
+ DBProxy?: DBProxy;
3718
+ }
3422
3719
  export interface DeleteDBSecurityGroupMessage {
3423
3720
  /**
3424
3721
  * The name of the DB security group to delete. You can't delete the default DB security group. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens Must not be "Default"
@@ -3470,6 +3767,26 @@ declare namespace RDS {
3470
3767
  */
3471
3768
  OptionGroupName: String;
3472
3769
  }
3770
+ export interface DeregisterDBProxyTargetsRequest {
3771
+ /**
3772
+ * The identifier of the DBProxy that is associated with the DBProxyTargetGroup.
3773
+ */
3774
+ DBProxyName: String;
3775
+ /**
3776
+ * The identifier of the DBProxyTargetGroup.
3777
+ */
3778
+ TargetGroupName?: String;
3779
+ /**
3780
+ * One or more DB instance identifiers.
3781
+ */
3782
+ DBInstanceIdentifiers?: StringList;
3783
+ /**
3784
+ * One or more DB cluster identifiers.
3785
+ */
3786
+ DBClusterIdentifiers?: StringList;
3787
+ }
3788
+ export interface DeregisterDBProxyTargetsResponse {
3789
+ }
3473
3790
  export interface DescribeAccountAttributesMessage {
3474
3791
  }
3475
3792
  export interface DescribeCertificatesMessage {
@@ -3834,6 +4151,98 @@ declare namespace RDS {
3834
4151
  */
3835
4152
  Marker?: String;
3836
4153
  }
4154
+ export interface DescribeDBProxiesRequest {
4155
+ /**
4156
+ * The name of the DB proxy.
4157
+ */
4158
+ DBProxyName?: String;
4159
+ /**
4160
+ * This parameter is not currently supported.
4161
+ */
4162
+ Filters?: FilterList;
4163
+ /**
4164
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4165
+ */
4166
+ Marker?: String;
4167
+ /**
4168
+ * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
4169
+ */
4170
+ MaxRecords?: MaxRecords;
4171
+ }
4172
+ export interface DescribeDBProxiesResponse {
4173
+ /**
4174
+ * A return value representing an arbitrary number of DBProxy data structures.
4175
+ */
4176
+ DBProxies?: DBProxyList;
4177
+ /**
4178
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4179
+ */
4180
+ Marker?: String;
4181
+ }
4182
+ export interface DescribeDBProxyTargetGroupsRequest {
4183
+ /**
4184
+ * The identifier of the DBProxy associated with the target group.
4185
+ */
4186
+ DBProxyName: String;
4187
+ /**
4188
+ * The identifier of the DBProxyTargetGroup to describe.
4189
+ */
4190
+ TargetGroupName?: String;
4191
+ /**
4192
+ * This parameter is not currently supported.
4193
+ */
4194
+ Filters?: FilterList;
4195
+ /**
4196
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4197
+ */
4198
+ Marker?: String;
4199
+ /**
4200
+ * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
4201
+ */
4202
+ MaxRecords?: MaxRecords;
4203
+ }
4204
+ export interface DescribeDBProxyTargetGroupsResponse {
4205
+ /**
4206
+ * An arbitrary number of DBProxyTargetGroup objects, containing details of the corresponding target groups.
4207
+ */
4208
+ TargetGroups?: TargetGroupList;
4209
+ /**
4210
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4211
+ */
4212
+ Marker?: String;
4213
+ }
4214
+ export interface DescribeDBProxyTargetsRequest {
4215
+ /**
4216
+ * The identifier of the DBProxyTarget to describe.
4217
+ */
4218
+ DBProxyName: String;
4219
+ /**
4220
+ * The identifier of the DBProxyTargetGroup to describe.
4221
+ */
4222
+ TargetGroupName?: String;
4223
+ /**
4224
+ * This parameter is not currently supported.
4225
+ */
4226
+ Filters?: FilterList;
4227
+ /**
4228
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4229
+ */
4230
+ Marker?: String;
4231
+ /**
4232
+ * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
4233
+ */
4234
+ MaxRecords?: MaxRecords;
4235
+ }
4236
+ export interface DescribeDBProxyTargetsResponse {
4237
+ /**
4238
+ * An arbitrary number of DBProxyTarget objects, containing details of the corresponding targets.
4239
+ */
4240
+ Targets?: TargetList;
4241
+ /**
4242
+ * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
4243
+ */
4244
+ Marker?: String;
4245
+ }
3837
4246
  export interface DescribeDBSecurityGroupsMessage {
3838
4247
  /**
3839
4248
  * The name of the DB security group to return details for.
@@ -4383,6 +4792,7 @@ declare namespace RDS {
4383
4792
  */
4384
4793
  Parameters?: ParametersList;
4385
4794
  }
4795
+ export type EngineFamily = "MYSQL"|string;
4386
4796
  export type EngineModeList = String[];
4387
4797
  export interface Event {
4388
4798
  /**
@@ -4586,6 +4996,7 @@ declare namespace RDS {
4586
4996
  */
4587
4997
  GlobalClusters?: GlobalClusterList;
4588
4998
  }
4999
+ export type IAMAuthMode = "DISABLED"|"REQUIRED"|string;
4589
5000
  export interface IPRange {
4590
5001
  /**
4591
5002
  * Specifies the status of the IP range. Status can be "authorizing", "authorized", "revoking", and "revoked".
@@ -4686,6 +5097,7 @@ declare namespace RDS {
4686
5097
  export type LogTypeList = String[];
4687
5098
  export type Long = number;
4688
5099
  export type LongOptional = number;
5100
+ export type MaxRecords = number;
4689
5101
  export interface MinimumEngineVersionPerAllowedValue {
4690
5102
  /**
4691
5103
  * The allowed value for an option setting.
@@ -5032,6 +5444,70 @@ declare namespace RDS {
5032
5444
  */
5033
5445
  Parameters: ParametersList;
5034
5446
  }
5447
+ export interface ModifyDBProxyRequest {
5448
+ /**
5449
+ * The identifier for the DBProxy to modify.
5450
+ */
5451
+ DBProxyName: String;
5452
+ /**
5453
+ * The new identifier for the DBProxy. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.
5454
+ */
5455
+ NewDBProxyName?: String;
5456
+ /**
5457
+ * The new authentication settings for the DBProxy.
5458
+ */
5459
+ Auth?: UserAuthConfigList;
5460
+ /**
5461
+ * Whether Transport Layer Security (TLS) encryption is required for connections to the proxy. By enabling this setting, you can enforce encrypted TLS connections to the proxy, even if the associated database doesn't use TLS.
5462
+ */
5463
+ RequireTLS?: BooleanOptional;
5464
+ /**
5465
+ * The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. You can set this value higher or lower than the connection timeout limit for the associated database.
5466
+ */
5467
+ IdleClientTimeout?: IntegerOptional;
5468
+ /**
5469
+ * Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.
5470
+ */
5471
+ DebugLogging?: BooleanOptional;
5472
+ /**
5473
+ * The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager.
5474
+ */
5475
+ RoleArn?: String;
5476
+ /**
5477
+ * The new list of security groups for the DBProxy.
5478
+ */
5479
+ SecurityGroups?: StringList;
5480
+ }
5481
+ export interface ModifyDBProxyResponse {
5482
+ /**
5483
+ * The DBProxy object representing the new settings for the proxy.
5484
+ */
5485
+ DBProxy?: DBProxy;
5486
+ }
5487
+ export interface ModifyDBProxyTargetGroupRequest {
5488
+ /**
5489
+ * The name of the new target group to assign to the proxy.
5490
+ */
5491
+ TargetGroupName: String;
5492
+ /**
5493
+ * The name of the new proxy to which to assign the target group.
5494
+ */
5495
+ DBProxyName: String;
5496
+ /**
5497
+ * The settings that determine the size and behavior of the connection pool for the target group.
5498
+ */
5499
+ ConnectionPoolConfig?: ConnectionPoolConfiguration;
5500
+ /**
5501
+ * The new name for the modified DBProxyTarget. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.
5502
+ */
5503
+ NewName?: String;
5504
+ }
5505
+ export interface ModifyDBProxyTargetGroupResponse {
5506
+ /**
5507
+ * The settings of the modified DBProxyTarget.
5508
+ */
5509
+ DBProxyTargetGroup?: DBProxyTargetGroup;
5510
+ }
5035
5511
  export interface ModifyDBSnapshotAttributeMessage {
5036
5512
  /**
5037
5513
  * The identifier for the DB snapshot to modify the attributes for.
@@ -5796,6 +6272,30 @@ declare namespace RDS {
5796
6272
  RecurringChargeFrequency?: String;
5797
6273
  }
5798
6274
  export type RecurringChargeList = RecurringCharge[];
6275
+ export interface RegisterDBProxyTargetsRequest {
6276
+ /**
6277
+ * The identifier of the DBProxy that is associated with the DBProxyTargetGroup.
6278
+ */
6279
+ DBProxyName: String;
6280
+ /**
6281
+ * The identifier of the DBProxyTargetGroup.
6282
+ */
6283
+ TargetGroupName?: String;
6284
+ /**
6285
+ * One or more DB instance identifiers.
6286
+ */
6287
+ DBInstanceIdentifiers?: StringList;
6288
+ /**
6289
+ * One or more DB cluster identifiers.
6290
+ */
6291
+ DBClusterIdentifiers?: StringList;
6292
+ }
6293
+ export interface RegisterDBProxyTargetsResponse {
6294
+ /**
6295
+ * One or more DBProxyTarget objects that are created when you register targets with a target group.
6296
+ */
6297
+ DBProxyTargets?: TargetList;
6298
+ }
5799
6299
  export interface RemoveFromGlobalClusterMessage {
5800
6300
  /**
5801
6301
  * The cluster identifier to detach from the Aurora global database cluster.
@@ -6964,6 +7464,9 @@ declare namespace RDS {
6964
7464
  */
6965
7465
  TagList?: TagList;
6966
7466
  }
7467
+ export type TargetGroupList = DBProxyTargetGroup[];
7468
+ export type TargetList = DBProxyTarget[];
7469
+ export type TargetType = "RDS_INSTANCE"|"RDS_SERVERLESS_ENDPOINT"|"TRACKED_CLUSTER"|string;
6967
7470
  export interface Timezone {
6968
7471
  /**
6969
7472
  * The name of the time zone.
@@ -6992,6 +7495,52 @@ declare namespace RDS {
6992
7495
  */
6993
7496
  IsMajorVersionUpgrade?: Boolean;
6994
7497
  }
7498
+ export interface UserAuthConfig {
7499
+ /**
7500
+ * A user-specified description about the authentication used by a proxy to log in as a specific database user.
7501
+ */
7502
+ Description?: String;
7503
+ /**
7504
+ * The name of the database user to which the proxy connects.
7505
+ */
7506
+ UserName?: String;
7507
+ /**
7508
+ * The type of authentication that the proxy uses for connections from the proxy to the underlying database.
7509
+ */
7510
+ AuthScheme?: AuthScheme;
7511
+ /**
7512
+ * The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.
7513
+ */
7514
+ SecretArn?: String;
7515
+ /**
7516
+ * Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
7517
+ */
7518
+ IAMAuth?: IAMAuthMode;
7519
+ }
7520
+ export interface UserAuthConfigInfo {
7521
+ /**
7522
+ * A user-specified description about the authentication used by a proxy to log in as a specific database user.
7523
+ */
7524
+ Description?: String;
7525
+ /**
7526
+ * The name of the database user to which the proxy connects.
7527
+ */
7528
+ UserName?: String;
7529
+ /**
7530
+ * The type of authentication that the proxy uses for connections from the proxy to the underlying database.
7531
+ */
7532
+ AuthScheme?: AuthScheme;
7533
+ /**
7534
+ * The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.
7535
+ */
7536
+ SecretArn?: String;
7537
+ /**
7538
+ * Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
7539
+ */
7540
+ IAMAuth?: IAMAuthMode;
7541
+ }
7542
+ export type UserAuthConfigInfoList = UserAuthConfigInfo[];
7543
+ export type UserAuthConfigList = UserAuthConfig[];
6995
7544
  export interface ValidDBInstanceModificationsMessage {
6996
7545
  /**
6997
7546
  * Valid storage options for your DB instance.