@aws-sdk/client-rds 3.216.0 → 3.218.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 (63) hide show
  1. package/dist-cjs/RDS.js +60 -0
  2. package/dist-cjs/commands/CreateBlueGreenDeploymentCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteBlueGreenDeploymentCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeBlueGreenDeploymentsCommand.js +46 -0
  5. package/dist-cjs/commands/DescribeDBProxyTargetGroupsCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeDBProxyTargetsCommand.js +3 -3
  7. package/dist-cjs/commands/DescribeDBSecurityGroupsCommand.js +3 -3
  8. package/dist-cjs/commands/SwitchoverBlueGreenDeploymentCommand.js +46 -0
  9. package/dist-cjs/commands/index.js +4 -0
  10. package/dist-cjs/endpoint/ruleset.js +1 -1
  11. package/dist-cjs/models/models_0.js +150 -115
  12. package/dist-cjs/models/models_1.js +78 -4
  13. package/dist-cjs/pagination/DescribeBlueGreenDeploymentsPaginator.js +36 -0
  14. package/dist-cjs/pagination/index.js +2 -1
  15. package/dist-cjs/protocols/Aws_query.js +544 -6
  16. package/dist-es/RDS.js +60 -0
  17. package/dist-es/commands/CreateBlueGreenDeploymentCommand.js +42 -0
  18. package/dist-es/commands/DeleteBlueGreenDeploymentCommand.js +42 -0
  19. package/dist-es/commands/DescribeBlueGreenDeploymentsCommand.js +42 -0
  20. package/dist-es/commands/DescribeDBProxyTargetGroupsCommand.js +1 -1
  21. package/dist-es/commands/DescribeDBProxyTargetsCommand.js +1 -1
  22. package/dist-es/commands/DescribeDBSecurityGroupsCommand.js +1 -1
  23. package/dist-es/commands/SwitchoverBlueGreenDeploymentCommand.js +42 -0
  24. package/dist-es/commands/index.js +4 -0
  25. package/dist-es/endpoint/ruleset.js +1 -1
  26. package/dist-es/models/models_0.js +126 -95
  27. package/dist-es/models/models_1.js +62 -0
  28. package/dist-es/pagination/DescribeBlueGreenDeploymentsPaginator.js +32 -0
  29. package/dist-es/pagination/index.js +2 -1
  30. package/dist-es/protocols/Aws_query.js +531 -1
  31. package/dist-types/RDS.d.ts +59 -0
  32. package/dist-types/RDSClient.d.ts +6 -2
  33. package/dist-types/commands/CreateBlueGreenDeploymentCommand.d.ts +51 -0
  34. package/dist-types/commands/DeleteBlueGreenDeploymentCommand.d.ts +42 -0
  35. package/dist-types/commands/DescribeBlueGreenDeploymentsCommand.d.ts +42 -0
  36. package/dist-types/commands/DescribeDBProxyTargetGroupsCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeDBProxyTargetsCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeDBSecurityGroupsCommand.d.ts +1 -1
  39. package/dist-types/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +44 -0
  40. package/dist-types/commands/index.d.ts +4 -0
  41. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  42. package/dist-types/models/models_0.d.ts +516 -431
  43. package/dist-types/models/models_1.d.ts +370 -1
  44. package/dist-types/pagination/DescribeBlueGreenDeploymentsPaginator.d.ts +4 -0
  45. package/dist-types/pagination/index.d.ts +2 -1
  46. package/dist-types/protocols/Aws_query.d.ts +12 -0
  47. package/dist-types/ts3.4/RDS.d.ts +68 -0
  48. package/dist-types/ts3.4/RDSClient.d.ts +24 -0
  49. package/dist-types/ts3.4/commands/CreateBlueGreenDeploymentCommand.d.ts +41 -0
  50. package/dist-types/ts3.4/commands/DeleteBlueGreenDeploymentCommand.d.ts +41 -0
  51. package/dist-types/ts3.4/commands/DescribeBlueGreenDeploymentsCommand.d.ts +41 -0
  52. package/dist-types/ts3.4/commands/DescribeDBProxyTargetGroupsCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/DescribeDBProxyTargetsCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeDBSecurityGroupsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +41 -0
  56. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  57. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  58. package/dist-types/ts3.4/models/models_0.d.ts +153 -143
  59. package/dist-types/ts3.4/models/models_1.d.ts +128 -2
  60. package/dist-types/ts3.4/pagination/DescribeBlueGreenDeploymentsPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +2 -1
  62. package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
  63. package/package.json +3 -3
@@ -389,6 +389,9 @@ export declare class SubscriptionNotFoundFault extends __BaseException {
389
389
  }
390
390
  /**
391
391
  * <p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>
392
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging
393
+ * Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
394
+ * </p>
392
395
  */
393
396
  export interface Tag {
394
397
  /**
@@ -2158,6 +2161,301 @@ export declare class OptionGroupQuotaExceededFault extends __BaseException {
2158
2161
  */
2159
2162
  constructor(opts: __ExceptionOptionType<OptionGroupQuotaExceededFault, __BaseException>);
2160
2163
  }
