@aws-sdk/client-rds 3.41.0 → 3.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/dist-cjs/RDS.js +15 -0
- package/dist-cjs/commands/RebootDBClusterCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_1.js +14 -2
- package/dist-cjs/protocols/Aws_query.js +248 -4
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/RDS.js +15 -0
- package/dist-es/commands/RebootDBClusterCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_1.js +8 -0
- package/dist-es/protocols/Aws_query.js +250 -0
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/RDS.d.ts +199 -118
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/AddRoleToDBClusterCommand.d.ts +1 -6
- package/dist-types/commands/AuthorizeDBSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/commands/CopyDBClusterParameterGroupCommand.d.ts +0 -3
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +11 -7
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +5 -9
- package/dist-types/commands/CreateDBClusterCommand.d.ts +11 -8
- package/dist-types/commands/CreateDBClusterEndpointCommand.d.ts +3 -3
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +11 -5
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +8 -4
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +6 -3
- package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +6 -2
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +6 -2
- package/dist-types/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +6 -2
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +6 -2
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +0 -3
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +7 -3
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +9 -4
- package/dist-types/commands/DescribeEngineDefaultClusterParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeGlobalClustersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +1 -1
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +16 -8
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +11 -7
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +9 -5
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +0 -3
- package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +1 -1
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/RebootDBClusterCommand.d.ts +52 -0
- package/dist-types/commands/RemoveFromGlobalClusterCommand.d.ts +1 -1
- package/dist-types/commands/RemoveRoleFromDBClusterCommand.d.ts +11 -4
- package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +7 -4
- package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +1 -1
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +8 -5
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +8 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +546 -196
- package/dist-types/models/models_1.d.ts +690 -151
- package/dist-types/protocols/Aws_query.d.ts +3 -0
- package/dist-types/ts3.4/RDS.d.ts +5 -0
- package/dist-types/ts3.4/RDSClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/RebootDBClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +50 -0
- package/dist-types/ts3.4/models/models_1.d.ts +58 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
- package/package.json +38 -45
|
@@ -121,6 +121,7 @@ import { ModifyOptionGroupCommandInput, ModifyOptionGroupCommandOutput } from ".
|
|
|
121
121
|
import { PromoteReadReplicaCommandInput, PromoteReadReplicaCommandOutput } from "./commands/PromoteReadReplicaCommand";
|
|
122
122
|
import { PromoteReadReplicaDBClusterCommandInput, PromoteReadReplicaDBClusterCommandOutput } from "./commands/PromoteReadReplicaDBClusterCommand";
|
|
123
123
|
import { PurchaseReservedDBInstancesOfferingCommandInput, PurchaseReservedDBInstancesOfferingCommandOutput } from "./commands/PurchaseReservedDBInstancesOfferingCommand";
|
|
124
|
+
import { RebootDBClusterCommandInput, RebootDBClusterCommandOutput } from "./commands/RebootDBClusterCommand";
|
|
124
125
|
import { RebootDBInstanceCommandInput, RebootDBInstanceCommandOutput } from "./commands/RebootDBInstanceCommand";
|
|
125
126
|
import { RegisterDBProxyTargetsCommandInput, RegisterDBProxyTargetsCommandOutput } from "./commands/RegisterDBProxyTargetsCommand";
|
|
126
127
|
import { RemoveFromGlobalClusterCommandInput, RemoveFromGlobalClusterCommandOutput } from "./commands/RemoveFromGlobalClusterCommand";
|
|
@@ -146,8 +147,8 @@ import { StopActivityStreamCommandInput, StopActivityStreamCommandOutput } from
|
|
|
146
147
|
import { StopDBClusterCommandInput, StopDBClusterCommandOutput } from "./commands/StopDBClusterCommand";
|
|
147
148
|
import { StopDBInstanceAutomatedBackupsReplicationCommandInput, StopDBInstanceAutomatedBackupsReplicationCommandOutput } from "./commands/StopDBInstanceAutomatedBackupsReplicationCommand";
|
|
148
149
|
import { StopDBInstanceCommandInput, StopDBInstanceCommandOutput } from "./commands/StopDBInstanceCommand";
|
|
149
|
-
export declare type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateCustomAvailabilityZoneCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteCustomAvailabilityZoneCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteInstallationMediaCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeCertificatesCommandInput | DescribeCustomAvailabilityZonesCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeInstallationMediaCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ImportInstallationMediaCommandInput | ListTagsForResourceCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput;
|
|
150
|
-
export declare type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateCustomAvailabilityZoneCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteCustomAvailabilityZoneCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteInstallationMediaCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeCertificatesCommandOutput | DescribeCustomAvailabilityZonesCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeInstallationMediaCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ImportInstallationMediaCommandOutput | ListTagsForResourceCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput;
|
|
150
|
+
export declare type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateCustomAvailabilityZoneCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteCustomAvailabilityZoneCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteInstallationMediaCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeCertificatesCommandInput | DescribeCustomAvailabilityZonesCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeInstallationMediaCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ImportInstallationMediaCommandInput | ListTagsForResourceCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput;
|
|
151
|
+
export declare type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateCustomAvailabilityZoneCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteCustomAvailabilityZoneCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteInstallationMediaCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeCertificatesCommandOutput | DescribeCustomAvailabilityZonesCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeInstallationMediaCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ImportInstallationMediaCommandOutput | ListTagsForResourceCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput;
|
|
151
152
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
152
153
|
/**
|
|
153
154
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -7,12 +7,7 @@ export interface AddRoleToDBClusterCommandInput extends AddRoleToDBClusterMessag
|
|
|
7
7
|
export interface AddRoleToDBClusterCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Associates an Identity and Access Management (IAM) role
|
|
11
|
-
* For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html">Authorizing Amazon Aurora MySQL
|
|
12
|
-
* to Access Other Amazon Web Services Services on Your Behalf</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
13
|
-
* <note>
|
|
14
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
15
|
-
* </note>
|
|
10
|
+
* <p>Associates an Identity and Access Management (IAM) role with a DB cluster.</p>
|
|
16
11
|
* @example
|
|
17
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
18
13
|
* ```javascript
|
|
@@ -9,7 +9,7 @@ export interface AuthorizeDBSecurityGroupIngressCommandOutput extends AuthorizeD
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security
|
|
11
11
|
* groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC
|
|
12
|
-
* instances. Second, IP ranges are available if the application accessing your database is running on the
|
|
12
|
+
* instances. Second, IP ranges are available if the application accessing your database is running on the internet.
|
|
13
13
|
* Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId
|
|
14
14
|
* and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).</p>
|
|
15
15
|
* <note>
|
|
@@ -8,9 +8,6 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Copies the specified DB cluster parameter group.</p>
|
|
11
|
-
* <note>
|
|
12
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
13
|
-
* </note>
|
|
14
11
|
* @example
|
|
15
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
13
|
* ```javascript
|
|
@@ -70,17 +70,21 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho
|
|
|
70
70
|
* </ul>
|
|
71
71
|
* <p>To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified
|
|
72
72
|
* by <code>TargetDBClusterSnapshotIdentifier</code> while that DB cluster snapshot is in "copying" status.</p>
|
|
73
|
-
* <p>For more information on copying encrypted DB cluster snapshots from one Amazon Web Services Region to another, see
|
|
73
|
+
* <p>For more information on copying encrypted Amazon Aurora DB cluster snapshots from one Amazon Web Services Region to another, see
|
|
74
74
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html">
|
|
75
75
|
* Copying a Snapshot</a> in the <i>Amazon Aurora User Guide.</i>
|
|
76
76
|
* </p>
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
77
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
78
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
79
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
80
80
|
* </p>
|
|
81
|
-
*
|
|
82
|
-
* <
|
|
83
|
-
*
|
|
81
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
82
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
83
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
84
|
+
* </p>
|
|
85
|
+
* <note>
|
|
86
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
87
|
+
* </note>
|
|
84
88
|
* @example
|
|
85
89
|
* Use a bare-bones client and the command you need to make an API call.
|
|
86
90
|
* ```javascript
|
|
@@ -7,22 +7,18 @@ export interface CreateCustomDBEngineVersionCommandInput extends CreateCustomDBE
|
|
|
7
7
|
export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersion, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a custom DB engine version (CEV). A CEV is a binary volume snapshot of a database engine and
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest">
|
|
14
|
-
* Amazon RDS Custom requirements and limitations</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
10
|
+
* <p>Creates a custom DB engine version (CEV). A CEV is a binary volume snapshot of a database engine and specific
|
|
11
|
+
* AMI. The only supported engine is Oracle Database 19c Enterprise Edition with the January 2021 or later
|
|
12
|
+
* RU/RUR.</p>
|
|
15
13
|
* <p>Amazon RDS, which is a fully managed service, supplies the Amazon Machine Image (AMI) and database software.
|
|
16
14
|
* The Amazon RDS database software is preinstalled, so you need only select a DB engine and version, and create
|
|
17
|
-
* your database. With Amazon RDS Custom, you upload your database installation files in Amazon S3
|
|
18
|
-
* more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.html#custom-cev.preparing">
|
|
19
|
-
* Preparing to create a CEV</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
15
|
+
* your database. With Amazon RDS Custom for Oracle, you upload your database installation files in Amazon S3.</p>
|
|
20
16
|
* <p>When you create a custom engine version, you specify the files in a JSON document called a CEV manifest.
|
|
21
17
|
* This document describes installation .zip files stored in Amazon S3. RDS Custom creates your CEV from
|
|
22
18
|
* the installation files that you provided. This service model is called Bring Your Own Media (BYOM).</p>
|
|
23
19
|
* <p>Creation takes approximately two hours. If creation fails, RDS Custom issues <code>RDS-EVENT-0196</code> with
|
|
24
20
|
* the message <code>Creation failed for custom engine version</code>, and includes details about the failure.
|
|
25
|
-
* For example, the event prints missing files
|
|
21
|
+
* For example, the event prints missing files.</p>
|
|
26
22
|
* <p>After you create the CEV, it is available for use. You can create multiple CEVs, and create multiple
|
|
27
23
|
* RDS Custom instances from any CEV. You can also change the status of a CEV to make it available or
|
|
28
24
|
* inactive.</p>
|
|
@@ -7,19 +7,22 @@ export interface CreateDBClusterCommandInput extends CreateDBClusterMessage {
|
|
|
7
7
|
export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a new Amazon Aurora DB cluster.</p>
|
|
11
|
-
* <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create
|
|
12
|
-
* cluster as a read replica of another DB cluster or Amazon RDS MySQL or
|
|
13
|
-
* cross-
|
|
14
|
-
* <code>ReplicationSourceIdentifier</code> is encrypted,
|
|
10
|
+
* <p>Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.</p>
|
|
11
|
+
* <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create an Amazon
|
|
12
|
+
* Aurora DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or
|
|
13
|
+
* PostgreSQL DB instance. For cross-Region replication where the DB cluster identified by
|
|
14
|
+
* <code>ReplicationSourceIdentifier</code> is encrypted, also specify the
|
|
15
15
|
* <code>PreSignedUrl</code> parameter.</p>
|
|
16
|
-
*
|
|
17
16
|
* <p>For more information on Amazon Aurora, see
|
|
18
17
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
19
|
-
* What
|
|
18
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
19
|
+
* </p>
|
|
20
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
21
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
22
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
20
23
|
* </p>
|
|
21
24
|
* <note>
|
|
22
|
-
* <p>
|
|
25
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
23
26
|
* </note>
|
|
24
27
|
* @example
|
|
25
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -8,9 +8,9 @@ export interface CreateDBClusterEndpointCommandOutput extends DBClusterEndpoint,
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.</p>
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>This action only applies to Aurora DB clusters.</p>
|
|
13
|
+
* </note>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -14,11 +14,14 @@ export interface CreateDBClusterParameterGroupCommandOutput extends CreateDBClus
|
|
|
14
14
|
* database engine used by instances in the DB cluster. To provide custom values for any of the
|
|
15
15
|
* parameters, you must modify the group after creating it using
|
|
16
16
|
* <code>ModifyDBClusterParameterGroup</code>. Once you've created a DB cluster parameter group, you need to
|
|
17
|
-
* associate it with your DB cluster using <code>ModifyDBCluster</code
|
|
18
|
-
*
|
|
17
|
+
* associate it with your DB cluster using <code>ModifyDBCluster</code>.</p>
|
|
18
|
+
* <p>When you associate a new DB cluster parameter group with a running Aurora DB cluster, reboot the DB
|
|
19
19
|
* instances in the DB cluster without failover for the new DB cluster parameter group and
|
|
20
20
|
* associated settings to take effect.
|
|
21
21
|
* </p>
|
|
22
|
+
* <p>When you associate a new DB cluster parameter group with a running Multi-AZ DB cluster, reboot the DB
|
|
23
|
+
* cluster without failover for the new DB cluster parameter group and associated settings to take effect.
|
|
24
|
+
* </p>
|
|
22
25
|
* <important>
|
|
23
26
|
* <p>After you create a DB cluster parameter group, you should wait at least 5 minutes
|
|
24
27
|
* before creating your first DB cluster
|
|
@@ -31,13 +34,16 @@ export interface CreateDBClusterParameterGroupCommandOutput extends CreateDBClus
|
|
|
31
34
|
* <code>DescribeDBClusterParameters</code> action to verify
|
|
32
35
|
* that your DB cluster parameter group has been created or modified.</p>
|
|
33
36
|
* </important>
|
|
34
|
-
*
|
|
35
37
|
* <p>For more information on Amazon Aurora, see
|
|
36
38
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
37
|
-
* What
|
|
39
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
40
|
+
* </p>
|
|
41
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
42
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
43
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
38
44
|
* </p>
|
|
39
45
|
* <note>
|
|
40
|
-
* <p>
|
|
46
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
41
47
|
* </note>
|
|
42
48
|
* @example
|
|
43
49
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,12 +7,16 @@ export interface CreateDBClusterSnapshotCommandInput extends CreateDBClusterSnap
|
|
|
7
7
|
export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSnapshotResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a snapshot of a DB cluster
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
* <p>Creates a snapshot of a DB cluster.</p>
|
|
11
|
+
* <p>For more information on Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html"> What is Amazon
|
|
12
|
+
* Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
13
|
+
* </p>
|
|
14
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
15
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
16
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
13
17
|
* </p>
|
|
14
18
|
* <note>
|
|
15
|
-
* <p>
|
|
19
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
16
20
|
* </note>
|
|
17
21
|
* @example
|
|
18
22
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -10,13 +10,16 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
|
|
|
10
10
|
* <p>The DeleteDBCluster action deletes a previously provisioned DB cluster.
|
|
11
11
|
* When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered.
|
|
12
12
|
* Manual DB cluster snapshots of the specified DB cluster are not deleted.</p>
|
|
13
|
-
* <p></p>
|
|
14
13
|
* <p>For more information on Amazon Aurora, see
|
|
15
14
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
16
|
-
* What
|
|
15
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
16
|
+
* </p>
|
|
17
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
18
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
19
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
17
20
|
* </p>
|
|
18
21
|
* <note>
|
|
19
|
-
* <p>
|
|
22
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
20
23
|
* </note>
|
|
21
24
|
* @example
|
|
22
25
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -10,10 +10,14 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe
|
|
|
10
10
|
* <p>Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.</p>
|
|
11
11
|
* <p>For more information on Amazon Aurora, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
|
+
* </p>
|
|
15
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
16
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
14
18
|
* </p>
|
|
15
19
|
* <note>
|
|
16
|
-
* <p>
|
|
20
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
17
21
|
* </note>
|
|
18
22
|
* @example
|
|
19
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -14,10 +14,14 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna
|
|
|
14
14
|
* </note>
|
|
15
15
|
* <p>For more information on Amazon Aurora, see
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
17
|
-
* What
|
|
17
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
18
|
+
* </p>
|
|
19
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
20
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
21
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
22
|
* </p>
|
|
19
23
|
* <note>
|
|
20
|
-
* <p>
|
|
24
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
25
|
* </note>
|
|
22
26
|
* @example
|
|
23
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -10,7 +10,7 @@ export interface DescribeDBClusterBacktracksCommandOutput extends DBClusterBackt
|
|
|
10
10
|
* <p>Returns information about backtracks for a DB cluster.</p>
|
|
11
11
|
* <p>For more information on Amazon Aurora, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
14
|
* </p>
|
|
15
15
|
* <note>
|
|
16
16
|
* <p>This action only applies to Aurora MySQL DB clusters.</p>
|
|
@@ -14,10 +14,14 @@ export interface DescribeDBClusterParameterGroupsCommandOutput extends DBCluster
|
|
|
14
14
|
* </p>
|
|
15
15
|
* <p>For more information on Amazon Aurora, see
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
17
|
-
* What
|
|
17
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
18
|
+
* </p>
|
|
19
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
20
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
21
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
22
|
* </p>
|
|
19
23
|
* <note>
|
|
20
|
-
* <p>
|
|
24
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
25
|
* </note>
|
|
22
26
|
* @example
|
|
23
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -10,10 +10,14 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam
|
|
|
10
10
|
* <p>Returns the detailed parameter list for a particular DB cluster parameter group.</p>
|
|
11
11
|
* <p>For more information on Amazon Aurora, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
|
+
* </p>
|
|
15
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
16
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
14
18
|
* </p>
|
|
15
19
|
* <note>
|
|
16
|
-
* <p>
|
|
20
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
17
21
|
* </note>
|
|
18
22
|
* @example
|
|
19
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -15,9 +15,6 @@ export interface DescribeDBClusterSnapshotAttributesCommandOutput extends Descri
|
|
|
15
15
|
* can be copied or restored by all Amazon Web Services accounts.</p>
|
|
16
16
|
* <p>To add or remove access for an Amazon Web Services account to copy or restore a manual DB cluster snapshot, or to make the
|
|
17
17
|
* manual DB cluster snapshot public or private, use the <code>ModifyDBClusterSnapshotAttribute</code> API action.</p>
|
|
18
|
-
* <note>
|
|
19
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
20
|
-
* </note>
|
|
21
18
|
* @example
|
|
22
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
20
|
* ```javascript
|
|
@@ -8,12 +8,16 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Returns information about DB cluster snapshots. This API action supports pagination.</p>
|
|
11
|
-
* <p>For more information on Amazon Aurora, see
|
|
11
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
|
+
* </p>
|
|
15
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
16
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
14
18
|
* </p>
|
|
15
19
|
* <note>
|
|
16
|
-
* <p>
|
|
20
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
17
21
|
* </note>
|
|
18
22
|
* @example
|
|
19
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,14 +7,19 @@ export interface DescribeDBClustersCommandInput extends DescribeDBClustersMessag
|
|
|
7
7
|
export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Returns information about
|
|
11
|
-
* <p>For more information on Amazon Aurora, see
|
|
10
|
+
* <p>Returns information about Amazon Aurora DB clusters and Multi-AZ DB clusters. This API supports pagination.</p>
|
|
11
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
|
+
* </p>
|
|
15
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
16
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
14
18
|
* </p>
|
|
15
19
|
* <note>
|
|
16
|
-
* <p>
|
|
20
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
17
21
|
* </note>
|
|
22
|
+
* <p>This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
25
|
* ```javascript
|
|
@@ -10,7 +10,7 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput extends Des
|
|
|
10
10
|
* <p>Returns the default engine and system parameter information for the cluster database engine.</p>
|
|
11
11
|
* <p>For more information on Amazon Aurora, see
|
|
12
12
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
13
|
-
* What
|
|
13
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
14
14
|
* </p>
|
|
15
15
|
* @example
|
|
16
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -11,7 +11,7 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa
|
|
|
11
11
|
* Returns information about Aurora global database clusters. This API supports pagination.
|
|
12
12
|
* </p>
|
|
13
13
|
* <p>
|
|
14
|
-
* For more information on Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html"> What
|
|
14
|
+
* For more information on Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html"> What is Amazon Aurora?</a> in the
|
|
15
15
|
* <i>Amazon Aurora User Guide.</i>
|
|
16
16
|
* </p>
|
|
17
17
|
* <note>
|
|
@@ -7,7 +7,7 @@ export interface DescribeOrderableDBInstanceOptionsCommandInput extends Describe
|
|
|
7
7
|
export interface DescribeOrderableDBInstanceOptionsCommandOutput extends OrderableDBInstanceOptionsMessage, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Returns a list of orderable DB instance options for the specified engine.</p>
|
|
10
|
+
* <p>Returns a list of orderable DB instance options for the specified DB engine, DB engine version, and DB instance class.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -8,18 +8,26 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Forces a failover for a DB cluster.</p>
|
|
11
|
-
* <p>
|
|
12
|
-
* in the DB cluster to be the primary instance (the cluster writer).</p>
|
|
13
|
-
* <p>
|
|
14
|
-
*
|
|
15
|
-
*
|
|
11
|
+
* <p>For an Aurora DB cluster, failover for a DB cluster promotes one of the Aurora Replicas (read-only instances)
|
|
12
|
+
* in the DB cluster to be the primary DB instance (the cluster writer).</p>
|
|
13
|
+
* <p>For a Multi-AZ DB cluster, failover for a DB cluster promotes one of the readable standby DB instances (read-only instances)
|
|
14
|
+
* in the DB cluster to be the primary DB instance (the cluster writer).</p>
|
|
15
|
+
* <p>An Amazon Aurora DB cluster automatically fails over to an Aurora Replica, if one exists,
|
|
16
|
+
* when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readbable standby
|
|
17
|
+
* DB instance when the primary DB instance fails.</p>
|
|
18
|
+
* <p>To simulate a failure of a primary instance for testing, you can force a failover.
|
|
19
|
+
* Because each instance in a DB cluster has its own endpoint address, make sure to clean up and re-establish any existing
|
|
16
20
|
* connections that use those endpoint addresses when the failover is complete.</p>
|
|
17
|
-
* <p>For more information on Amazon Aurora, see
|
|
21
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
18
22
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
19
|
-
* What
|
|
23
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
24
|
+
* </p>
|
|
25
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
26
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
27
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
20
28
|
* </p>
|
|
21
29
|
* <note>
|
|
22
|
-
* <p>
|
|
30
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
23
31
|
* </note>
|
|
24
32
|
* @example
|
|
25
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -17,7 +17,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
17
17
|
* API gateway that accesses your Amazon S3 bucket. These calls originate from the MediaImport service for
|
|
18
18
|
* the <code>ModifyCustomDbEngineVersion</code> event.</p>
|
|
19
19
|
* </note>
|
|
20
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.
|
|
20
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify">Modifying CEV status</a>
|
|
21
21
|
* in the <i>Amazon RDS User Guide</i>.</p>
|
|
22
22
|
* @example
|
|
23
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,15 +7,19 @@ export interface ModifyDBClusterCommandInput extends ModifyDBClusterMessage {
|
|
|
7
7
|
export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Modify
|
|
11
|
-
* You can change one
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* What
|
|
10
|
+
* <p>Modify the settings for an Amazon Aurora DB cluster or a Multi-AZ DB cluster.
|
|
11
|
+
* You can change one or more settings by specifying these parameters and the new values in the
|
|
12
|
+
* request.</p>
|
|
13
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
14
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
15
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
16
|
+
* </p>
|
|
17
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
18
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
19
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
16
20
|
* </p>
|
|
17
21
|
* <note>
|
|
18
|
-
* <p>
|
|
22
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
19
23
|
* </note>
|
|
20
24
|
* @example
|
|
21
25
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -13,10 +13,6 @@ export interface ModifyDBClusterParameterGroupCommandOutput extends DBClusterPar
|
|
|
13
13
|
* and <code>ApplyMethod</code>. A maximum of 20
|
|
14
14
|
* parameters can be modified in a single request.
|
|
15
15
|
* </p>
|
|
16
|
-
* <p>For more information on Amazon Aurora, see
|
|
17
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
18
|
-
* What Is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
19
|
-
* </p>
|
|
20
16
|
* <important>
|
|
21
17
|
* <p>After you create a DB cluster parameter group, you should wait at least 5 minutes
|
|
22
18
|
* before creating your first DB cluster that uses that DB cluster parameter group as the default parameter
|
|
@@ -32,8 +28,16 @@ export interface ModifyDBClusterParameterGroupCommandOutput extends DBClusterPar
|
|
|
32
28
|
* your application must reopen any connections and retry any transactions that were active
|
|
33
29
|
* when the parameter changes took effect.</p>
|
|
34
30
|
* </important>
|
|
31
|
+
* <p>For more information on Amazon Aurora DB clusters, see
|
|
32
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
33
|
+
* What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide.</i>
|
|
34
|
+
* </p>
|
|
35
|
+
* <p>For more information on Multi-AZ DB clusters, see
|
|
36
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
37
|
+
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
38
|
+
* </p>
|
|
35
39
|
* <note>
|
|
36
|
-
* <p>
|
|
40
|
+
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
37
41
|
* </note>
|
|
38
42
|
* @example
|
|
39
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -26,9 +26,6 @@ export interface ModifyDBClusterSnapshotAttributeCommandOutput extends ModifyDBC
|
|
|
26
26
|
* <p>To view which Amazon Web Services accounts have access to copy or restore a manual DB cluster
|
|
27
27
|
* snapshot, or whether a manual DB cluster snapshot is public or private, use the <a>DescribeDBClusterSnapshotAttributes</a> API action. The accounts are
|
|
28
28
|
* returned as values for the <code>restore</code> attribute.</p>
|
|
29
|
-
* <note>
|
|
30
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
31
|
-
* </note>
|
|
32
29
|
* @example
|
|
33
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
31
|
* ```javascript
|