@aws-sdk/client-docdb 3.278.0 → 3.281.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/README.md +427 -0
- package/dist-types/commands/AddSourceIdentifierToSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +6 -0
- package/dist-types/commands/ApplyPendingMaintenanceActionCommand.d.ts +6 -0
- package/dist-types/commands/CopyDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +6 -0
- package/dist-types/commands/CreateDBSubnetGroupCommand.d.ts +6 -0
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDBSubnetGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteEventSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteGlobalClusterCommand.d.ts +6 -0
- package/dist-types/commands/DescribeCertificatesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDBSubnetGroupsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEngineDefaultClusterParametersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEventSubscriptionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeGlobalClustersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribePendingMaintenanceActionsCommand.d.ts +6 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBSubnetGroupCommand.d.ts +6 -0
- package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +6 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +6 -0
- package/dist-types/commands/RemoveFromGlobalClusterCommand.d.ts +6 -0
- package/dist-types/commands/RemoveSourceIdentifierFromSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
- package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +6 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +6 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDBClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDBClusterCommandInput extends DeleteDBClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDBClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteDBClusterParameterGroupMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDBClusterParameterGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDBClusterParameterGroupCommandInput extends DeleteDBClusterParameterGroupMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDBClusterParameterGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDBClusterSnapshotCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDBClusterSnapshotCommandInput extends DeleteDBClusterSnapshotMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDBClusterSnapshotCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSnapshotResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDBInstanceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDBInstanceCommandInput extends DeleteDBInstanceMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDBInstanceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteDBSubnetGroupMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDBSubnetGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDBSubnetGroupCommandInput extends DeleteDBSubnetGroupMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDBSubnetGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDBSubnetGroupCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteEventSubscriptionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteEventSubscriptionCommandInput extends DeleteEventSubscriptionMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteEventSubscriptionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscriptionResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteGlobalClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteGlobalClusterCommandInput extends DeleteGlobalClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteGlobalClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeCertificatesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeCertificatesCommandInput extends DescribeCertificatesMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeCertificatesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeCertificatesCommandOutput extends CertificateMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBClusterParameterGroupsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBClusterParameterGroupsCommandInput extends DescribeDBClusterParameterGroupsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBClusterParameterGroupsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBClusterParameterGroupsCommandOutput extends DBClusterParameterGroupsMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBClusterParametersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBClusterParametersCommandInput extends DescribeDBClusterParametersMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBClusterParametersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBClusterParametersCommandOutput extends DBClusterParameterGroupDetails, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBClusterSnapshotAttributesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBClusterSnapshotAttributesCommandInput extends DescribeDBClusterSnapshotAttributesMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBClusterSnapshotAttributesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBClusterSnapshotAttributesCommandOutput extends DescribeDBClusterSnapshotAttributesResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBClusterSnapshotsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBClusterSnapshotsCommandInput extends DescribeDBClusterSnapshotsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBClusterSnapshotsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapshotMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBClustersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBClustersCommandInput extends DescribeDBClustersMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBClustersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBEngineVersionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBEngineVersionsCommandInput extends DescribeDBEngineVersionsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBEngineVersionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBInstancesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBInstancesCommandInput extends DescribeDBInstancesMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBInstancesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDBSubnetGroupsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDBSubnetGroupsCommandInput extends DescribeDBSubnetGroupsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDBSubnetGroupsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDBSubnetGroupsCommandOutput extends DBSubnetGroupMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeEngineDefaultClusterParametersMessage, DescribeEngineDefaultClusterParametersResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEngineDefaultClusterParametersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEngineDefaultClusterParametersCommandInput extends DescribeEngineDefaultClusterParametersMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEngineDefaultClusterParametersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEngineDefaultClusterParametersCommandOutput extends DescribeEngineDefaultClusterParametersResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEventCategoriesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEventCategoriesCommandInput extends DescribeEventCategoriesMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEventCategoriesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEventSubscriptionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEventSubscriptionsCommandInput extends DescribeEventSubscriptionsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEventSubscriptionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEventSubscriptionsCommandOutput extends EventSubscriptionsMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeEventsMessage, EventsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEventsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEventsCommandInput extends DescribeEventsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEventsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeGlobalClustersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeGlobalClustersCommandInput extends DescribeGlobalClustersMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeGlobalClustersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeOrderableDBInstanceOptionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeOrderableDBInstanceOptionsCommandInput extends DescribeOrderableDBInstanceOptionsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeOrderableDBInstanceOptionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeOrderableDBInstanceOptionsCommandOutput extends OrderableDBInstanceOptionsMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribePendingMaintenanceActionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribePendingMaintenanceActionsCommandInput extends DescribePendingMaintenanceActionsMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribePendingMaintenanceActionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribePendingMaintenanceActionsCommandOutput extends PendingMaintenanceActionsMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link FailoverDBClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface FailoverDBClusterCommandInput extends FailoverDBClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link FailoverDBClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ListTagsForResourceMessage, TagListMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends TagListMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyDBClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyDBClusterCommandInput extends ModifyDBClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyDBClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyDBClusterParameterGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyDBClusterParameterGroupCommandInput extends ModifyDBClusterParameterGroupMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyDBClusterParameterGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyDBClusterParameterGroupCommandOutput extends DBClusterParameterGroupNameMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyDBClusterSnapshotAttributeMessage, ModifyDBClusterSnapshotAttributeResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyDBClusterSnapshotAttributeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyDBClusterSnapshotAttributeCommandInput extends ModifyDBClusterSnapshotAttributeMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyDBClusterSnapshotAttributeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyDBClusterSnapshotAttributeCommandOutput extends ModifyDBClusterSnapshotAttributeResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyDBInstanceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyDBInstanceCommandInput extends ModifyDBInstanceMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyDBInstanceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyDBSubnetGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyDBSubnetGroupCommandInput extends ModifyDBSubnetGroupMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyDBSubnetGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyEventSubscriptionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyEventSubscriptionCommandInput extends ModifyEventSubscriptionMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyEventSubscriptionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscriptionResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ModifyGlobalClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ModifyGlobalClusterCommandInput extends ModifyGlobalClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ModifyGlobalClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RebootDBInstanceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RebootDBInstanceCommandInput extends RebootDBInstanceMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RebootDBInstanceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RemoveFromGlobalClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RemoveFromGlobalClusterCommandInput extends RemoveFromGlobalClusterMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RemoveFromGlobalClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalClusterResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RemoveSourceIdentifierFromSubscriptionMessage, RemoveSourceIdentifierFromSubscriptionResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RemoveSourceIdentifierFromSubscriptionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RemoveSourceIdentifierFromSubscriptionCommandInput extends RemoveSourceIdentifierFromSubscriptionMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RemoveSourceIdentifierFromSubscriptionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RemoveSourceIdentifierFromSubscriptionCommandOutput extends RemoveSourceIdentifierFromSubscriptionResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RemoveTagsFromResourceMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RemoveTagsFromResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RemoveTagsFromResourceCommandInput extends RemoveTagsFromResourceMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RemoveTagsFromResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ResetDBClusterParameterGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ResetDBClusterParameterGroupCommandInput extends ResetDBClusterParameterGroupMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ResetDBClusterParameterGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterParameterGroupNameMessage, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RestoreDBClusterFromSnapshotCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RestoreDBClusterFromSnapshotCommandInput extends RestoreDBClusterFromSnapshotMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RestoreDBClusterFromSnapshotCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClusterFromSnapshotResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
|
|
5
5
|
import { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RestoreDBClusterToPointInTimeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RestoreDBClusterToPointInTimeCommandInput extends RestoreDBClusterToPointInTimeMessage {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RestoreDBClusterToPointInTimeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClusterToPointInTimeResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|