2164
+ /**
2165
+ * <p>A blue/green deployment with the specified name already exists.</p>
2166
+ */
2167
+ export declare class BlueGreenDeploymentAlreadyExistsFault extends __BaseException {
2168
+ readonly name: "BlueGreenDeploymentAlreadyExistsFault";
2169
+ readonly $fault: "client";
2170
+ /**
2171
+ * @internal
2172
+ */
2173
+ constructor(opts: __ExceptionOptionType<BlueGreenDeploymentAlreadyExistsFault, __BaseException>);
2174
+ }
2175
+ export interface CreateBlueGreenDeploymentRequest {
2176
+ /**
2177
+ * <p>The name of the blue/green deployment.</p>
2178
+ * <p>Constraints:</p>
2179
+ * <ul>
2180
+ * <li>
2181
+ * <p>Can't be the same as an existing blue/green deployment name in the same account and Amazon Web Services Region.</p>
2182
+ * </li>
2183
+ * </ul>
2184
+ */
2185
+ BlueGreenDeploymentName: string | undefined;
2186
+ /**
2187
+ * <p>The Amazon Resource Name (ARN) of the source production database.</p>
2188
+ * <p>Specify the database that you want to clone. The blue/green deployment creates this database in
2189
+ * the green environment. You can make updates to the database in the green environment, such as an engine
2190
+ * version upgrade. When you are ready, you can switch the database in the green environment to be the
2191
+ * production database.</p>
2192
+ */
2193
+ Source: string | undefined;
2194
+ /**
2195
+ * <p>The engine version of the database in the green environment.</p>
2196
+ * <p>Specify the engine version to upgrade to in the green environment.</p>
2197
+ */
2198
+ TargetEngineVersion?: string;
2199
+ /**
2200
+ * <p>The DB parameter group associated with the DB instance in the green environment.</p>
2201
+ * <p>To test parameter changes, specify a DB parameter group that is different from the one associated
2202
+ * with the source DB instance.</p>
2203
+ */
2204
+ TargetDBParameterGroupName?: string;
2205
+ /**
2206
+ * <p>The DB cluster parameter group associated with the Aurora DB cluster in the green environment.</p>
2207
+ * <p>To test parameter changes, specify a DB cluster parameter group that is different from the one associated
2208
+ * with the source DB cluster.</p>
2209
+ */
2210
+ TargetDBClusterParameterGroupName?: string;
2211
+ /**
2212
+ * <p>Tags to assign to the blue/green deployment.</p>
2213
+ */
2214
+ Tags?: Tag[];
2215
+ }
2216
+ /**
2217
+ * <p>Contains the details about a blue/green deployment.</p>
2218
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
2219
+ * for database updates</a> in the <i>Amazon RDS User Guide</i> and
2220
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
2221
+ * Using Amazon RDS Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
2222
+ * User Guide</i>.</p>
2223
+ */
2224
+ export interface SwitchoverDetail {
2225
+ /**
2226
+ * <p>The Amazon Resource Name (ARN) of a resource in the blue environment.</p>
2227
+ */
2228
+ SourceMember?: string;
2229
+ /**
2230
+ * <p>The Amazon Resource Name (ARN) of a resource in the green environment.</p>
2231
+ */
2232
+ TargetMember?: string;
2233
+ /**
2234
+ * <p>The switchover status of a resource in a blue/green deployment.</p>
2235
+ * <p>Values:</p>
2236
+ * <ul>
2237
+ * <li>
2238
+ * <p>
2239
+ * <code>preparing-for-switchover</code> - The resource is being prepared to switch over.</p>
2240
+ * </li>
2241
+ * <li>
2242
+ * <p>
2243
+ * <code>ready-for-switchover</code> - The resource is ready to switch
2244
+ * over.</p>
2245
+ * </li>
2246
+ * <li>
2247
+ * <p>
2248
+ * <code>switchover-in-progress</code> - The resource is being switched over.</p>
2249
+ * </li>
2250
+ * <li>
2251
+ * <p>
2252
+ * <code>switchover-completed</code> - The resource has been switched over.</p>
2253
+ * </li>
2254
+ * <li>
2255
+ * <p>
2256
+ * <code>switchover-failed</code> - The resource attempted to switch over but failed.</p>
2257
+ * </li>
2258
+ * </ul>
2259
+ */
2260
+ Status?: string;
2261
+ }
2262
+ /**
2263
+ * <p>Contains the details about a task for a blue/green deployment.</p>
2264
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
2265
+ * for database updates</a> in the <i>Amazon RDS User Guide</i> and
2266
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
2267
+ * Using Amazon RDS Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
2268
+ * User Guide</i>.</p>
2269
+ */
2270
+ export interface BlueGreenDeploymentTask {
2271
+ /**
2272
+ * <p>The name of the blue/green deployment task.</p>
2273
+ */
2274
+ Name?: string;
2275
+ /**
2276
+ * <p>The status of the blue/green deployment task.</p>
2277
+ * <p>Values:</p>
2278
+ * <ul>
2279
+ * <li>
2280
+ * <p>
2281
+ * <code>PENDING</code> - The resources are being prepared for deployment.</p>
2282
+ * </li>
2283
+ * <li>
2284
+ * <p>
2285
+ * <code>IN_PROGRESS</code> - The resource is being deployed.</p>
2286
+ * </li>
2287
+ * <li>
2288
+ * <p>
2289
+ * <code>COMPLETED</code> - The resource has been deployed.</p>
2290
+ * </li>
2291
+ * <li>
2292
+ * <p>
2293
+ * <code>FAILED</code> - Deployment of the resource failed.</p>
2294
+ * </li>
2295
+ * </ul>
2296
+ */
2297
+ Status?: string;
2298
+ }
2299
+ /**
2300
+ * <p>Contains the details about a blue/green deployment.</p>
2301
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
2302
+ * for database updates</a> in the <i>Amazon RDS User Guide</i> and
2303
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
2304
+ * Using Amazon RDS Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
2305
+ * User Guide</i>.</p>
2306
+ */
2307
+ export interface BlueGreenDeployment {
2308
+ /**
2309
+ * <p>The system-generated identifier of the blue/green deployment.</p>
2310
+ */
2311
+ BlueGreenDeploymentIdentifier?: string;
2312
+ /**
2313
+ * <p>The user-supplied name of the blue/green deployment.</p>
2314
+ */
2315
+ BlueGreenDeploymentName?: string;
2316
+ /**
2317
+ * <p>The source database for the blue/green deployment.</p>
2318
+ * <p>Before switchover, the source database is the production database in the blue environment.</p>
2319
+ */
2320
+ Source?: string;
2321
+ /**
2322
+ * <p>The target database for the blue/green deployment.</p>
2323
+ * <p>Before switchover, the target database is the clone database in the green environment.</p>
2324
+ */
2325
+ Target?: string;
2326
+ /**
2327
+ * <p>The details about each source and target resource in the blue/green deployment.</p>
2328
+ */
2329
+ SwitchoverDetails?: SwitchoverDetail[];
2330
+ /**
2331
+ * <p>Either tasks to be performed or tasks that have been completed on the target database before switchover.</p>
2332
+ */
2333
+ Tasks?: BlueGreenDeploymentTask[];
2334
+ /**
2335
+ * <p>The status of the blue/green deployment.</p>
2336
+ * <p>Values:</p>
2337
+ * <ul>
2338
+ * <li>
2339
+ * <p>
2340
+ * <code>PROVISIONING</code> - Resources are being created in the green environment.</p>
2341
+ * </li>
2342
+ * <li>
2343
+ * <p>
2344
+ * <code>AVAILABLE</code> - Resources are available in the green environment.</p>
2345
+ * </li>
2346
+ * <li>
2347
+ * <p>
2348
+ * <code>SWITCHOVER_IN_PROGRESS</code> - The deployment is being switched from the blue environment to the
2349
+ * green environment.</p>
2350
+ * </li>
2351
+ * <li>
2352
+ * <p>
2353
+ * <code>SWITCHOVER_COMPLETED</code> - Switchover from the blue environment to the green environment is complete.</p>
2354
+ * </li>
2355
+ * <li>
2356
+ * <p>
2357
+ * <code>INVALID_CONFIGURATION</code> - Resources in the green environment are invalid, so switchover isn't possible.</p>
2358
+ * </li>
2359
+ * <li>
2360
+ * <p>
2361
+ * <code>SWITCHOVER_FAILED</code> - Switchover was attempted but failed.</p>
2362
+ * </li>
2363
+ * <li>
2364
+ * <p>
2365
+ * <code>DELETING</code> - The blue/green deployment is being deleted.</p>
2366
+ * </li>
2367
+ * </ul>
2368
+ */
2369
+ Status?: string;
2370
+ /**
2371
+ * <p>Additional information about the status of the blue/green deployment.</p>
2372
+ */
2373
+ StatusDetails?: string;
2374
+ /**
2375
+ * <p>Specifies the time when the blue/green deployment was created, in Universal Coordinated Time (UTC).</p>
2376
+ */
2377
+ CreateTime?: Date;
2378
+ /**
2379
+ * <p>Specifies the time when the blue/green deployment was deleted, in Universal Coordinated Time (UTC).</p>
2380
+ */
2381
+ DeleteTime?: Date;
2382
+ /**
2383
+ * <p>A list of tags.
2384
+ * For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
2385
+ * </p>
2386
+ */
2387
+ TagList?: Tag[];
2388
+ }
2389
+ export interface CreateBlueGreenDeploymentResponse {
2390
+ /**
2391
+ * <p>Contains the details about a blue/green deployment.</p>
2392
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
2393
+ * for database updates</a> in the <i>Amazon RDS User Guide</i> and
2394
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
2395
+ * Using Amazon RDS Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
2396
+ * User Guide</i>.</p>
2397
+ */
2398
+ BlueGreenDeployment?: BlueGreenDeployment;
2399
+ }
2400
+ /**
2401
+ * <p>
2402
+ * <code>DBClusterParameterGroupName</code> doesn't refer to an existing DB
2403
+ * cluster parameter group.</p>
2404
+ */
2405
+ export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
2406
+ readonly name: "DBClusterParameterGroupNotFoundFault";
2407
+ readonly $fault: "client";
2408
+ /**
2409
+ * @internal
2410
+ */
2411
+ constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
2412
+ }
2413
+ /**
2414
+ * <p>The user attempted to create a new DB cluster and the user has already reached the
2415
+ * maximum allowed DB cluster quota.</p>
2416
+ */
2417
+ export declare class DBClusterQuotaExceededFault extends __BaseException {
2418
+ readonly name: "DBClusterQuotaExceededFault";
2419
+ readonly $fault: "client";
2420
+ /**
2421
+ * @internal
2422
+ */
2423
+ constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
2424
+ }
2425
+ /**
2426
+ * <p>The request would result in the user exceeding the allowed number of DB
2427
+ * instances.</p>
2428
+ */
2429
+ export declare class InstanceQuotaExceededFault extends __BaseException {
2430
+ readonly name: "InstanceQuotaExceededFault";
2431
+ readonly $fault: "client";
2432
+ /**
2433
+ * @internal
2434
+ */
2435
+ constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
2436
+ }
2437
+ /**
2438
+ * <p>The source DB cluster isn't supported for a blue/green deployment.</p>
2439
+ */
2440
+ export declare class SourceClusterNotSupportedFault extends __BaseException {
2441
+ readonly name: "SourceClusterNotSupportedFault";
2442
+ readonly $fault: "client";
2443
+ /**
2444
+ * @internal
2445
+ */
2446
+ constructor(opts: __ExceptionOptionType<SourceClusterNotSupportedFault, __BaseException>);
2447
+ }
2448
+ /**
2449
+ * <p>The source DB instance isn't supported for a blue/green deployment.</p>
2450
+ */
2451
+ export declare class SourceDatabaseNotSupportedFault extends __BaseException {
2452
+ readonly name: "SourceDatabaseNotSupportedFault";
2453
+ readonly $fault: "client";
2454
+ /**
2455
+ * @internal
2456
+ */
2457
+ constructor(opts: __ExceptionOptionType<SourceDatabaseNotSupportedFault, __BaseException>);
2458
+ }
2161
2459
  export interface CreateCustomDBEngineVersionMessage {
2162
2460
  /**
2163
2461
  * <p>The database engine to use for your custom engine version (CEV). The only supported value is
@@ -2165,10 +2463,10 @@ export interface CreateCustomDBEngineVersionMessage {
2165
2463
  */
2166
2464
  Engine: string | undefined;
2167
2465
  /**
2168
- * <p>The name of your CEV. The name format is <code>19.<i>customized_string</i>
2169
- * </code>. For example,
2170
- * a valid name is <code>19.my_cev1</code>. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS.
2171
- * The combination of <code>Engine</code> and <code>EngineVersion</code> is unique per customer per Region.</p>
2466
+ * <p>The name of your CEV. The name format is 19.<i>customized_string</i>.
2467
+ * For example, a valid CEV name is <code>19.my_cev1</code>. This setting is required for RDS
2468
+ * Custom for Oracle, but optional for Amazon RDS. The combination of <code>Engine</code>
2469
+ * and <code>EngineVersion</code> is unique per customer per Region.</p>
2172
2470
  */
2173
2471
  EngineVersion: string | undefined;
2174
2472
  /**
@@ -3866,31 +4164,6 @@ export declare class DBClusterAlreadyExistsFault extends __BaseException {
3866
4164
  */
3867
4165
  constructor(opts: __ExceptionOptionType<DBClusterAlreadyExistsFault, __BaseException>);
3868
4166
  }
