File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-rds/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js144 KB · 3835 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var middlewareSdkRds = require('@aws-sdk/middleware-sdk-rds');var errors = require('./models/errors');var RDSServiceException = require('./models/RDSServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "rds",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class RDSClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultRDSHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AddRoleToDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "AddRoleToDBCluster", {})    .n("RDSClient", "AddRoleToDBClusterCommand")    .sc(schemas_0.AddRoleToDBCluster$)    .build() {} class AddRoleToDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "AddRoleToDBInstance", {})    .n("RDSClient", "AddRoleToDBInstanceCommand")    .sc(schemas_0.AddRoleToDBInstance$)    .build() {} class AddSourceIdentifierToSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "AddSourceIdentifierToSubscription", {})    .n("RDSClient", "AddSourceIdentifierToSubscriptionCommand")    .sc(schemas_0.AddSourceIdentifierToSubscription$)    .build() {} class AddTagsToResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "AddTagsToResource", {})    .n("RDSClient", "AddTagsToResourceCommand")    .sc(schemas_0.AddTagsToResource$)    .build() {} class ApplyPendingMaintenanceActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ApplyPendingMaintenanceAction", {})    .n("RDSClient", "ApplyPendingMaintenanceActionCommand")    .sc(schemas_0.ApplyPendingMaintenanceAction$)    .build() {} class AuthorizeDBSecurityGroupIngressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "AuthorizeDBSecurityGroupIngress", {})    .n("RDSClient", "AuthorizeDBSecurityGroupIngressCommand")    .sc(schemas_0.AuthorizeDBSecurityGroupIngress$)    .build() {} class BacktrackDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "BacktrackDBCluster", {})    .n("RDSClient", "BacktrackDBClusterCommand")    .sc(schemas_0.BacktrackDBCluster$)    .build() {} class CancelExportTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CancelExportTask", {})    .n("RDSClient", "CancelExportTaskCommand")    .sc(schemas_0.CancelExportTask$)    .build() {} class CopyDBClusterParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CopyDBClusterParameterGroup", {})    .n("RDSClient", "CopyDBClusterParameterGroupCommand")    .sc(schemas_0.CopyDBClusterParameterGroup$)    .build() {} class CopyDBClusterSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [        endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),        middlewareSdkRds.getCrossRegionPresignedUrlPlugin(config),    ];})    .s("AmazonRDSv19", "CopyDBClusterSnapshot", {})    .n("RDSClient", "CopyDBClusterSnapshotCommand")    .sc(schemas_0.CopyDBClusterSnapshot$)    .build() {} class CopyDBParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CopyDBParameterGroup", {})    .n("RDSClient", "CopyDBParameterGroupCommand")    .sc(schemas_0.CopyDBParameterGroup$)    .build() {} class CopyDBSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [        endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),        middlewareSdkRds.getCrossRegionPresignedUrlPlugin(config),    ];})    .s("AmazonRDSv19", "CopyDBSnapshot", {})    .n("RDSClient", "CopyDBSnapshotCommand")    .sc(schemas_0.CopyDBSnapshot$)    .build() {} class CopyOptionGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CopyOptionGroup", {})    .n("RDSClient", "CopyOptionGroupCommand")    .sc(schemas_0.CopyOptionGroup$)    .build() {} class CreateBlueGreenDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateBlueGreenDeployment", {})    .n("RDSClient", "CreateBlueGreenDeploymentCommand")    .sc(schemas_0.CreateBlueGreenDeployment$)    .build() {} class CreateCustomDBEngineVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateCustomDBEngineVersion", {})    .n("RDSClient", "CreateCustomDBEngineVersionCommand")    .sc(schemas_0.CreateCustomDBEngineVersion$)    .build() {} class CreateDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [        endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),        middlewareSdkRds.getCrossRegionPresignedUrlPlugin(config),    ];})    .s("AmazonRDSv19", "CreateDBCluster", {})    .n("RDSClient", "CreateDBClusterCommand")    .sc(schemas_0.CreateDBCluster$)    .build() {} class CreateDBClusterEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBClusterEndpoint", {})    .n("RDSClient", "CreateDBClusterEndpointCommand")    .sc(schemas_0.CreateDBClusterEndpoint$)    .build() {} class CreateDBClusterParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBClusterParameterGroup", {})    .n("RDSClient", "CreateDBClusterParameterGroupCommand")    .sc(schemas_0.CreateDBClusterParameterGroup$)    .build() {} class CreateDBClusterSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBClusterSnapshot", {})    .n("RDSClient", "CreateDBClusterSnapshotCommand")    .sc(schemas_0.CreateDBClusterSnapshot$)    .build() {} class CreateDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBInstance", {})    .n("RDSClient", "CreateDBInstanceCommand")    .sc(schemas_0.CreateDBInstance$)    .build() {} class CreateDBInstanceReadReplicaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [        endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),        middlewareSdkRds.getCrossRegionPresignedUrlPlugin(config),    ];})    .s("AmazonRDSv19", "CreateDBInstanceReadReplica", {})    .n("RDSClient", "CreateDBInstanceReadReplicaCommand")    .sc(schemas_0.CreateDBInstanceReadReplica$)    .build() {} class CreateDBParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBParameterGroup", {})    .n("RDSClient", "CreateDBParameterGroupCommand")    .sc(schemas_0.CreateDBParameterGroup$)    .build() {} class CreateDBProxyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBProxy", {})    .n("RDSClient", "CreateDBProxyCommand")    .sc(schemas_0.CreateDBProxy$)    .build() {} class CreateDBProxyEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBProxyEndpoint", {})    .n("RDSClient", "CreateDBProxyEndpointCommand")    .sc(schemas_0.CreateDBProxyEndpoint$)    .build() {} class CreateDBSecurityGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBSecurityGroup", {})    .n("RDSClient", "CreateDBSecurityGroupCommand")    .sc(schemas_0.CreateDBSecurityGroup$)    .build() {} class CreateDBShardGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBShardGroup", {})    .n("RDSClient", "CreateDBShardGroupCommand")    .sc(schemas_0.CreateDBShardGroup$)    .build() {} class CreateDBSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBSnapshot", {})    .n("RDSClient", "CreateDBSnapshotCommand")    .sc(schemas_0.CreateDBSnapshot$)    .build() {} class CreateDBSubnetGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateDBSubnetGroup", {})    .n("RDSClient", "CreateDBSubnetGroupCommand")    .sc(schemas_0.CreateDBSubnetGroup$)    .build() {} class CreateEventSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateEventSubscription", {})    .n("RDSClient", "CreateEventSubscriptionCommand")    .sc(schemas_0.CreateEventSubscription$)    .build() {} class CreateGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateGlobalCluster", {})    .n("RDSClient", "CreateGlobalClusterCommand")    .sc(schemas_0.CreateGlobalCluster$)    .build() {} class CreateIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateIntegration", {})    .n("RDSClient", "CreateIntegrationCommand")    .sc(schemas_0.CreateIntegration$)    .build() {} class CreateOptionGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateOptionGroup", {})    .n("RDSClient", "CreateOptionGroupCommand")    .sc(schemas_0.CreateOptionGroup$)    .build() {} class CreateTenantDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "CreateTenantDatabase", {})    .n("RDSClient", "CreateTenantDatabaseCommand")    .sc(schemas_0.CreateTenantDatabase$)    .build() {} class DeleteBlueGreenDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteBlueGreenDeployment", {})    .n("RDSClient", "DeleteBlueGreenDeploymentCommand")    .sc(schemas_0.DeleteBlueGreenDeployment$)    .build() {} class DeleteCustomDBEngineVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteCustomDBEngineVersion", {})    .n("RDSClient", "DeleteCustomDBEngineVersionCommand")    .sc(schemas_0.DeleteCustomDBEngineVersion$)    .build() {} class DeleteDBClusterAutomatedBackupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBClusterAutomatedBackup", {})    .n("RDSClient", "DeleteDBClusterAutomatedBackupCommand")    .sc(schemas_0.DeleteDBClusterAutomatedBackup$)    .build() {} class DeleteDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBCluster", {})    .n("RDSClient", "DeleteDBClusterCommand")    .sc(schemas_0.DeleteDBCluster$)    .build() {} class DeleteDBClusterEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBClusterEndpoint", {})    .n("RDSClient", "DeleteDBClusterEndpointCommand")    .sc(schemas_0.DeleteDBClusterEndpoint$)    .build() {} class DeleteDBClusterParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBClusterParameterGroup", {})    .n("RDSClient", "DeleteDBClusterParameterGroupCommand")    .sc(schemas_0.DeleteDBClusterParameterGroup$)    .build() {} class DeleteDBClusterSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBClusterSnapshot", {})    .n("RDSClient", "DeleteDBClusterSnapshotCommand")    .sc(schemas_0.DeleteDBClusterSnapshot$)    .build() {} class DeleteDBInstanceAutomatedBackupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBInstanceAutomatedBackup", {})    .n("RDSClient", "DeleteDBInstanceAutomatedBackupCommand")    .sc(schemas_0.DeleteDBInstanceAutomatedBackup$)    .build() {} class DeleteDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBInstance", {})    .n("RDSClient", "DeleteDBInstanceCommand")    .sc(schemas_0.DeleteDBInstance$)    .build() {} class DeleteDBParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBParameterGroup", {})    .n("RDSClient", "DeleteDBParameterGroupCommand")    .sc(schemas_0.DeleteDBParameterGroup$)    .build() {} class DeleteDBProxyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBProxy", {})    .n("RDSClient", "DeleteDBProxyCommand")    .sc(schemas_0.DeleteDBProxy$)    .build() {} class DeleteDBProxyEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBProxyEndpoint", {})    .n("RDSClient", "DeleteDBProxyEndpointCommand")    .sc(schemas_0.DeleteDBProxyEndpoint$)    .build() {} class DeleteDBSecurityGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBSecurityGroup", {})    .n("RDSClient", "DeleteDBSecurityGroupCommand")    .sc(schemas_0.DeleteDBSecurityGroup$)    .build() {} class DeleteDBShardGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBShardGroup", {})    .n("RDSClient", "DeleteDBShardGroupCommand")    .sc(schemas_0.DeleteDBShardGroup$)    .build() {} class DeleteDBSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBSnapshot", {})    .n("RDSClient", "DeleteDBSnapshotCommand")    .sc(schemas_0.DeleteDBSnapshot$)    .build() {} class DeleteDBSubnetGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteDBSubnetGroup", {})    .n("RDSClient", "DeleteDBSubnetGroupCommand")    .sc(schemas_0.DeleteDBSubnetGroup$)    .build() {} class DeleteEventSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteEventSubscription", {})    .n("RDSClient", "DeleteEventSubscriptionCommand")    .sc(schemas_0.DeleteEventSubscription$)    .build() {} class DeleteGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteGlobalCluster", {})    .n("RDSClient", "DeleteGlobalClusterCommand")    .sc(schemas_0.DeleteGlobalCluster$)    .build() {} class DeleteIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteIntegration", {})    .n("RDSClient", "DeleteIntegrationCommand")    .sc(schemas_0.DeleteIntegration$)    .build() {} class DeleteOptionGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteOptionGroup", {})    .n("RDSClient", "DeleteOptionGroupCommand")    .sc(schemas_0.DeleteOptionGroup$)    .build() {} class DeleteTenantDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeleteTenantDatabase", {})    .n("RDSClient", "DeleteTenantDatabaseCommand")    .sc(schemas_0.DeleteTenantDatabase$)    .build() {} class DeregisterDBProxyTargetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DeregisterDBProxyTargets", {})    .n("RDSClient", "DeregisterDBProxyTargetsCommand")    .sc(schemas_0.DeregisterDBProxyTargets$)    .build() {} class DescribeAccountAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeAccountAttributes", {})    .n("RDSClient", "DescribeAccountAttributesCommand")    .sc(schemas_0.DescribeAccountAttributes$)    .build() {} class DescribeBlueGreenDeploymentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeBlueGreenDeployments", {})    .n("RDSClient", "DescribeBlueGreenDeploymentsCommand")    .sc(schemas_0.DescribeBlueGreenDeployments$)    .build() {} class DescribeCertificatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeCertificates", {})    .n("RDSClient", "DescribeCertificatesCommand")    .sc(schemas_0.DescribeCertificates$)    .build() {} class DescribeDBClusterAutomatedBackupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterAutomatedBackups", {})    .n("RDSClient", "DescribeDBClusterAutomatedBackupsCommand")    .sc(schemas_0.DescribeDBClusterAutomatedBackups$)    .build() {} class DescribeDBClusterBacktracksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterBacktracks", {})    .n("RDSClient", "DescribeDBClusterBacktracksCommand")    .sc(schemas_0.DescribeDBClusterBacktracks$)    .build() {} class DescribeDBClusterEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterEndpoints", {})    .n("RDSClient", "DescribeDBClusterEndpointsCommand")    .sc(schemas_0.DescribeDBClusterEndpoints$)    .build() {} class DescribeDBClusterParameterGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterParameterGroups", {})    .n("RDSClient", "DescribeDBClusterParameterGroupsCommand")    .sc(schemas_0.DescribeDBClusterParameterGroups$)    .build() {} class DescribeDBClusterParametersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterParameters", {})    .n("RDSClient", "DescribeDBClusterParametersCommand")    .sc(schemas_0.DescribeDBClusterParameters$)    .build() {} class DescribeDBClustersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusters", {})    .n("RDSClient", "DescribeDBClustersCommand")    .sc(schemas_0.DescribeDBClusters$)    .build() {} class DescribeDBClusterSnapshotAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterSnapshotAttributes", {})    .n("RDSClient", "DescribeDBClusterSnapshotAttributesCommand")    .sc(schemas_0.DescribeDBClusterSnapshotAttributes$)    .build() {} class DescribeDBClusterSnapshotsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBClusterSnapshots", {})    .n("RDSClient", "DescribeDBClusterSnapshotsCommand")    .sc(schemas_0.DescribeDBClusterSnapshots$)    .build() {} class DescribeDBEngineVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBEngineVersions", {})    .n("RDSClient", "DescribeDBEngineVersionsCommand")    .sc(schemas_0.DescribeDBEngineVersions$)    .build() {} class DescribeDBInstanceAutomatedBackupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBInstanceAutomatedBackups", {})    .n("RDSClient", "DescribeDBInstanceAutomatedBackupsCommand")    .sc(schemas_0.DescribeDBInstanceAutomatedBackups$)    .build() {} class DescribeDBInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBInstances", {})    .n("RDSClient", "DescribeDBInstancesCommand")    .sc(schemas_0.DescribeDBInstances$)    .build() {} class DescribeDBLogFilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBLogFiles", {})    .n("RDSClient", "DescribeDBLogFilesCommand")    .sc(schemas_0.DescribeDBLogFiles$)    .build() {} class DescribeDBMajorEngineVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBMajorEngineVersions", {})    .n("RDSClient", "DescribeDBMajorEngineVersionsCommand")    .sc(schemas_0.DescribeDBMajorEngineVersions$)    .build() {} class DescribeDBParameterGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBParameterGroups", {})    .n("RDSClient", "DescribeDBParameterGroupsCommand")    .sc(schemas_0.DescribeDBParameterGroups$)    .build() {} class DescribeDBParametersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBParameters", {})    .n("RDSClient", "DescribeDBParametersCommand")    .sc(schemas_0.DescribeDBParameters$)    .build() {} class DescribeDBProxiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBProxies", {})    .n("RDSClient", "DescribeDBProxiesCommand")    .sc(schemas_0.DescribeDBProxies$)    .build() {} class DescribeDBProxyEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBProxyEndpoints", {})    .n("RDSClient", "DescribeDBProxyEndpointsCommand")    .sc(schemas_0.DescribeDBProxyEndpoints$)    .build() {} class DescribeDBProxyTargetGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBProxyTargetGroups", {})    .n("RDSClient", "DescribeDBProxyTargetGroupsCommand")    .sc(schemas_0.DescribeDBProxyTargetGroups$)    .build() {} class DescribeDBProxyTargetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBProxyTargets", {})    .n("RDSClient", "DescribeDBProxyTargetsCommand")    .sc(schemas_0.DescribeDBProxyTargets$)    .build() {} class DescribeDBRecommendationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBRecommendations", {})    .n("RDSClient", "DescribeDBRecommendationsCommand")    .sc(schemas_0.DescribeDBRecommendations$)    .build() {} class DescribeDBSecurityGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBSecurityGroups", {})    .n("RDSClient", "DescribeDBSecurityGroupsCommand")    .sc(schemas_0.DescribeDBSecurityGroups$)    .build() {} class DescribeDBShardGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBShardGroups", {})    .n("RDSClient", "DescribeDBShardGroupsCommand")    .sc(schemas_0.DescribeDBShardGroups$)    .build() {} class DescribeDBSnapshotAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBSnapshotAttributes", {})    .n("RDSClient", "DescribeDBSnapshotAttributesCommand")    .sc(schemas_0.DescribeDBSnapshotAttributes$)    .build() {} class DescribeDBSnapshotsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBSnapshots", {})    .n("RDSClient", "DescribeDBSnapshotsCommand")    .sc(schemas_0.DescribeDBSnapshots$)    .build() {} class DescribeDBSnapshotTenantDatabasesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBSnapshotTenantDatabases", {})    .n("RDSClient", "DescribeDBSnapshotTenantDatabasesCommand")    .sc(schemas_0.DescribeDBSnapshotTenantDatabases$)    .build() {} class DescribeDBSubnetGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeDBSubnetGroups", {})    .n("RDSClient", "DescribeDBSubnetGroupsCommand")    .sc(schemas_0.DescribeDBSubnetGroups$)    .build() {} class DescribeEngineDefaultClusterParametersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeEngineDefaultClusterParameters", {})    .n("RDSClient", "DescribeEngineDefaultClusterParametersCommand")    .sc(schemas_0.DescribeEngineDefaultClusterParameters$)    .build() {} class DescribeEngineDefaultParametersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeEngineDefaultParameters", {})    .n("RDSClient", "DescribeEngineDefaultParametersCommand")    .sc(schemas_0.DescribeEngineDefaultParameters$)    .build() {} class DescribeEventCategoriesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeEventCategories", {})    .n("RDSClient", "DescribeEventCategoriesCommand")    .sc(schemas_0.DescribeEventCategories$)    .build() {} class DescribeEventsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeEvents", {})    .n("RDSClient", "DescribeEventsCommand")    .sc(schemas_0.DescribeEvents$)    .build() {} class DescribeEventSubscriptionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeEventSubscriptions", {})    .n("RDSClient", "DescribeEventSubscriptionsCommand")    .sc(schemas_0.DescribeEventSubscriptions$)    .build() {} class DescribeExportTasksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeExportTasks", {})    .n("RDSClient", "DescribeExportTasksCommand")    .sc(schemas_0.DescribeExportTasks$)    .build() {} class DescribeGlobalClustersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeGlobalClusters", {})    .n("RDSClient", "DescribeGlobalClustersCommand")    .sc(schemas_0.DescribeGlobalClusters$)    .build() {} class DescribeIntegrationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeIntegrations", {})    .n("RDSClient", "DescribeIntegrationsCommand")    .sc(schemas_0.DescribeIntegrations$)    .build() {} class DescribeOptionGroupOptionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeOptionGroupOptions", {})    .n("RDSClient", "DescribeOptionGroupOptionsCommand")    .sc(schemas_0.DescribeOptionGroupOptions$)    .build() {} class DescribeOptionGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeOptionGroups", {})    .n("RDSClient", "DescribeOptionGroupsCommand")    .sc(schemas_0.DescribeOptionGroups$)    .build() {} class DescribeOrderableDBInstanceOptionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeOrderableDBInstanceOptions", {})    .n("RDSClient", "DescribeOrderableDBInstanceOptionsCommand")    .sc(schemas_0.DescribeOrderableDBInstanceOptions$)    .build() {} class DescribePendingMaintenanceActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribePendingMaintenanceActions", {})    .n("RDSClient", "DescribePendingMaintenanceActionsCommand")    .sc(schemas_0.DescribePendingMaintenanceActions$)    .build() {} class DescribeReservedDBInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeReservedDBInstances", {})    .n("RDSClient", "DescribeReservedDBInstancesCommand")    .sc(schemas_0.DescribeReservedDBInstances$)    .build() {} class DescribeReservedDBInstancesOfferingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeReservedDBInstancesOfferings", {})    .n("RDSClient", "DescribeReservedDBInstancesOfferingsCommand")    .sc(schemas_0.DescribeReservedDBInstancesOfferings$)    .build() {} class DescribeServerlessV2PlatformVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeServerlessV2PlatformVersions", {})    .n("RDSClient", "DescribeServerlessV2PlatformVersionsCommand")    .sc(schemas_0.DescribeServerlessV2PlatformVersions$)    .build() {} class DescribeSourceRegionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeSourceRegions", {})    .n("RDSClient", "DescribeSourceRegionsCommand")    .sc(schemas_0.DescribeSourceRegions$)    .build() {} class DescribeTenantDatabasesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeTenantDatabases", {})    .n("RDSClient", "DescribeTenantDatabasesCommand")    .sc(schemas_0.DescribeTenantDatabases$)    .build() {} class DescribeValidDBInstanceModificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DescribeValidDBInstanceModifications", {})    .n("RDSClient", "DescribeValidDBInstanceModificationsCommand")    .sc(schemas_0.DescribeValidDBInstanceModifications$)    .build() {} class DisableHttpEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DisableHttpEndpoint", {})    .n("RDSClient", "DisableHttpEndpointCommand")    .sc(schemas_0.DisableHttpEndpoint$)    .build() {} class DownloadDBLogFilePortionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "DownloadDBLogFilePortion", {})    .n("RDSClient", "DownloadDBLogFilePortionCommand")    .sc(schemas_0.DownloadDBLogFilePortion$)    .build() {} class EnableHttpEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "EnableHttpEndpoint", {})    .n("RDSClient", "EnableHttpEndpointCommand")    .sc(schemas_0.EnableHttpEndpoint$)    .build() {} class FailoverDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "FailoverDBCluster", {})    .n("RDSClient", "FailoverDBClusterCommand")    .sc(schemas_0.FailoverDBCluster$)    .build() {} class FailoverGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "FailoverGlobalCluster", {})    .n("RDSClient", "FailoverGlobalClusterCommand")    .sc(schemas_0.FailoverGlobalCluster$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ListTagsForResource", {})    .n("RDSClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ModifyActivityStreamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyActivityStream", {})    .n("RDSClient", "ModifyActivityStreamCommand")    .sc(schemas_0.ModifyActivityStream$)    .build() {} class ModifyCertificatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyCertificates", {})    .n("RDSClient", "ModifyCertificatesCommand")    .sc(schemas_0.ModifyCertificates$)    .build() {} class ModifyCurrentDBClusterCapacityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyCurrentDBClusterCapacity", {})    .n("RDSClient", "ModifyCurrentDBClusterCapacityCommand")    .sc(schemas_0.ModifyCurrentDBClusterCapacity$)    .build() {} class ModifyCustomDBEngineVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyCustomDBEngineVersion", {})    .n("RDSClient", "ModifyCustomDBEngineVersionCommand")    .sc(schemas_0.ModifyCustomDBEngineVersion$)    .build() {} class ModifyDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBCluster", {})    .n("RDSClient", "ModifyDBClusterCommand")    .sc(schemas_0.ModifyDBCluster$)    .build() {} class ModifyDBClusterEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBClusterEndpoint", {})    .n("RDSClient", "ModifyDBClusterEndpointCommand")    .sc(schemas_0.ModifyDBClusterEndpoint$)    .build() {} class ModifyDBClusterParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBClusterParameterGroup", {})    .n("RDSClient", "ModifyDBClusterParameterGroupCommand")    .sc(schemas_0.ModifyDBClusterParameterGroup$)    .build() {} class ModifyDBClusterSnapshotAttributeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBClusterSnapshotAttribute", {})    .n("RDSClient", "ModifyDBClusterSnapshotAttributeCommand")    .sc(schemas_0.ModifyDBClusterSnapshotAttribute$)    .build() {} class ModifyDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBInstance", {})    .n("RDSClient", "ModifyDBInstanceCommand")    .sc(schemas_0.ModifyDBInstance$)    .build() {} class ModifyDBParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBParameterGroup", {})    .n("RDSClient", "ModifyDBParameterGroupCommand")    .sc(schemas_0.ModifyDBParameterGroup$)    .build() {} class ModifyDBProxyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBProxy", {})    .n("RDSClient", "ModifyDBProxyCommand")    .sc(schemas_0.ModifyDBProxy$)    .build() {} class ModifyDBProxyEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBProxyEndpoint", {})    .n("RDSClient", "ModifyDBProxyEndpointCommand")    .sc(schemas_0.ModifyDBProxyEndpoint$)    .build() {} class ModifyDBProxyTargetGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBProxyTargetGroup", {})    .n("RDSClient", "ModifyDBProxyTargetGroupCommand")    .sc(schemas_0.ModifyDBProxyTargetGroup$)    .build() {} class ModifyDBRecommendationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBRecommendation", {})    .n("RDSClient", "ModifyDBRecommendationCommand")    .sc(schemas_0.ModifyDBRecommendation$)    .build() {} class ModifyDBShardGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBShardGroup", {})    .n("RDSClient", "ModifyDBShardGroupCommand")    .sc(schemas_0.ModifyDBShardGroup$)    .build() {} class ModifyDBSnapshotAttributeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBSnapshotAttribute", {})    .n("RDSClient", "ModifyDBSnapshotAttributeCommand")    .sc(schemas_0.ModifyDBSnapshotAttribute$)    .build() {} class ModifyDBSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBSnapshot", {})    .n("RDSClient", "ModifyDBSnapshotCommand")    .sc(schemas_0.ModifyDBSnapshot$)    .build() {} class ModifyDBSubnetGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyDBSubnetGroup", {})    .n("RDSClient", "ModifyDBSubnetGroupCommand")    .sc(schemas_0.ModifyDBSubnetGroup$)    .build() {} class ModifyEventSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyEventSubscription", {})    .n("RDSClient", "ModifyEventSubscriptionCommand")    .sc(schemas_0.ModifyEventSubscription$)    .build() {} class ModifyGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyGlobalCluster", {})    .n("RDSClient", "ModifyGlobalClusterCommand")    .sc(schemas_0.ModifyGlobalCluster$)    .build() {} class ModifyIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyIntegration", {})    .n("RDSClient", "ModifyIntegrationCommand")    .sc(schemas_0.ModifyIntegration$)    .build() {} class ModifyOptionGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyOptionGroup", {})    .n("RDSClient", "ModifyOptionGroupCommand")    .sc(schemas_0.ModifyOptionGroup$)    .build() {} class ModifyTenantDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ModifyTenantDatabase", {})    .n("RDSClient", "ModifyTenantDatabaseCommand")    .sc(schemas_0.ModifyTenantDatabase$)    .build() {} class PromoteReadReplicaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "PromoteReadReplica", {})    .n("RDSClient", "PromoteReadReplicaCommand")    .sc(schemas_0.PromoteReadReplica$)    .build() {} class PromoteReadReplicaDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "PromoteReadReplicaDBCluster", {})    .n("RDSClient", "PromoteReadReplicaDBClusterCommand")    .sc(schemas_0.PromoteReadReplicaDBCluster$)    .build() {} class PurchaseReservedDBInstancesOfferingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "PurchaseReservedDBInstancesOffering", {})    .n("RDSClient", "PurchaseReservedDBInstancesOfferingCommand")    .sc(schemas_0.PurchaseReservedDBInstancesOffering$)    .build() {} class RebootDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RebootDBCluster", {})    .n("RDSClient", "RebootDBClusterCommand")    .sc(schemas_0.RebootDBCluster$)    .build() {} class RebootDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RebootDBInstance", {})    .n("RDSClient", "RebootDBInstanceCommand")    .sc(schemas_0.RebootDBInstance$)    .build() {} class RebootDBShardGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RebootDBShardGroup", {})    .n("RDSClient", "RebootDBShardGroupCommand")    .sc(schemas_0.RebootDBShardGroup$)    .build() {} class RegisterDBProxyTargetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RegisterDBProxyTargets", {})    .n("RDSClient", "RegisterDBProxyTargetsCommand")    .sc(schemas_0.RegisterDBProxyTargets$)    .build() {} class RemoveFromGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RemoveFromGlobalCluster", {})    .n("RDSClient", "RemoveFromGlobalClusterCommand")    .sc(schemas_0.RemoveFromGlobalCluster$)    .build() {} class RemoveRoleFromDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RemoveRoleFromDBCluster", {})    .n("RDSClient", "RemoveRoleFromDBClusterCommand")    .sc(schemas_0.RemoveRoleFromDBCluster$)    .build() {} class RemoveRoleFromDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RemoveRoleFromDBInstance", {})    .n("RDSClient", "RemoveRoleFromDBInstanceCommand")    .sc(schemas_0.RemoveRoleFromDBInstance$)    .build() {} class RemoveSourceIdentifierFromSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RemoveSourceIdentifierFromSubscription", {})    .n("RDSClient", "RemoveSourceIdentifierFromSubscriptionCommand")    .sc(schemas_0.RemoveSourceIdentifierFromSubscription$)    .build() {} class RemoveTagsFromResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RemoveTagsFromResource", {})    .n("RDSClient", "RemoveTagsFromResourceCommand")    .sc(schemas_0.RemoveTagsFromResource$)    .build() {} class ResetDBClusterParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ResetDBClusterParameterGroup", {})    .n("RDSClient", "ResetDBClusterParameterGroupCommand")    .sc(schemas_0.ResetDBClusterParameterGroup$)    .build() {} class ResetDBParameterGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "ResetDBParameterGroup", {})    .n("RDSClient", "ResetDBParameterGroupCommand")    .sc(schemas_0.ResetDBParameterGroup$)    .build() {} class RestoreDBClusterFromS3Command extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBClusterFromS3", {})    .n("RDSClient", "RestoreDBClusterFromS3Command")    .sc(schemas_0.RestoreDBClusterFromS3$)    .build() {} class RestoreDBClusterFromSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBClusterFromSnapshot", {})    .n("RDSClient", "RestoreDBClusterFromSnapshotCommand")    .sc(schemas_0.RestoreDBClusterFromSnapshot$)    .build() {} class RestoreDBClusterToPointInTimeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBClusterToPointInTime", {})    .n("RDSClient", "RestoreDBClusterToPointInTimeCommand")    .sc(schemas_0.RestoreDBClusterToPointInTime$)    .build() {} class RestoreDBInstanceFromDBSnapshotCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBInstanceFromDBSnapshot", {})    .n("RDSClient", "RestoreDBInstanceFromDBSnapshotCommand")    .sc(schemas_0.RestoreDBInstanceFromDBSnapshot$)    .build() {} class RestoreDBInstanceFromS3Command extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBInstanceFromS3", {})    .n("RDSClient", "RestoreDBInstanceFromS3Command")    .sc(schemas_0.RestoreDBInstanceFromS3$)    .build() {} class RestoreDBInstanceToPointInTimeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RestoreDBInstanceToPointInTime", {})    .n("RDSClient", "RestoreDBInstanceToPointInTimeCommand")    .sc(schemas_0.RestoreDBInstanceToPointInTime$)    .build() {} class RevokeDBSecurityGroupIngressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "RevokeDBSecurityGroupIngress", {})    .n("RDSClient", "RevokeDBSecurityGroupIngressCommand")    .sc(schemas_0.RevokeDBSecurityGroupIngress$)    .build() {} class StartActivityStreamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StartActivityStream", {})    .n("RDSClient", "StartActivityStreamCommand")    .sc(schemas_0.StartActivityStream$)    .build() {} class StartDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StartDBCluster", {})    .n("RDSClient", "StartDBClusterCommand")    .sc(schemas_0.StartDBCluster$)    .build() {} class StartDBInstanceAutomatedBackupsReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [        endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),        middlewareSdkRds.getCrossRegionPresignedUrlPlugin(config),    ];})    .s("AmazonRDSv19", "StartDBInstanceAutomatedBackupsReplication", {})    .n("RDSClient", "StartDBInstanceAutomatedBackupsReplicationCommand")    .sc(schemas_0.StartDBInstanceAutomatedBackupsReplication$)    .build() {} class StartDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StartDBInstance", {})    .n("RDSClient", "StartDBInstanceCommand")    .sc(schemas_0.StartDBInstance$)    .build() {} class StartExportTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StartExportTask", {})    .n("RDSClient", "StartExportTaskCommand")    .sc(schemas_0.StartExportTask$)    .build() {} class StopActivityStreamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StopActivityStream", {})    .n("RDSClient", "StopActivityStreamCommand")    .sc(schemas_0.StopActivityStream$)    .build() {} class StopDBClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StopDBCluster", {})    .n("RDSClient", "StopDBClusterCommand")    .sc(schemas_0.StopDBCluster$)    .build() {} class StopDBInstanceAutomatedBackupsReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StopDBInstanceAutomatedBackupsReplication", {})    .n("RDSClient", "StopDBInstanceAutomatedBackupsReplicationCommand")    .sc(schemas_0.StopDBInstanceAutomatedBackupsReplication$)    .build() {} class StopDBInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "StopDBInstance", {})    .n("RDSClient", "StopDBInstanceCommand")    .sc(schemas_0.StopDBInstance$)    .build() {} class SwitchoverBlueGreenDeploymentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "SwitchoverBlueGreenDeployment", {})    .n("RDSClient", "SwitchoverBlueGreenDeploymentCommand")    .sc(schemas_0.SwitchoverBlueGreenDeployment$)    .build() {} class SwitchoverGlobalClusterCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "SwitchoverGlobalCluster", {})    .n("RDSClient", "SwitchoverGlobalClusterCommand")    .sc(schemas_0.SwitchoverGlobalCluster$)    .build() {} class SwitchoverReadReplicaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonRDSv19", "SwitchoverReadReplica", {})    .n("RDSClient", "SwitchoverReadReplicaCommand")    .sc(schemas_0.SwitchoverReadReplica$)    .build() {} const paginateDescribeBlueGreenDeployments = core.createPaginator(RDSClient, DescribeBlueGreenDeploymentsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeCertificates = core.createPaginator(RDSClient, DescribeCertificatesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterAutomatedBackups = core.createPaginator(RDSClient, DescribeDBClusterAutomatedBackupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterBacktracks = core.createPaginator(RDSClient, DescribeDBClusterBacktracksCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterEndpoints = core.createPaginator(RDSClient, DescribeDBClusterEndpointsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterParameterGroups = core.createPaginator(RDSClient, DescribeDBClusterParameterGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterParameters = core.createPaginator(RDSClient, DescribeDBClusterParametersCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusterSnapshots = core.createPaginator(RDSClient, DescribeDBClusterSnapshotsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBClusters = core.createPaginator(RDSClient, DescribeDBClustersCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBEngineVersions = core.createPaginator(RDSClient, DescribeDBEngineVersionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBInstanceAutomatedBackups = core.createPaginator(RDSClient, DescribeDBInstanceAutomatedBackupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBInstances = core.createPaginator(RDSClient, DescribeDBInstancesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBLogFiles = core.createPaginator(RDSClient, DescribeDBLogFilesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBMajorEngineVersions = core.createPaginator(RDSClient, DescribeDBMajorEngineVersionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBParameterGroups = core.createPaginator(RDSClient, DescribeDBParameterGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBParameters = core.createPaginator(RDSClient, DescribeDBParametersCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBProxies = core.createPaginator(RDSClient, DescribeDBProxiesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBProxyEndpoints = core.createPaginator(RDSClient, DescribeDBProxyEndpointsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBProxyTargetGroups = core.createPaginator(RDSClient, DescribeDBProxyTargetGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBProxyTargets = core.createPaginator(RDSClient, DescribeDBProxyTargetsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBRecommendations = core.createPaginator(RDSClient, DescribeDBRecommendationsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBSecurityGroups = core.createPaginator(RDSClient, DescribeDBSecurityGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBSnapshots = core.createPaginator(RDSClient, DescribeDBSnapshotsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBSnapshotTenantDatabases = core.createPaginator(RDSClient, DescribeDBSnapshotTenantDatabasesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeDBSubnetGroups = core.createPaginator(RDSClient, DescribeDBSubnetGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeEngineDefaultClusterParameters = core.createPaginator(RDSClient, DescribeEngineDefaultClusterParametersCommand, "Marker", "EngineDefaults.Marker", "MaxRecords"); const paginateDescribeEngineDefaultParameters = core.createPaginator(RDSClient, DescribeEngineDefaultParametersCommand, "Marker", "EngineDefaults.Marker", "MaxRecords"); const paginateDescribeEvents = core.createPaginator(RDSClient, DescribeEventsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeEventSubscriptions = core.createPaginator(RDSClient, DescribeEventSubscriptionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeExportTasks = core.createPaginator(RDSClient, DescribeExportTasksCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeGlobalClusters = core.createPaginator(RDSClient, DescribeGlobalClustersCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeIntegrations = core.createPaginator(RDSClient, DescribeIntegrationsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeOptionGroupOptions = core.createPaginator(RDSClient, DescribeOptionGroupOptionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeOptionGroups = core.createPaginator(RDSClient, DescribeOptionGroupsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeOrderableDBInstanceOptions = core.createPaginator(RDSClient, DescribeOrderableDBInstanceOptionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribePendingMaintenanceActions = core.createPaginator(RDSClient, DescribePendingMaintenanceActionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeReservedDBInstancesOfferings = core.createPaginator(RDSClient, DescribeReservedDBInstancesOfferingsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeReservedDBInstances = core.createPaginator(RDSClient, DescribeReservedDBInstancesCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeServerlessV2PlatformVersions = core.createPaginator(RDSClient, DescribeServerlessV2PlatformVersionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeSourceRegions = core.createPaginator(RDSClient, DescribeSourceRegionsCommand, "Marker", "Marker", "MaxRecords"); const paginateDescribeTenantDatabases = core.createPaginator(RDSClient, DescribeTenantDatabasesCommand, "Marker", "Marker", "MaxRecords"); const paginateDownloadDBLogFilePortion = core.createPaginator(RDSClient, DownloadDBLogFilePortionCommand, "Marker", "Marker", "NumberOfLines"); const checkState$9 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBClustersCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "available");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleted") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "failed") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-restore") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-parameters") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBClusterAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);};const waitUntilDBClusterAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);    return client.checkExceptions(result);}; const checkState$8 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBClustersCommand(input));        reason = result;        try {            const returnComparator = () => {                return (result.DBClusters.length == 0);            };            if (returnComparator() == true) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "creating") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "modifying") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "rebooting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusters);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "resetting-master-credentials") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "DBClusterNotFoundFault") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBClusterDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);};const waitUntilDBClusterDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);    return client.checkExceptions(result);}; const checkState$7 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBClusterSnapshotsCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "available");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleted") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "failed") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-restore") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-parameters") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBClusterSnapshotAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);};const waitUntilDBClusterSnapshotAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);    return client.checkExceptions(result);}; const checkState$6 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBClusterSnapshotsCommand(input));        reason = result;        try {            const returnComparator = () => {                return (result.DBClusterSnapshots.length == 0);            };            if (returnComparator() == true) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "creating") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "modifying") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "rebooting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBClusterSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "resetting-master-credentials") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "DBClusterSnapshotNotFoundFault") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBClusterSnapshotDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);};const waitUntilDBClusterSnapshotDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);    return client.checkExceptions(result);}; const checkState$5 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBInstancesCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "available");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleted") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "failed") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-restore") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-parameters") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBInstanceAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);};const waitUntilDBInstanceAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);    return client.checkExceptions(result);}; const checkState$4 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBInstancesCommand(input));        reason = result;        try {            const returnComparator = () => {                return (result.DBInstances.length == 0);            };            if (returnComparator() == true) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "creating") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "modifying") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "rebooting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBInstances);                let projection_3 = flat_1.map((element_2) => {                    return element_2.DBInstanceStatus;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "resetting-master-credentials") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "DBInstanceNotFoundFault") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBInstanceDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);};const waitUntilDBInstanceDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);    return client.checkExceptions(result);}; const checkState$3 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBSnapshotsCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "available");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleted") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "failed") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-restore") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-parameters") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBSnapshotAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);};const waitUntilDBSnapshotAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);    return client.checkExceptions(result);}; const checkState$2 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeDBSnapshotsCommand(input));        reason = result;        try {            const returnComparator = () => {                return (result.DBSnapshots.length == 0);            };            if (returnComparator() == true) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "creating") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "modifying") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "rebooting") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.DBSnapshots);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "resetting-master-credentials") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "DBSnapshotNotFoundFault") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForDBSnapshotDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);};const waitUntilDBSnapshotDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);    return client.checkExceptions(result);}; const checkState$1 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeTenantDatabasesCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.TenantDatabases);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "available");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.TenantDatabases);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "deleted") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.TenantDatabases);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-parameters") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.TenantDatabases);                let projection_3 = flat_1.map((element_2) => {                    return element_2.Status;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "incompatible-restore") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForTenantDatabaseAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);};const waitUntilTenantDatabaseAvailable = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);    return client.checkExceptions(result);}; const checkState = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeTenantDatabasesCommand(input));        reason = result;        try {            const returnComparator = () => {                return (result.TenantDatabases.length == 0);            };            if (returnComparator() == true) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "DBInstanceNotFoundFault") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForTenantDatabaseDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilTenantDatabaseDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 1800 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    AddRoleToDBClusterCommand,    AddRoleToDBInstanceCommand,    AddSourceIdentifierToSubscriptionCommand,    AddTagsToResourceCommand,    ApplyPendingMaintenanceActionCommand,    AuthorizeDBSecurityGroupIngressCommand,    BacktrackDBClusterCommand,    CancelExportTaskCommand,    CopyDBClusterParameterGroupCommand,    CopyDBClusterSnapshotCommand,    CopyDBParameterGroupCommand,    CopyDBSnapshotCommand,    CopyOptionGroupCommand,    CreateBlueGreenDeploymentCommand,    CreateCustomDBEngineVersionCommand,    CreateDBClusterCommand,    CreateDBClusterEndpointCommand,    CreateDBClusterParameterGroupCommand,    CreateDBClusterSnapshotCommand,    CreateDBInstanceCommand,    CreateDBInstanceReadReplicaCommand,    CreateDBParameterGroupCommand,    CreateDBProxyCommand,    CreateDBProxyEndpointCommand,    CreateDBSecurityGroupCommand,    CreateDBShardGroupCommand,    CreateDBSnapshotCommand,    CreateDBSubnetGroupCommand,    CreateEventSubscriptionCommand,    CreateGlobalClusterCommand,    CreateIntegrationCommand,    CreateOptionGroupCommand,    CreateTenantDatabaseCommand,    DeleteBlueGreenDeploymentCommand,    DeleteCustomDBEngineVersionCommand,    DeleteDBClusterCommand,    DeleteDBClusterAutomatedBackupCommand,    DeleteDBClusterEndpointCommand,    DeleteDBClusterParameterGroupCommand,    DeleteDBClusterSnapshotCommand,    DeleteDBInstanceCommand,    DeleteDBInstanceAutomatedBackupCommand,    DeleteDBParameterGroupCommand,    DeleteDBProxyCommand,    DeleteDBProxyEndpointCommand,    DeleteDBSecurityGroupCommand,    DeleteDBShardGroupCommand,    DeleteDBSnapshotCommand,    DeleteDBSubnetGroupCommand,    DeleteEventSubscriptionCommand,    DeleteGlobalClusterCommand,    DeleteIntegrationCommand,    DeleteOptionGroupCommand,    DeleteTenantDatabaseCommand,    DeregisterDBProxyTargetsCommand,    DescribeAccountAttributesCommand,    DescribeBlueGreenDeploymentsCommand,    DescribeCertificatesCommand,    DescribeDBClusterAutomatedBackupsCommand,    DescribeDBClusterBacktracksCommand,    DescribeDBClusterEndpointsCommand,    DescribeDBClusterParameterGroupsCommand,    DescribeDBClusterParametersCommand,    DescribeDBClustersCommand,    DescribeDBClusterSnapshotAttributesCommand,    DescribeDBClusterSnapshotsCommand,    DescribeDBEngineVersionsCommand,    DescribeDBInstanceAutomatedBackupsCommand,    DescribeDBInstancesCommand,    DescribeDBLogFilesCommand,    DescribeDBMajorEngineVersionsCommand,    DescribeDBParameterGroupsCommand,    DescribeDBParametersCommand,    DescribeDBProxiesCommand,    DescribeDBProxyEndpointsCommand,    DescribeDBProxyTargetGroupsCommand,    DescribeDBProxyTargetsCommand,    DescribeDBRecommendationsCommand,    DescribeDBSecurityGroupsCommand,    DescribeDBShardGroupsCommand,    DescribeDBSnapshotAttributesCommand,    DescribeDBSnapshotsCommand,    DescribeDBSnapshotTenantDatabasesCommand,    DescribeDBSubnetGroupsCommand,    DescribeEngineDefaultClusterParametersCommand,    DescribeEngineDefaultParametersCommand,    DescribeEventCategoriesCommand,    DescribeEventsCommand,    DescribeEventSubscriptionsCommand,    DescribeExportTasksCommand,    DescribeGlobalClustersCommand,    DescribeIntegrationsCommand,    DescribeOptionGroupOptionsCommand,    DescribeOptionGroupsCommand,    DescribeOrderableDBInstanceOptionsCommand,    DescribePendingMaintenanceActionsCommand,    DescribeReservedDBInstancesCommand,    DescribeReservedDBInstancesOfferingsCommand,    DescribeServerlessV2PlatformVersionsCommand,    DescribeSourceRegionsCommand,    DescribeTenantDatabasesCommand,    DescribeValidDBInstanceModificationsCommand,    DisableHttpEndpointCommand,    DownloadDBLogFilePortionCommand,    EnableHttpEndpointCommand,    FailoverDBClusterCommand,    FailoverGlobalClusterCommand,    ListTagsForResourceCommand,    ModifyActivityStreamCommand,    ModifyCertificatesCommand,    ModifyCurrentDBClusterCapacityCommand,    ModifyCustomDBEngineVersionCommand,    ModifyDBClusterCommand,    ModifyDBClusterEndpointCommand,    ModifyDBClusterParameterGroupCommand,    ModifyDBClusterSnapshotAttributeCommand,    ModifyDBInstanceCommand,    ModifyDBParameterGroupCommand,    ModifyDBProxyCommand,    ModifyDBProxyEndpointCommand,    ModifyDBProxyTargetGroupCommand,    ModifyDBRecommendationCommand,    ModifyDBShardGroupCommand,    ModifyDBSnapshotCommand,    ModifyDBSnapshotAttributeCommand,    ModifyDBSubnetGroupCommand,    ModifyEventSubscriptionCommand,    ModifyGlobalClusterCommand,    ModifyIntegrationCommand,    ModifyOptionGroupCommand,    ModifyTenantDatabaseCommand,    PromoteReadReplicaCommand,    PromoteReadReplicaDBClusterCommand,    PurchaseReservedDBInstancesOfferingCommand,    RebootDBClusterCommand,    RebootDBInstanceCommand,    RebootDBShardGroupCommand,    RegisterDBProxyTargetsCommand,    RemoveFromGlobalClusterCommand,    RemoveRoleFromDBClusterCommand,    RemoveRoleFromDBInstanceCommand,    RemoveSourceIdentifierFromSubscriptionCommand,    RemoveTagsFromResourceCommand,    ResetDBClusterParameterGroupCommand,    ResetDBParameterGroupCommand,    RestoreDBClusterFromS3Command,    RestoreDBClusterFromSnapshotCommand,    RestoreDBClusterToPointInTimeCommand,    RestoreDBInstanceFromDBSnapshotCommand,    RestoreDBInstanceFromS3Command,    RestoreDBInstanceToPointInTimeCommand,    RevokeDBSecurityGroupIngressCommand,    StartActivityStreamCommand,    StartDBClusterCommand,    StartDBInstanceCommand,    StartDBInstanceAutomatedBackupsReplicationCommand,    StartExportTaskCommand,    StopActivityStreamCommand,    StopDBClusterCommand,    StopDBInstanceCommand,    StopDBInstanceAutomatedBackupsReplicationCommand,    SwitchoverBlueGreenDeploymentCommand,    SwitchoverGlobalClusterCommand,    SwitchoverReadReplicaCommand,};const paginators = {    paginateDescribeBlueGreenDeployments,    paginateDescribeCertificates,    paginateDescribeDBClusterAutomatedBackups,    paginateDescribeDBClusterBacktracks,    paginateDescribeDBClusterEndpoints,    paginateDescribeDBClusterParameterGroups,    paginateDescribeDBClusterParameters,    paginateDescribeDBClusters,    paginateDescribeDBClusterSnapshots,    paginateDescribeDBEngineVersions,    paginateDescribeDBInstanceAutomatedBackups,    paginateDescribeDBInstances,    paginateDescribeDBLogFiles,    paginateDescribeDBMajorEngineVersions,    paginateDescribeDBParameterGroups,    paginateDescribeDBParameters,    paginateDescribeDBProxies,    paginateDescribeDBProxyEndpoints,    paginateDescribeDBProxyTargetGroups,    paginateDescribeDBProxyTargets,    paginateDescribeDBRecommendations,    paginateDescribeDBSecurityGroups,    paginateDescribeDBSnapshots,    paginateDescribeDBSnapshotTenantDatabases,    paginateDescribeDBSubnetGroups,    paginateDescribeEngineDefaultClusterParameters,    paginateDescribeEngineDefaultParameters,    paginateDescribeEvents,    paginateDescribeEventSubscriptions,    paginateDescribeExportTasks,    paginateDescribeGlobalClusters,    paginateDescribeIntegrations,    paginateDescribeOptionGroupOptions,    paginateDescribeOptionGroups,    paginateDescribeOrderableDBInstanceOptions,    paginateDescribePendingMaintenanceActions,    paginateDescribeReservedDBInstances,    paginateDescribeReservedDBInstancesOfferings,    paginateDescribeServerlessV2PlatformVersions,    paginateDescribeSourceRegions,    paginateDescribeTenantDatabases,    paginateDownloadDBLogFilePortion,};const waiters = {    waitUntilDBClusterAvailable,    waitUntilDBClusterDeleted,    waitUntilDBClusterSnapshotAvailable,    waitUntilDBClusterSnapshotDeleted,    waitUntilDBInstanceAvailable,    waitUntilDBInstanceDeleted,    waitUntilDBSnapshotAvailable,    waitUntilDBSnapshotDeleted,    waitUntilTenantDatabaseAvailable,    waitUntilTenantDatabaseDeleted,};class RDS extends RDSClient {}client.createAggregatedClient(commands, RDS, { paginators, waiters }); const ActivityStreamMode = {    async: "async",    sync: "sync",};const ActivityStreamPolicyStatus = {    locked: "locked",    locking_policy: "locking-policy",    unlocked: "unlocked",    unlocking_policy: "unlocking-policy",};const ActivityStreamStatus = {    started: "started",    starting: "starting",    stopped: "stopped",    stopping: "stopping",};const ExportSourceType = {    CLUSTER: "CLUSTER",    SNAPSHOT: "SNAPSHOT",};const StorageEncryptionType = {    CMK: "sse-kms",    SSE: "sse-rds",    UNENCRYPTED: "none",};const ClusterScalabilityType = {    LIMITLESS: "limitless",    STANDARD: "standard",};const DatabaseInsightsMode = {    ADVANCED: "advanced",    STANDARD: "standard",};const MasterUserAuthenticationType = {    IAM_DB_AUTH: "iam-db-auth",    PASSWORD: "password",};const ReplicaMode = {    MOUNTED: "mounted",    OPEN_READ_ONLY: "open-read-only",};const WriteForwardingStatus = {    DISABLED: "disabled",    DISABLING: "disabling",    ENABLED: "enabled",    ENABLING: "enabling",    UNKNOWN: "unknown",};const LimitlessDatabaseStatus = {    ACTIVE: "active",    DISABLED: "disabled",    DISABLING: "disabling",    ENABLED: "enabled",    ENABLING: "enabling",    ERROR: "error",    MODIFYING_MAX_CAPACITY: "modifying-max-capacity",    NOT_IN_USE: "not-in-use",};const LocalWriteForwardingStatus = {    DISABLED: "disabled",    DISABLING: "disabling",    ENABLED: "enabled",    ENABLING: "enabling",    REQUESTED: "requested",};const UpgradeRolloutOrder = {    FIRST: "first",    LAST: "last",    SECOND: "second",};const AutomationMode = {    ALL_PAUSED: "all-paused",    FULL: "full",};const AuthScheme = {    SECRETS: "SECRETS",};const ClientPasswordAuthType = {    MYSQL_CACHING_SHA2_PASSWORD: "MYSQL_CACHING_SHA2_PASSWORD",    MYSQL_NATIVE_PASSWORD: "MYSQL_NATIVE_PASSWORD",    POSTGRES_MD5: "POSTGRES_MD5",    POSTGRES_SCRAM_SHA_256: "POSTGRES_SCRAM_SHA_256",    SQL_SERVER_AUTHENTICATION: "SQL_SERVER_AUTHENTICATION",};const IAMAuthMode = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",    REQUIRED: "REQUIRED",};const DefaultAuthScheme = {    IAM_AUTH: "IAM_AUTH",    NONE: "NONE",};const EndpointNetworkType = {    DUAL: "DUAL",    IPV4: "IPV4",    IPV6: "IPV6",};const EngineFamily = {    MYSQL: "MYSQL",    POSTGRESQL: "POSTGRESQL",    SQLSERVER: "SQLSERVER",};const TargetConnectionNetworkType = {    IPV4: "IPV4",    IPV6: "IPV6",};const DBProxyStatus = {    AVAILABLE: "available",    CREATING: "creating",    DELETING: "deleting",    INCOMPATIBLE_NETWORK: "incompatible-network",    INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits",    MODIFYING: "modifying",    REACTIVATING: "reactivating",    SUSPENDED: "suspended",    SUSPENDING: "suspending",};const DBProxyEndpointTargetRole = {    READ_ONLY: "READ_ONLY",    READ_WRITE: "READ_WRITE",};const DBProxyEndpointStatus = {    AVAILABLE: "available",    CREATING: "creating",    DELETING: "deleting",    INCOMPATIBLE_NETWORK: "incompatible-network",    INSUFFICIENT_RESOURCE_LIMITS: "insufficient-resource-limits",    MODIFYING: "modifying",};const FailoverStatus = {    CANCELLING: "cancelling",    FAILING_OVER: "failing-over",    PENDING: "pending",};const GlobalClusterMemberSynchronizationStatus = {    CONNECTED: "connected",    PENDING_RESYNC: "pending-resync",};const IntegrationStatus = {    ACTIVE: "active",    CREATING: "creating",    DELETING: "deleting",    FAILED: "failed",    MODIFYING: "modifying",    NEEDS_ATTENTION: "needs_attention",    SYNCING: "syncing",};const ApplyMethod = {    immediate: "immediate",    pending_reboot: "pending-reboot",};const LifecycleSupportName = {    OPEN_SOURCE_RDS_EXTENDED_SUPPORT: "open-source-rds-extended-support",    OPEN_SOURCE_RDS_STANDARD_SUPPORT: "open-source-rds-standard-support",};const TargetRole = {    READ_ONLY: "READ_ONLY",    READ_WRITE: "READ_WRITE",    UNKNOWN: "UNKNOWN",};const TargetHealthReason = {    AUTH_FAILURE: "AUTH_FAILURE",    CONNECTION_FAILED: "CONNECTION_FAILED",    INVALID_REPLICATION_STATE: "INVALID_REPLICATION_STATE",    PENDING_PROXY_CAPACITY: "PENDING_PROXY_CAPACITY",    PROMOTED: "PROMOTED",    UNREACHABLE: "UNREACHABLE",};const TargetState = {    available: "AVAILABLE",    registering: "REGISTERING",    unavailable: "UNAVAILABLE",    unused: "UNUSED",};const TargetType = {    RDS_INSTANCE: "RDS_INSTANCE",    RDS_SERVERLESS_ENDPOINT: "RDS_SERVERLESS_ENDPOINT",    TRACKED_CLUSTER: "TRACKED_CLUSTER",};const SourceType = {    blue_green_deployment: "blue-green-deployment",    custom_engine_version: "custom-engine-version",    db_cluster: "db-cluster",    db_cluster_snapshot: "db-cluster-snapshot",    db_instance: "db-instance",    db_parameter_group: "db-parameter-group",    db_proxy: "db-proxy",    db_security_group: "db-security-group",    db_shard_group: "db-shard-group",    db_snapshot: "db-snapshot",    zero_etl: "zero-etl",};const AuditPolicyState = {    LOCKED_POLICY: "locked",    UNLOCKED_POLICY: "unlocked",};const CustomEngineVersionStatus = {    available: "available",    inactive: "inactive",    inactive_except_restore: "inactive-except-restore",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.RDSServiceException = RDSServiceException.RDSServiceException;exports.ActivityStreamMode = ActivityStreamMode;exports.ActivityStreamPolicyStatus = ActivityStreamPolicyStatus;exports.ActivityStreamStatus = ActivityStreamStatus;exports.AddRoleToDBClusterCommand = AddRoleToDBClusterCommand;exports.AddRoleToDBInstanceCommand = AddRoleToDBInstanceCommand;exports.AddSourceIdentifierToSubscriptionCommand = AddSourceIdentifierToSubscriptionCommand;exports.AddTagsToResourceCommand = AddTagsToResourceCommand;exports.ApplyMethod = ApplyMethod;exports.ApplyPendingMaintenanceActionCommand = ApplyPendingMaintenanceActionCommand;exports.AuditPolicyState = AuditPolicyState;exports.AuthScheme = AuthScheme;exports.AuthorizeDBSecurityGroupIngressCommand = AuthorizeDBSecurityGroupIngressCommand;exports.AutomationMode = AutomationMode;exports.BacktrackDBClusterCommand = BacktrackDBClusterCommand;exports.CancelExportTaskCommand = CancelExportTaskCommand;exports.ClientPasswordAuthType = ClientPasswordAuthType;exports.ClusterScalabilityType = ClusterScalabilityType;exports.CopyDBClusterParameterGroupCommand = CopyDBClusterParameterGroupCommand;exports.CopyDBClusterSnapshotCommand = CopyDBClusterSnapshotCommand;exports.CopyDBParameterGroupCommand = CopyDBParameterGroupCommand;exports.CopyDBSnapshotCommand = CopyDBSnapshotCommand;exports.CopyOptionGroupCommand = CopyOptionGroupCommand;exports.CreateBlueGreenDeploymentCommand = CreateBlueGreenDeploymentCommand;exports.CreateCustomDBEngineVersionCommand = CreateCustomDBEngineVersionCommand;exports.CreateDBClusterCommand = CreateDBClusterCommand;exports.CreateDBClusterEndpointCommand = CreateDBClusterEndpointCommand;exports.CreateDBClusterParameterGroupCommand = CreateDBClusterParameterGroupCommand;exports.CreateDBClusterSnapshotCommand = CreateDBClusterSnapshotCommand;exports.CreateDBInstanceCommand = CreateDBInstanceCommand;exports.CreateDBInstanceReadReplicaCommand = CreateDBInstanceReadReplicaCommand;exports.CreateDBParameterGroupCommand = CreateDBParameterGroupCommand;exports.CreateDBProxyCommand = CreateDBProxyCommand;exports.CreateDBProxyEndpointCommand = CreateDBProxyEndpointCommand;exports.CreateDBSecurityGroupCommand = CreateDBSecurityGroupCommand;exports.CreateDBShardGroupCommand = CreateDBShardGroupCommand;exports.CreateDBSnapshotCommand = CreateDBSnapshotCommand;exports.CreateDBSubnetGroupCommand = CreateDBSubnetGroupCommand;exports.CreateEventSubscriptionCommand = CreateEventSubscriptionCommand;exports.CreateGlobalClusterCommand = CreateGlobalClusterCommand;exports.CreateIntegrationCommand = CreateIntegrationCommand;exports.CreateOptionGroupCommand = CreateOptionGroupCommand;exports.CreateTenantDatabaseCommand = CreateTenantDatabaseCommand;exports.CustomEngineVersionStatus = CustomEngineVersionStatus;exports.DBProxyEndpointStatus = DBProxyEndpointStatus;exports.DBProxyEndpointTargetRole = DBProxyEndpointTargetRole;exports.DBProxyStatus = DBProxyStatus;exports.DatabaseInsightsMode = DatabaseInsightsMode;exports.DefaultAuthScheme = DefaultAuthScheme;exports.DeleteBlueGreenDeploymentCommand = DeleteBlueGreenDeploymentCommand;exports.DeleteCustomDBEngineVersionCommand = DeleteCustomDBEngineVersionCommand;exports.DeleteDBClusterAutomatedBackupCommand = DeleteDBClusterAutomatedBackupCommand;exports.DeleteDBClusterCommand = DeleteDBClusterCommand;exports.DeleteDBClusterEndpointCommand = DeleteDBClusterEndpointCommand;exports.DeleteDBClusterParameterGroupCommand = DeleteDBClusterParameterGroupCommand;exports.DeleteDBClusterSnapshotCommand = DeleteDBClusterSnapshotCommand;exports.DeleteDBInstanceAutomatedBackupCommand = DeleteDBInstanceAutomatedBackupCommand;exports.DeleteDBInstanceCommand = DeleteDBInstanceCommand;exports.DeleteDBParameterGroupCommand = DeleteDBParameterGroupCommand;exports.DeleteDBProxyCommand = DeleteDBProxyCommand;exports.DeleteDBProxyEndpointCommand = DeleteDBProxyEndpointCommand;exports.DeleteDBSecurityGroupCommand = DeleteDBSecurityGroupCommand;exports.DeleteDBShardGroupCommand = DeleteDBShardGroupCommand;exports.DeleteDBSnapshotCommand = DeleteDBSnapshotCommand;exports.DeleteDBSubnetGroupCommand = DeleteDBSubnetGroupCommand;exports.DeleteEventSubscriptionCommand = DeleteEventSubscriptionCommand;exports.DeleteGlobalClusterCommand = DeleteGlobalClusterCommand;exports.DeleteIntegrationCommand = DeleteIntegrationCommand;exports.DeleteOptionGroupCommand = DeleteOptionGroupCommand;exports.DeleteTenantDatabaseCommand = DeleteTenantDatabaseCommand;exports.DeregisterDBProxyTargetsCommand = DeregisterDBProxyTargetsCommand;exports.DescribeAccountAttributesCommand = DescribeAccountAttributesCommand;exports.DescribeBlueGreenDeploymentsCommand = DescribeBlueGreenDeploymentsCommand;exports.DescribeCertificatesCommand = DescribeCertificatesCommand;exports.DescribeDBClusterAutomatedBackupsCommand = DescribeDBClusterAutomatedBackupsCommand;exports.DescribeDBClusterBacktracksCommand = DescribeDBClusterBacktracksCommand;exports.DescribeDBClusterEndpointsCommand = DescribeDBClusterEndpointsCommand;exports.DescribeDBClusterParameterGroupsCommand = DescribeDBClusterParameterGroupsCommand;exports.DescribeDBClusterParametersCommand = DescribeDBClusterParametersCommand;exports.DescribeDBClusterSnapshotAttributesCommand = DescribeDBClusterSnapshotAttributesCommand;exports.DescribeDBClusterSnapshotsCommand = DescribeDBClusterSnapshotsCommand;exports.DescribeDBClustersCommand = DescribeDBClustersCommand;exports.DescribeDBEngineVersionsCommand = DescribeDBEngineVersionsCommand;exports.DescribeDBInstanceAutomatedBackupsCommand = DescribeDBInstanceAutomatedBackupsCommand;exports.DescribeDBInstancesCommand = DescribeDBInstancesCommand;exports.DescribeDBLogFilesCommand = DescribeDBLogFilesCommand;exports.DescribeDBMajorEngineVersionsCommand = DescribeDBMajorEngineVersionsCommand;exports.DescribeDBParameterGroupsCommand = DescribeDBParameterGroupsCommand;exports.DescribeDBParametersCommand = DescribeDBParametersCommand;exports.DescribeDBProxiesCommand = DescribeDBProxiesCommand;exports.DescribeDBProxyEndpointsCommand = DescribeDBProxyEndpointsCommand;exports.DescribeDBProxyTargetGroupsCommand = DescribeDBProxyTargetGroupsCommand;exports.DescribeDBProxyTargetsCommand = DescribeDBProxyTargetsCommand;exports.DescribeDBRecommendationsCommand = DescribeDBRecommendationsCommand;exports.DescribeDBSecurityGroupsCommand = DescribeDBSecurityGroupsCommand;exports.DescribeDBShardGroupsCommand = DescribeDBShardGroupsCommand;exports.DescribeDBSnapshotAttributesCommand = DescribeDBSnapshotAttributesCommand;exports.DescribeDBSnapshotTenantDatabasesCommand = DescribeDBSnapshotTenantDatabasesCommand;exports.DescribeDBSnapshotsCommand = DescribeDBSnapshotsCommand;exports.DescribeDBSubnetGroupsCommand = DescribeDBSubnetGroupsCommand;exports.DescribeEngineDefaultClusterParametersCommand = DescribeEngineDefaultClusterParametersCommand;exports.DescribeEngineDefaultParametersCommand = DescribeEngineDefaultParametersCommand;exports.DescribeEventCategoriesCommand = DescribeEventCategoriesCommand;exports.DescribeEventSubscriptionsCommand = DescribeEventSubscriptionsCommand;exports.DescribeEventsCommand = DescribeEventsCommand;exports.DescribeExportTasksCommand = DescribeExportTasksCommand;exports.DescribeGlobalClustersCommand = DescribeGlobalClustersCommand;exports.DescribeIntegrationsCommand = DescribeIntegrationsCommand;exports.DescribeOptionGroupOptionsCommand = DescribeOptionGroupOptionsCommand;exports.DescribeOptionGroupsCommand = DescribeOptionGroupsCommand;exports.DescribeOrderableDBInstanceOptionsCommand = DescribeOrderableDBInstanceOptionsCommand;exports.DescribePendingMaintenanceActionsCommand = DescribePendingMaintenanceActionsCommand;exports.DescribeReservedDBInstancesCommand = DescribeReservedDBInstancesCommand;exports.DescribeReservedDBInstancesOfferingsCommand = DescribeReservedDBInstancesOfferingsCommand;exports.DescribeServerlessV2PlatformVersionsCommand = DescribeServerlessV2PlatformVersionsCommand;exports.DescribeSourceRegionsCommand = DescribeSourceRegionsCommand;exports.DescribeTenantDatabasesCommand = DescribeTenantDatabasesCommand;exports.DescribeValidDBInstanceModificationsCommand = DescribeValidDBInstanceModificationsCommand;exports.DisableHttpEndpointCommand = DisableHttpEndpointCommand;exports.DownloadDBLogFilePortionCommand = DownloadDBLogFilePortionCommand;exports.EnableHttpEndpointCommand = EnableHttpEndpointCommand;exports.EndpointNetworkType = EndpointNetworkType;exports.EngineFamily = EngineFamily;exports.ExportSourceType = ExportSourceType;exports.FailoverDBClusterCommand = FailoverDBClusterCommand;exports.FailoverGlobalClusterCommand = FailoverGlobalClusterCommand;exports.FailoverStatus = FailoverStatus;exports.GlobalClusterMemberSynchronizationStatus = GlobalClusterMemberSynchronizationStatus;exports.IAMAuthMode = IAMAuthMode;exports.IntegrationStatus = IntegrationStatus;exports.LifecycleSupportName = LifecycleSupportName;exports.LimitlessDatabaseStatus = LimitlessDatabaseStatus;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.LocalWriteForwardingStatus = LocalWriteForwardingStatus;exports.MasterUserAuthenticationType = MasterUserAuthenticationType;exports.ModifyActivityStreamCommand = ModifyActivityStreamCommand;exports.ModifyCertificatesCommand = ModifyCertificatesCommand;exports.ModifyCurrentDBClusterCapacityCommand = ModifyCurrentDBClusterCapacityCommand;exports.ModifyCustomDBEngineVersionCommand = ModifyCustomDBEngineVersionCommand;exports.ModifyDBClusterCommand = ModifyDBClusterCommand;exports.ModifyDBClusterEndpointCommand = ModifyDBClusterEndpointCommand;exports.ModifyDBClusterParameterGroupCommand = ModifyDBClusterParameterGroupCommand;exports.ModifyDBClusterSnapshotAttributeCommand = ModifyDBClusterSnapshotAttributeCommand;exports.ModifyDBInstanceCommand = ModifyDBInstanceCommand;exports.ModifyDBParameterGroupCommand = ModifyDBParameterGroupCommand;exports.ModifyDBProxyCommand = ModifyDBProxyCommand;exports.ModifyDBProxyEndpointCommand = ModifyDBProxyEndpointCommand;exports.ModifyDBProxyTargetGroupCommand = ModifyDBProxyTargetGroupCommand;exports.ModifyDBRecommendationCommand = ModifyDBRecommendationCommand;exports.ModifyDBShardGroupCommand = ModifyDBShardGroupCommand;exports.ModifyDBSnapshotAttributeCommand = ModifyDBSnapshotAttributeCommand;exports.ModifyDBSnapshotCommand = ModifyDBSnapshotCommand;exports.ModifyDBSubnetGroupCommand = ModifyDBSubnetGroupCommand;exports.ModifyEventSubscriptionCommand = ModifyEventSubscriptionCommand;exports.ModifyGlobalClusterCommand = ModifyGlobalClusterCommand;exports.ModifyIntegrationCommand = ModifyIntegrationCommand;exports.ModifyOptionGroupCommand = ModifyOptionGroupCommand;exports.ModifyTenantDatabaseCommand = ModifyTenantDatabaseCommand;exports.PromoteReadReplicaCommand = PromoteReadReplicaCommand;exports.PromoteReadReplicaDBClusterCommand = PromoteReadReplicaDBClusterCommand;exports.PurchaseReservedDBInstancesOfferingCommand = PurchaseReservedDBInstancesOfferingCommand;exports.RDS = RDS;exports.RDSClient = RDSClient;exports.RebootDBClusterCommand = RebootDBClusterCommand;exports.RebootDBInstanceCommand = RebootDBInstanceCommand;exports.RebootDBShardGroupCommand = RebootDBShardGroupCommand;exports.RegisterDBProxyTargetsCommand = RegisterDBProxyTargetsCommand;exports.RemoveFromGlobalClusterCommand = RemoveFromGlobalClusterCommand;exports.RemoveRoleFromDBClusterCommand = RemoveRoleFromDBClusterCommand;exports.RemoveRoleFromDBInstanceCommand = RemoveRoleFromDBInstanceCommand;exports.RemoveSourceIdentifierFromSubscriptionCommand = RemoveSourceIdentifierFromSubscriptionCommand;exports.RemoveTagsFromResourceCommand = RemoveTagsFromResourceCommand;exports.ReplicaMode = ReplicaMode;exports.ResetDBClusterParameterGroupCommand = ResetDBClusterParameterGroupCommand;exports.ResetDBParameterGroupCommand = ResetDBParameterGroupCommand;exports.RestoreDBClusterFromS3Command = RestoreDBClusterFromS3Command;exports.RestoreDBClusterFromSnapshotCommand = RestoreDBClusterFromSnapshotCommand;exports.RestoreDBClusterToPointInTimeCommand = RestoreDBClusterToPointInTimeCommand;exports.RestoreDBInstanceFromDBSnapshotCommand = RestoreDBInstanceFromDBSnapshotCommand;exports.RestoreDBInstanceFromS3Command = RestoreDBInstanceFromS3Command;exports.RestoreDBInstanceToPointInTimeCommand = RestoreDBInstanceToPointInTimeCommand;exports.RevokeDBSecurityGroupIngressCommand = RevokeDBSecurityGroupIngressCommand;exports.SourceType = SourceType;exports.StartActivityStreamCommand = StartActivityStreamCommand;exports.StartDBClusterCommand = StartDBClusterCommand;exports.StartDBInstanceAutomatedBackupsReplicationCommand = StartDBInstanceAutomatedBackupsReplicationCommand;exports.StartDBInstanceCommand = StartDBInstanceCommand;exports.StartExportTaskCommand = StartExportTaskCommand;exports.StopActivityStreamCommand = StopActivityStreamCommand;exports.StopDBClusterCommand = StopDBClusterCommand;exports.StopDBInstanceAutomatedBackupsReplicationCommand = StopDBInstanceAutomatedBackupsReplicationCommand;exports.StopDBInstanceCommand = StopDBInstanceCommand;exports.StorageEncryptionType = StorageEncryptionType;exports.SwitchoverBlueGreenDeploymentCommand = SwitchoverBlueGreenDeploymentCommand;exports.SwitchoverGlobalClusterCommand = SwitchoverGlobalClusterCommand;exports.SwitchoverReadReplicaCommand = SwitchoverReadReplicaCommand;exports.TargetConnectionNetworkType = TargetConnectionNetworkType;exports.TargetHealthReason = TargetHealthReason;exports.TargetRole = TargetRole;exports.TargetState = TargetState;exports.TargetType = TargetType;exports.UpgradeRolloutOrder = UpgradeRolloutOrder;exports.WriteForwardingStatus = WriteForwardingStatus;exports.paginateDescribeBlueGreenDeployments = paginateDescribeBlueGreenDeployments;exports.paginateDescribeCertificates = paginateDescribeCertificates;exports.paginateDescribeDBClusterAutomatedBackups = paginateDescribeDBClusterAutomatedBackups;exports.paginateDescribeDBClusterBacktracks = paginateDescribeDBClusterBacktracks;exports.paginateDescribeDBClusterEndpoints = paginateDescribeDBClusterEndpoints;exports.paginateDescribeDBClusterParameterGroups = paginateDescribeDBClusterParameterGroups;exports.paginateDescribeDBClusterParameters = paginateDescribeDBClusterParameters;exports.paginateDescribeDBClusterSnapshots = paginateDescribeDBClusterSnapshots;exports.paginateDescribeDBClusters = paginateDescribeDBClusters;exports.paginateDescribeDBEngineVersions = paginateDescribeDBEngineVersions;exports.paginateDescribeDBInstanceAutomatedBackups = paginateDescribeDBInstanceAutomatedBackups;exports.paginateDescribeDBInstances = paginateDescribeDBInstances;exports.paginateDescribeDBLogFiles = paginateDescribeDBLogFiles;exports.paginateDescribeDBMajorEngineVersions = paginateDescribeDBMajorEngineVersions;exports.paginateDescribeDBParameterGroups = paginateDescribeDBParameterGroups;exports.paginateDescribeDBParameters = paginateDescribeDBParameters;exports.paginateDescribeDBProxies = paginateDescribeDBProxies;exports.paginateDescribeDBProxyEndpoints = paginateDescribeDBProxyEndpoints;exports.paginateDescribeDBProxyTargetGroups = paginateDescribeDBProxyTargetGroups;exports.paginateDescribeDBProxyTargets = paginateDescribeDBProxyTargets;exports.paginateDescribeDBRecommendations = paginateDescribeDBRecommendations;exports.paginateDescribeDBSecurityGroups = paginateDescribeDBSecurityGroups;exports.paginateDescribeDBSnapshotTenantDatabases = paginateDescribeDBSnapshotTenantDatabases;exports.paginateDescribeDBSnapshots = paginateDescribeDBSnapshots;exports.paginateDescribeDBSubnetGroups = paginateDescribeDBSubnetGroups;exports.paginateDescribeEngineDefaultClusterParameters = paginateDescribeEngineDefaultClusterParameters;exports.paginateDescribeEngineDefaultParameters = paginateDescribeEngineDefaultParameters;exports.paginateDescribeEventSubscriptions = paginateDescribeEventSubscriptions;exports.paginateDescribeEvents = paginateDescribeEvents;exports.paginateDescribeExportTasks = paginateDescribeExportTasks;exports.paginateDescribeGlobalClusters = paginateDescribeGlobalClusters;exports.paginateDescribeIntegrations = paginateDescribeIntegrations;exports.paginateDescribeOptionGroupOptions = paginateDescribeOptionGroupOptions;exports.paginateDescribeOptionGroups = paginateDescribeOptionGroups;exports.paginateDescribeOrderableDBInstanceOptions = paginateDescribeOrderableDBInstanceOptions;exports.paginateDescribePendingMaintenanceActions = paginateDescribePendingMaintenanceActions;exports.paginateDescribeReservedDBInstances = paginateDescribeReservedDBInstances;exports.paginateDescribeReservedDBInstancesOfferings = paginateDescribeReservedDBInstancesOfferings;exports.paginateDescribeServerlessV2PlatformVersions = paginateDescribeServerlessV2PlatformVersions;exports.paginateDescribeSourceRegions = paginateDescribeSourceRegions;exports.paginateDescribeTenantDatabases = paginateDescribeTenantDatabases;exports.paginateDownloadDBLogFilePortion = paginateDownloadDBLogFilePortion;exports.waitForDBClusterAvailable = waitForDBClusterAvailable;exports.waitForDBClusterDeleted = waitForDBClusterDeleted;exports.waitForDBClusterSnapshotAvailable = waitForDBClusterSnapshotAvailable;exports.waitForDBClusterSnapshotDeleted = waitForDBClusterSnapshotDeleted;exports.waitForDBInstanceAvailable = waitForDBInstanceAvailable;exports.waitForDBInstanceDeleted = waitForDBInstanceDeleted;exports.waitForDBSnapshotAvailable = waitForDBSnapshotAvailable;exports.waitForDBSnapshotDeleted = waitForDBSnapshotDeleted;exports.waitForTenantDatabaseAvailable = waitForTenantDatabaseAvailable;exports.waitForTenantDatabaseDeleted = waitForTenantDatabaseDeleted;exports.waitUntilDBClusterAvailable = waitUntilDBClusterAvailable;exports.waitUntilDBClusterDeleted = waitUntilDBClusterDeleted;exports.waitUntilDBClusterSnapshotAvailable = waitUntilDBClusterSnapshotAvailable;exports.waitUntilDBClusterSnapshotDeleted = waitUntilDBClusterSnapshotDeleted;exports.waitUntilDBInstanceAvailable = waitUntilDBInstanceAvailable;exports.waitUntilDBInstanceDeleted = waitUntilDBInstanceDeleted;exports.waitUntilDBSnapshotAvailable = waitUntilDBSnapshotAvailable;exports.waitUntilDBSnapshotDeleted = waitUntilDBSnapshotDeleted;exports.waitUntilTenantDatabaseAvailable = waitUntilTenantDatabaseAvailable;exports.waitUntilTenantDatabaseDeleted = waitUntilTenantDatabaseDeleted;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});