3869
- /**
3870
- * <p>
3871
- * <code>DBClusterParameterGroupName</code> doesn't refer to an existing DB
3872
- * cluster parameter group.</p>
3873
- */
3874
- export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
3875
- readonly name: "DBClusterParameterGroupNotFoundFault";
3876
- readonly $fault: "client";
3877
- /**
3878
- * @internal
3879
- */
3880
- constructor(opts: __ExceptionOptionType<DBClusterParameterGroupNotFoundFault, __BaseException>);
3881
- }
3882
- /**
3883
- * <p>The user attempted to create a new DB cluster and the user has already reached the
3884
- * maximum allowed DB cluster quota.</p>
3885
- */
3886
- export declare class DBClusterQuotaExceededFault extends __BaseException {
3887
- readonly name: "DBClusterQuotaExceededFault";
3888
- readonly $fault: "client";
3889
- /**
3890
- * @internal
3891
- */
3892
- constructor(opts: __ExceptionOptionType<DBClusterQuotaExceededFault, __BaseException>);
3893
- }
3894
4167
  /**
3895
4168
  * <p>Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.</p>
3896
4169
  */
@@ -4930,8 +5203,7 @@ export interface CreateDBInstanceMessage {
4930
5203
  * <b>Amazon RDS Custom for Oracle</b>
4931
5204
  * </p>
4932
5205
  * <p>A custom engine version (CEV) that you have previously created. This setting is required for RDS Custom for Oracle. The CEV
4933
- * name has the following format: <code>19.<i>customized_string</i>
4934
- * </code>. An example identifier is
5206
+ * name has the following format: 19.<i>customized_string</i>. A valid CEV name is
4935
5207
  * <code>19.my_cev1</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create">
4936
5208
  * Creating an RDS Custom for Oracle DB instance</a> in the <i>Amazon RDS User Guide</i>.</p>
4937
5209
  * <p>
@@ -6273,18 +6545,6 @@ export declare class DBInstanceAlreadyExistsFault extends __BaseException {
6273
6545
  */
6274
6546
  constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
6275
6547
  }
6276
- /**
6277
- * <p>The request would result in the user exceeding the allowed number of DB
6278
- * instances.</p>
6279
- */
6280
- export declare class InstanceQuotaExceededFault extends __BaseException {
6281
- readonly name: "InstanceQuotaExceededFault";
6282
- readonly $fault: "client";
6283
- /**
6284
- * @internal
6285
- */
6286
- constructor(opts: __ExceptionOptionType<InstanceQuotaExceededFault, __BaseException>);
6287
- }
6288
6548
  /**
6289
6549
  * <p>The specified DB instance class isn't available in the specified Availability
6290
6550
  * Zone.</p>
@@ -7985,6 +8245,58 @@ export interface CreateOptionGroupResult {
7985
8245
  */
7986
8246
  OptionGroup?: OptionGroup;
7987
8247
  }
8248
+ /**
8249
+ * <p>
8250
+ * <code>BlueGreenDeploymentIdentifier</code> doesn't refer to an existing blue/green deployment.</p>
8251
+ */
8252
+ export declare class BlueGreenDeploymentNotFoundFault extends __BaseException {
8253
+ readonly name: "BlueGreenDeploymentNotFoundFault";
8254
+ readonly $fault: "client";
8255
+ /**
8256
+ * @internal
8257
+ */
8258
+ constructor(opts: __ExceptionOptionType<BlueGreenDeploymentNotFoundFault, __BaseException>);
8259
+ }
8260
+ export interface DeleteBlueGreenDeploymentRequest {
8261
+ /**
8262
+ * <p>The blue/green deployment identifier of the deployment to be deleted. This parameter isn't case-sensitive.</p>
8263
+ * <p>Constraints:
8264
+ * </p>
8265
+ * <ul>
8266
+ * <li>
8267
+ * <p>Must match an existing blue/green deployment identifier.</p>
8268
+ * </li>
8269
+ * </ul>
8270
+ */
8271
+ BlueGreenDeploymentIdentifier: string | undefined;
8272
+ /**
8273
+ * <p>A value that indicates whether to delete the resources in the green environment.</p>
8274
+ */
8275
+ DeleteTarget?: boolean;
8276
+ }
8277
+ export interface DeleteBlueGreenDeploymentResponse {
8278
+ /**
8279
+ * <p>Contains the details about a blue/green deployment.</p>
8280
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
8281
+ * for database updates</a> in the <i>Amazon RDS User Guide</i> and
8282
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
8283
+ * Using Amazon RDS Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
8284
+ * User Guide</i>.</p>
8285
+ */
8286
+ BlueGreenDeployment?: BlueGreenDeployment;
8287
+ }
8288
+ /**
8289
+ * <p>The blue/green deployment can't be switched over or deleted because there is an invalid configuration in
8290
+ * the green environment.</p>
8291
+ */
8292
+ export declare class InvalidBlueGreenDeploymentStateFault extends __BaseException {
8293
+ readonly name: "InvalidBlueGreenDeploymentStateFault";
8294
+ readonly $fault: "client";
8295
+ /**
8296
+ * @internal
8297
+ */
8298
+ constructor(opts: __ExceptionOptionType<InvalidBlueGreenDeploymentStateFault, __BaseException>);
8299
+ }
7988
8300
  /**
7989
8301
  * <p>The specified CEV was not found.</p>
7990
8302
  */
@@ -8688,12 +9000,128 @@ export interface DeregisterDBProxyTargetsResponse {
8688
9000
  export interface DescribeAccountAttributesMessage {
8689
9001
  }
8690
9002
  /**
8691
- * <p>A CA certificate for an Amazon Web Services account.</p>
8692
- */
8693
- export interface Certificate {
8694
- /**
8695
- * <p>The unique key that identifies a certificate.</p>
8696
- */
9003
+ * <p>A filter name and value pair that is used to return a more specific list of results
9004
+ * from a describe operation. Filters can be used to match a set of resources by specific
9005
+ * criteria, such as IDs. The filters supported by a describe operation are documented
9006
+ * with the describe operation.</p>
9007
+ * <note>
9008
+ * <p>Currently, wildcards are not supported in filters.</p>
9009
+ * </note>
9010
+ * <p>The following actions can be filtered:</p>
9011
+ * <ul>
9012
+ * <li>
9013
+ * <p>
9014
+ * <code>DescribeDBClusterBacktracks</code>
9015
+ * </p>
9016
+ * </li>
9017
+ * <li>
9018
+ * <p>
9019
+ * <code>DescribeDBClusterEndpoints</code>
9020
+ * </p>
9021
+ * </li>
9022
+ * <li>
9023
+ * <p>
9024
+ * <code>DescribeDBClusters</code>
9025
+ * </p>
9026
+ * </li>
9027
+ * <li>
9028
+ * <p>
9029
+ * <code>DescribeDBInstances</code>
9030
+ * </p>
9031
+ * </li>
9032
+ * <li>
9033
+ * <p>
9034
+ * <code>DescribePendingMaintenanceActions</code>
9035
+ * </p>
9036
+ * </li>
9037
+ * </ul>
9038
+ */
9039
+ export interface Filter {
9040
+ /**
9041
+ * <p>The name of the filter. Filter names are case-sensitive.</p>
9042
+ */
9043
+ Name: string | undefined;
9044
+ /**
9045
+ * <p>One or more filter values. Filter values are case-sensitive.</p>
9046
+ */
9047
+ Values: string[] | undefined;
9048
+ }
9049
+ export interface DescribeBlueGreenDeploymentsRequest {
9050
+ /**
9051
+ * <p>The blue/green deployment identifier. If this parameter is specified, information from only the
9052
+ * specific blue/green deployment is returned. This parameter isn't case-sensitive.</p>
9053
+ * <p>Constraints:</p>
9054
+ * <ul>
9055
+ * <li>
9056
+ * <p>If supplied, must match an existing blue/green deployment identifier.</p>
9057
+ * </li>
9058
+ * </ul>
9059
+ */
9060
+ BlueGreenDeploymentIdentifier?: string;
9061
+ /**
9062
+ * <p>A filter that specifies one or more blue/green deployments to describe.</p>
9063
+ * <p>Supported filters:</p>
9064
+ * <ul>
9065
+ * <li>
9066
+ * <p>
9067
+ * <code>blue-green-deployment-identifier</code> - Accepts system-generated
9068
+ * identifiers for blue/green deployments. The results list only includes
9069
+ * information about the blue/green deployments with the specified
9070
+ * identifiers.</p>
9071
+ * </li>
9072
+ * <li>
9073
+ * <p>
9074
+ * <code>blue-green-deployment-name</code> - Accepts user-supplied names for blue/green deployments.
9075
+ * The results list only includes information about the blue/green deployments with the
9076
+ * specified names.</p>
9077
+ * </li>
9078
+ * <li>
9079
+ * <p>
9080
+ * <code>source</code> - Accepts source databases for a blue/green deployment.
9081
+ * The results list only includes information about the blue/green deployments with
9082
+ * the specified source databases.</p>
9083
+ * </li>
9084
+ * <li>
9085
+ * <p>
9086
+ * <code>target</code> - Accepts target databases for a blue/green deployment.
9087
+ * The results list only includes information about the blue/green deployments with
9088
+ * the specified target databases.</p>
9089
+ * </li>
9090
+ * </ul>
9091
+ */
9092
+ Filters?: Filter[];
9093
+ /**
9094
+ * <p>An optional pagination token provided by a previous <code>DescribeBlueGreenDeployments</code> request.
9095
+ * If this parameter is specified, the response includes only records beyond the marker,
9096
+ * up to the value specified by <code>MaxRecords</code>.</p>
9097
+ */
9098
+ Marker?: string;
9099
+ /**
9100
+ * <p>The maximum number of records to include in the response.
9101
+ * If more records exist than the specified <code>MaxRecords</code> value,
9102
+ * a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
9103
+ * <p>Default: 100</p>
9104
+ * <p>Constraints: Minimum 20, maximum 100.</p>
9105
+ */
9106
+ MaxRecords?: number;
9107
+ }
9108
+ export interface DescribeBlueGreenDeploymentsResponse {
9109
+ /**
9110
+ * <p>Contains a list of blue/green deployments for the user.</p>
9111
+ */
9112
+ BlueGreenDeployments?: BlueGreenDeployment[];
9113
+ /**
9114
+ * <p>A pagination token that can be used in a later DescribeBlueGreenDeployments request.</p>
9115
+ */
9116
+ Marker?: string;
9117
+ }
9118
+ /**
9119
+ * <p>A CA certificate for an Amazon Web Services account.</p>
9120
+ */
9121
+ export interface Certificate {
9122
+ /**
9123
+ * <p>The unique key that identifies a certificate.</p>
9124
+ */
8697
9125
  CertificateIdentifier?: string;
8698
9126
  /**
8699
9127
  * <p>The type of the certificate.</p>
@@ -8755,53 +9183,6 @@ export declare class CertificateNotFoundFault extends __BaseException {
8755
9183
  */
8756
9184
  constructor(opts: __ExceptionOptionType<CertificateNotFoundFault, __BaseException>);
8757
9185
  }
8758
- /**
8759
- * <p>A filter name and value pair that is used to return a more specific list of results
8760
- * from a describe operation. Filters can be used to match a set of resources by specific
8761
- * criteria, such as IDs. The filters supported by a describe operation are documented
8762
- * with the describe operation.</p>
8763
- * <note>
8764
- * <p>Currently, wildcards are not supported in filters.</p>
8765
- * </note>
8766
- * <p>The following actions can be filtered:</p>
8767
- * <ul>
8768
- * <li>
8769
- * <p>
8770
- * <code>DescribeDBClusterBacktracks</code>
8771
- * </p>
8772
- * </li>
8773
- * <li>
8774
- * <p>
8775
- * <code>DescribeDBClusterEndpoints</code>
8776
- * </p>
8777
- * </li>
8778
- * <li>
8779
- * <p>
8780
- * <code>DescribeDBClusters</code>
8781
- * </p>
8782
- * </li>
8783
- * <li>
8784
- * <p>
8785
- * <code>DescribeDBInstances</code>
8786
- * </p>
8787
- * </li>
8788
- * <li>
8789
- * <p>
8790
- * <code>DescribePendingMaintenanceActions</code>
8791
- * </p>
8792
- * </li>
8793
- * </ul>
8794
- */
8795
- export interface Filter {
8796
- /**
8797
- * <p>The name of the filter. Filter names are case-sensitive.</p>
8798
- */
8799
- Name: string | undefined;
8800
- /**
8801
- * <p>One or more filter values. Filter values are case-sensitive.</p>
8802
- */
8803
- Values: string[] | undefined;
8804
- }
8805
9186
  /**
8806
9187
  * <p></p>
8807
9188
  */
@@ -10110,298 +10491,6 @@ export interface DescribeDBProxyEndpointsResponse {
10110
10491
  */
10111
10492
  Marker?: string;
10112
10493
  }
10113
- export interface DescribeDBProxyTargetGroupsRequest {
10114
- /**
10115
- * <p>The identifier of the <code>DBProxy</code> associated with the target group.</p>
10116
- */
10117
- DBProxyName: string | undefined;
10118
- /**
10119
- * <p>The identifier of the <code>DBProxyTargetGroup</code> to describe.</p>
10120
- */
10121
- TargetGroupName?: string;
10122
- /**
10123
- * <p>This parameter is not currently supported.</p>
10124
- */
10125
- Filters?: Filter[];
10126
- /**
10127
- * <p>An optional pagination token provided by a previous request.
10128
- * If this parameter is specified, the response includes only records beyond the marker,
10129
- * up to the value specified by <code>MaxRecords</code>.</p>
10130
- */
10131
- Marker?: string;
10132
- /**
10133
- * <p>The maximum number of records to include in the response.
10134
- * If more records exist than the specified <code>MaxRecords</code> value,
10135
- * a pagination token called a marker is included in the response so that the remaining
10136
- * results can be retrieved.</p>
10137
- * <p>Default: 100</p>
10138
- * <p>Constraints: Minimum 20, maximum 100.</p>
10139
- */
10140
- MaxRecords?: number;
10141
- }
10142
- /**
10143
- * <p>Displays the settings that control the size and behavior of the connection pool associated with a <code>DBProxyTarget</code>.</p>
10144
- */
10145
- export interface ConnectionPoolConfigurationInfo {
10146
- /**
10147
- * <p>The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the
10148
- * <code>max_connections</code> setting for the RDS DB instance or Aurora DB cluster used by the target group.</p>
10149
- */
10150
- MaxConnectionsPercent?: number;
10151
- /**
10152
- * <p>Controls how actively the proxy closes idle database connections in the connection pool.
10153
- * The value is expressed as a percentage of the <code>max_connections</code> setting for the RDS DB instance or Aurora DB cluster used by the target group.
10154
- * With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.</p>
10155
- */
10156
- MaxIdleConnectionsPercent?: number;
10157
- /**
10158
- * <p>The number of seconds for a proxy to wait for a connection to become available in the connection pool. Only applies when the
10159
- * proxy has opened its maximum number of connections and all connections are busy with client sessions.</p>
10160
- */
10161
- ConnectionBorrowTimeout?: number;
10162
- /**
10163
- * <p>Each item in the list represents a class of SQL operations that normally cause all later statements
10164
- * in a session using a proxy to be pinned to the same underlying database connection. Including an item
10165
- * in the list exempts that class of SQL operations from the pinning behavior. This setting is only supported for MySQL engine family databases.
10166
- * Currently, the only allowed value is <code>EXCLUDE_VARIABLE_SETS</code>.</p>
10167
- */
10168
- SessionPinningFilters?: string[];
10169
- /**
10170
- * <p>One or more SQL statements for the proxy to run when opening each new database connection.
10171
- * Typically used with <code>SET</code> statements to make sure that each connection has identical
10172
- * settings such as time zone and character set. This setting is empty by default.
10173
- * For multiple statements, use semicolons as the separator.
10174
- * You can also include multiple variables in a single <code>SET</code> statement, such as
10175
- * <code>SET x=1, y=2</code>.</p>
10176
- */
10177
- InitQuery?: string;
10178
- }
10179
- /**
10180
- * <p>Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group
10181
- * is associated with exactly one RDS DB instance or Aurora DB cluster.</p>
10182
- * <p>This data type is used as a response element in the <code>DescribeDBProxyTargetGroups</code> action.</p>
10183
- */
10184
- export interface DBProxyTargetGroup {
10185
- /**
10186
- * <p>The identifier for the RDS proxy associated with this target group.</p>
10187
- */
10188
- DBProxyName?: string;
10189
- /**
10190
- * <p>The identifier for the target group. This name must be unique for all target groups owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
10191
- */
10192
- TargetGroupName?: string;
10193
- /**
10194
- * <p>The Amazon Resource Name (ARN) representing the target group.</p>
10195
- */
10196
- TargetGroupArn?: string;
10197
- /**
10198
- * <p>Whether this target group is the first one used for connection requests by the associated proxy.
10199
- * Because each proxy is currently associated with a single target group, currently this setting
10200
- * is always <code>true</code>.</p>
10201
- */
10202
- IsDefault?: boolean;
10203
- /**
10204
- * <p>The current status of this target group. A status of <code>available</code> means the
10205
- * target group is correctly associated with a database. Other values indicate that you must wait for
10206
- * the target group to be ready, or take some action to resolve an issue.</p>
10207
- */
10208
- Status?: string;
10209
- /**
10210
- * <p>The settings that determine the size and behavior of the connection pool for the target group.</p>
10211
- */
10212
- ConnectionPoolConfig?: ConnectionPoolConfigurationInfo;
10213
- /**
10214
- * <p>The date and time when the target group was first created.</p>
10215
- */
10216
- CreatedDate?: Date;
10217
- /**
10218
- * <p>The date and time when the target group was last updated.</p>
10219
- */
10220
- UpdatedDate?: Date;
10221
- }
10222
- export interface DescribeDBProxyTargetGroupsResponse {
10223
- /**
10224
- * <p>An arbitrary number of <code>DBProxyTargetGroup</code> objects, containing details of the corresponding target groups.</p>
10225
- */
10226
- TargetGroups?: DBProxyTargetGroup[];
10227
- /**
10228
- * <p>An optional pagination token provided by a previous request.
10229
- * If this parameter is specified, the response includes only records beyond the marker,
10230
- * up to the value specified by <code>MaxRecords</code>.</p>
10231
- */
10232
- Marker?: string;
10233
- }
10234
- export interface DescribeDBProxyTargetsRequest {
10235
- /**
10236
- * <p>The identifier of the <code>DBProxyTarget</code> to describe.</p>
10237
- */
10238
- DBProxyName: string | undefined;
10239
- /**
10240
- * <p>The identifier of the <code>DBProxyTargetGroup</code> to describe.</p>
10241
- */
10242
- TargetGroupName?: string;
10243
- /**
10244
- * <p>This parameter is not currently supported.</p>
10245
- */
10246
- Filters?: Filter[];
10247
- /**
10248
- * <p>An optional pagination token provided by a previous request.
10249
- * If this parameter is specified, the response includes only records beyond the marker,
10250
- * up to the value specified by <code>MaxRecords</code>.</p>
10251
- */
10252
- Marker?: string;
10253
- /**
10254
- * <p>The maximum number of records to include in the response.
10255
- * If more records exist than the specified <code>MaxRecords</code> value,
10256
- * a pagination token called a marker is included in the response so that the remaining
10257
- * results can be retrieved.</p>
10258
- * <p>Default: 100</p>
10259
- * <p>Constraints: Minimum 20, maximum 100.</p>
10260
- */
10261
- MaxRecords?: number;
10262
- }
10263
- export declare enum TargetRole {
10264
- READ_ONLY = "READ_ONLY",
10265
- READ_WRITE = "READ_WRITE",
10266
- UNKNOWN = "UNKNOWN"
10267
- }
10268
- export declare enum TargetHealthReason {
10269
- AUTH_FAILURE = "AUTH_FAILURE",
10270
- CONNECTION_FAILED = "CONNECTION_FAILED",
10271
- INVALID_REPLICATION_STATE = "INVALID_REPLICATION_STATE",
10272
- PENDING_PROXY_CAPACITY = "PENDING_PROXY_CAPACITY",
10273
- UNREACHABLE = "UNREACHABLE"
10274
- }
10275
- export declare enum TargetState {
10276
- available = "AVAILABLE",
10277
- registering = "REGISTERING",
10278
- unavailable = "UNAVAILABLE"
10279
- }
10280
- /**
10281
- * <p>Information about the connection health of an RDS Proxy target.</p>
10282
- */
10283
- export interface TargetHealth {
10284
- /**
10285
- * <p>The current state of the connection health lifecycle for the RDS Proxy target.
10286
- * The following is a typical lifecycle example for the states of an RDS Proxy target:</p>
10287
- * <p>
10288
- * <code>registering</code> > <code>unavailable</code> > <code>available</code> > <code>unavailable</code> > <code>available</code>
10289
- * </p>
10290
- */
10291
- State?: TargetState | string;
10292
- /**
10293
- * <p>The reason for the current health <code>State</code> of the RDS Proxy target.</p>
10294
- */
10295
- Reason?: TargetHealthReason | string;
10296
- /**
10297
- * <p>A description of the health of the RDS Proxy target.
10298
- * If the <code>State</code> is <code>AVAILABLE</code>, a description is not included.</p>
10299
- */
10300
- Description?: string;
10301
- }
10302
- export declare enum TargetType {
10303
- RDS_INSTANCE = "RDS_INSTANCE",
10304
- RDS_SERVERLESS_ENDPOINT = "RDS_SERVERLESS_ENDPOINT",
10305
- TRACKED_CLUSTER = "TRACKED_CLUSTER"
10306
- }
10307
- /**
10308
- * <p>Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster
10309
- * that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.</p>
10310
- * <p>This data type is used as a response element in the <code>DescribeDBProxyTargets</code> action.</p>
10311
- */
10312
- export interface DBProxyTarget {
10313
- /**
10314
- * <p>The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.</p>
10315
- */
10316
- TargetArn?: string;
10317
- /**
10318
- * <p>The writer endpoint for the RDS DB instance or Aurora DB cluster.</p>
10319
- */
10320
- Endpoint?: string;
10321
- /**
10322
- * <p>The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an RDS DB instance.</p>
10323
- */
10324
- TrackedClusterId?: string;
10325
- /**
10326
- * <p>The identifier representing the target. It can be the instance identifier for an RDS DB instance,
10327
- * or the cluster identifier for an Aurora DB cluster.</p>
10328
- */
10329
- RdsResourceId?: string;
10330
- /**
10331
- * <p>The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.</p>
10332
- */
10333
- Port?: number;
10334
- /**
10335
- * <p>Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.</p>
10336
- */
10337
- Type?: TargetType | string;
10338
- /**
10339
- * <p>A value that indicates whether the target of the proxy can be used for read/write or read-only operations.</p>
10340
- */
10341
- Role?: TargetRole | string;
10342
- /**
10343
- * <p>Information about the connection health of the RDS Proxy target.</p>
10344
- */
10345
- TargetHealth?: TargetHealth;
10346
- }
10347
- export interface DescribeDBProxyTargetsResponse {
10348
- /**
10349
- * <p>An arbitrary number of <code>DBProxyTarget</code> objects, containing details of the corresponding targets.</p>
10350
- */
10351
- Targets?: DBProxyTarget[];
10352
- /**
10353
- * <p>An optional pagination token provided by a previous request.
10354
- * If this parameter is specified, the response includes only records beyond the marker,
10355
- * up to the value specified by <code>MaxRecords</code>.</p>
10356
- */
10357
- Marker?: string;
10358
- }
10359
- /**
10360
- * <p>Contains the result of a successful invocation of the <code>DescribeDBSecurityGroups</code> action.</p>
10361
- */
10362
- export interface DBSecurityGroupMessage {
10363
- /**
10364
- * <p>An optional pagination token provided by a previous request.
10365
- * If this parameter is specified, the response includes
10366
- * only records beyond the marker,
10367
- * up to the value specified by <code>MaxRecords</code>.</p>
10368
- */
10369
- Marker?: string;
10370
- /**
10371
- * <p>A list of <code>DBSecurityGroup</code> instances.</p>
10372
- */
10373
- DBSecurityGroups?: DBSecurityGroup[];
10374
- }
10375
- /**
10376
- * <p></p>
10377
- */
10378
- export interface DescribeDBSecurityGroupsMessage {
10379
- /**
10380
- * <p>The name of the DB security group to return details for.</p>
10381
- */
10382
- DBSecurityGroupName?: string;
10383
- /**
10384
- * <p>This parameter isn't currently supported.</p>
10385
- */
10386
- Filters?: Filter[];
10387
- /**
10388
- * <p>The maximum number of records to include in the response.
10389
- * If more records exist than the specified <code>MaxRecords</code> value,
10390
- * a pagination token called a marker is included in the response so that
10391
- * you can retrieve the remaining results.</p>
10392
- * <p>Default: 100</p>
10393
- * <p>Constraints: Minimum 20, maximum 100.</p>
10394
- */
10395
- MaxRecords?: number;
10396
- /**
10397
- * <p>An optional pagination token provided by a previous
10398
- * <code>DescribeDBSecurityGroups</code> request.
10399
- * If this parameter is specified, the response includes
10400
- * only records beyond the marker,
10401
- * up to the value specified by <code>MaxRecords</code>.</p>
10402
- */
10403
- Marker?: string;
10404
- }
10405
10494
  /**
10406
10495
  * @internal
10407
10496
  */
@@ -10570,6 +10659,26 @@ export declare const OptionGroupFilterSensitiveLog: (obj: OptionGroup) => any;
10570
10659
  * @internal
10571
10660
  */
10572
10661
  export declare const CopyOptionGroupResultFilterSensitiveLog: (obj: CopyOptionGroupResult) => any;
10662
+ /**
10663
+ * @internal
10664
+ */
10665
+ export declare const CreateBlueGreenDeploymentRequestFilterSensitiveLog: (obj: CreateBlueGreenDeploymentRequest) => any;
10666
+ /**
10667
+ * @internal
10668
+ */
10669
+ export declare const SwitchoverDetailFilterSensitiveLog: (obj: SwitchoverDetail) => any;
10670
+ /**
10671
+ * @internal
10672
+ */
10673
+ export declare const BlueGreenDeploymentTaskFilterSensitiveLog: (obj: BlueGreenDeploymentTask) => any;
10674
+ /**
10675
+ * @internal
10676
+ */
10677
+ export declare const BlueGreenDeploymentFilterSensitiveLog: (obj: BlueGreenDeployment) => any;
10678
+ /**
10679
+ * @internal
10680
+ */
10681
+ export declare const CreateBlueGreenDeploymentResponseFilterSensitiveLog: (obj: CreateBlueGreenDeploymentResponse) => any;
10573
10682
  /**
10574
10683
  * @internal
10575
10684
  */
@@ -10830,6 +10939,14 @@ export declare const CreateOptionGroupMessageFilterSensitiveLog: (obj: CreateOpt
10830
10939
  * @internal
10831
10940
  */
10832
10941
  export declare const CreateOptionGroupResultFilterSensitiveLog: (obj: CreateOptionGroupResult) => any;
10942
+ /**
10943
+ * @internal
10944
+ */
10945
+ export declare const DeleteBlueGreenDeploymentRequestFilterSensitiveLog: (obj: DeleteBlueGreenDeploymentRequest) => any;
10946
+ /**
10947
+ * @internal
10948
+ */
10949
+ export declare const DeleteBlueGreenDeploymentResponseFilterSensitiveLog: (obj: DeleteBlueGreenDeploymentResponse) => any;
10833
10950
  /**
10834
10951
  * @internal
10835
10952
  */
@@ -10953,15 +11070,23 @@ export declare const DescribeAccountAttributesMessageFilterSensitiveLog: (obj: D
10953
11070
  /**
10954
11071
  * @internal
10955
11072
  */
10956
- export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
11073
+ export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
10957
11074
  /**
10958
11075
  * @internal
10959
11076
  */
10960
- export declare const CertificateMessageFilterSensitiveLog: (obj: CertificateMessage) => any;
11077
+ export declare const DescribeBlueGreenDeploymentsRequestFilterSensitiveLog: (obj: DescribeBlueGreenDeploymentsRequest) => any;
10961
11078
  /**
10962
11079
  * @internal
10963
11080
  */
10964
- export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
11081
+ export declare const DescribeBlueGreenDeploymentsResponseFilterSensitiveLog: (obj: DescribeBlueGreenDeploymentsResponse) => any;
11082
+ /**
11083
+ * @internal
11084
+ */
11085
+ export declare const CertificateFilterSensitiveLog: (obj: Certificate) => any;
11086
+ /**
11087
+ * @internal
11088
+ */
11089
+ export declare const CertificateMessageFilterSensitiveLog: (obj: CertificateMessage) => any;
10965
11090
  /**
10966
11091
  * @internal
10967
11092
  */
@@ -11102,43 +11227,3 @@ export declare const DescribeDBProxyEndpointsRequestFilterSensitiveLog: (obj: De
11102
11227
  * @internal
11103
11228
  */
11104
11229
  export declare const DescribeDBProxyEndpointsResponseFilterSensitiveLog: (obj: DescribeDBProxyEndpointsResponse) => any;
11105
- /**
11106
- * @internal
11107
- */
11108
- export declare const DescribeDBProxyTargetGroupsRequestFilterSensitiveLog: (obj: DescribeDBProxyTargetGroupsRequest) => any;
11109
- /**
11110
- * @internal
11111
- */
11112
- export declare const ConnectionPoolConfigurationInfoFilterSensitiveLog: (obj: ConnectionPoolConfigurationInfo) => any;
11113
- /**
11114
- * @internal
11115
- */
11116
- export declare const DBProxyTargetGroupFilterSensitiveLog: (obj: DBProxyTargetGroup) => any;
11117
- /**
11118
- * @internal
11119
- */
11120
- export declare const DescribeDBProxyTargetGroupsResponseFilterSensitiveLog: (obj: DescribeDBProxyTargetGroupsResponse) => any;
11121
- /**
11122
- * @internal
11123
- */
11124
- export declare const DescribeDBProxyTargetsRequestFilterSensitiveLog: (obj: DescribeDBProxyTargetsRequest) => any;
11125
- /**
11126
- * @internal
11127
- */
11128
- export declare const TargetHealthFilterSensitiveLog: (obj: TargetHealth) => any;
11129
- /**
11130
- * @internal
11131
- */
11132
- export declare const DBProxyTargetFilterSensitiveLog: (obj: DBProxyTarget) => any;
11133
- /**
11134
- * @internal
11135
- */
11136
- export declare const DescribeDBProxyTargetsResponseFilterSensitiveLog: (obj: DescribeDBProxyTargetsResponse) => any;
11137
- /**
11138
- * @internal
11139
- */
11140
- export declare const DBSecurityGroupMessageFilterSensitiveLog: (obj: DBSecurityGroupMessage) => any;
11141
- /**
11142
- * @internal
11143
- */
11144
- export declare const DescribeDBSecurityGroupsMessageFilterSensitiveLog: (obj: DescribeDBSecurityGroupsMessage) => any;