@aws-sdk/client-docdb 3.299.0 → 3.301.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/dist-types/commands/AddSourceIdentifierToSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +9 -0
- package/dist-types/commands/ApplyPendingMaintenanceActionCommand.d.ts +5 -0
- package/dist-types/commands/CopyDBClusterParameterGroupCommand.d.ts +11 -0
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +13 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +33 -0
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +11 -0
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +19 -0
- package/dist-types/commands/CreateDBSubnetGroupCommand.d.ts +13 -0
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +18 -0
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +9 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDBSubnetGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEventSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteGlobalClusterCommand.d.ts +3 -0
- package/dist-types/commands/DescribeCertificatesCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +14 -0
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +18 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDBSubnetGroupsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeEngineDefaultClusterParametersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +11 -0
- package/dist-types/commands/DescribeEventSubscriptionsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +20 -0
- package/dist-types/commands/DescribeGlobalClustersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +17 -0
- package/dist-types/commands/DescribePendingMaintenanceActionsCommand.d.ts +13 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +24 -0
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +17 -0
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +10 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +13 -0
- package/dist-types/commands/ModifyDBSubnetGroupCommand.d.ts +7 -0
- package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +9 -0
- package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +5 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +4 -0
- package/dist-types/commands/RemoveFromGlobalClusterCommand.d.ts +4 -0
- package/dist-types/commands/RemoveSourceIdentifierFromSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
- package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +18 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +25 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +23 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +3 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +3 -0
- package/package.json +8 -8
|
@@ -27,6 +27,10 @@ export interface AddSourceIdentifierToSubscriptionCommandOutput extends AddSourc
|
|
|
27
27
|
* import { DocDBClient, AddSourceIdentifierToSubscriptionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, AddSourceIdentifierToSubscriptionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // AddSourceIdentifierToSubscriptionMessage
|
|
31
|
+
* SubscriptionName: "STRING_VALUE", // required
|
|
32
|
+
* SourceIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new AddSourceIdentifierToSubscriptionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -29,6 +29,15 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { DocDBClient, AddTagsToResourceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, AddTagsToResourceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // AddTagsToResourceMessage
|
|
33
|
+
* ResourceName: "STRING_VALUE", // required
|
|
34
|
+
* Tags: [ // TagList // required
|
|
35
|
+
* { // Tag
|
|
36
|
+
* Key: "STRING_VALUE",
|
|
37
|
+
* Value: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
32
41
|
* const command = new AddTagsToResourceCommand(input);
|
|
33
42
|
* const response = await client.send(command);
|
|
34
43
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ApplyPendingMaintenanceActionCommandOutput extends ApplyPending
|
|
|
27
27
|
* import { DocDBClient, ApplyPendingMaintenanceActionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, ApplyPendingMaintenanceActionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // ApplyPendingMaintenanceActionMessage
|
|
31
|
+
* ResourceIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* ApplyAction: "STRING_VALUE", // required
|
|
33
|
+
* OptInType: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ApplyPendingMaintenanceActionCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP
|
|
|
26
26
|
* import { DocDBClient, CopyDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, CopyDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // CopyDBClusterParameterGroupMessage
|
|
30
|
+
* SourceDBClusterParameterGroupIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* TargetDBClusterParameterGroupIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* TargetDBClusterParameterGroupDescription: "STRING_VALUE", // required
|
|
33
|
+
* Tags: [ // TagList
|
|
34
|
+
* { // Tag
|
|
35
|
+
* Key: "STRING_VALUE",
|
|
36
|
+
* Value: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new CopyDBClusterParameterGroupCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -37,6 +37,19 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho
|
|
|
37
37
|
* import { DocDBClient, CopyDBClusterSnapshotCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
38
38
|
* // const { DocDBClient, CopyDBClusterSnapshotCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
39
39
|
* const client = new DocDBClient(config);
|
|
40
|
+
* const input = { // CopyDBClusterSnapshotMessage
|
|
41
|
+
* SourceDBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
42
|
+
* TargetDBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* KmsKeyId: "STRING_VALUE",
|
|
44
|
+
* PreSignedUrl: "STRING_VALUE",
|
|
45
|
+
* CopyTags: true || false,
|
|
46
|
+
* Tags: [ // TagList
|
|
47
|
+
* { // Tag
|
|
48
|
+
* Key: "STRING_VALUE",
|
|
49
|
+
* Value: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* };
|
|
40
53
|
* const command = new CopyDBClusterSnapshotCommand(input);
|
|
41
54
|
* const response = await client.send(command);
|
|
42
55
|
* ```
|
|
@@ -26,6 +26,39 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
|
|
|
26
26
|
* import { DocDBClient, CreateDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, CreateDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // CreateDBClusterMessage
|
|
30
|
+
* AvailabilityZones: [ // AvailabilityZones
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* BackupRetentionPeriod: Number("int"),
|
|
34
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* DBClusterParameterGroupName: "STRING_VALUE",
|
|
36
|
+
* VpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* DBSubnetGroupName: "STRING_VALUE",
|
|
40
|
+
* Engine: "STRING_VALUE", // required
|
|
41
|
+
* EngineVersion: "STRING_VALUE",
|
|
42
|
+
* Port: Number("int"),
|
|
43
|
+
* MasterUsername: "STRING_VALUE",
|
|
44
|
+
* MasterUserPassword: "STRING_VALUE",
|
|
45
|
+
* PreferredBackupWindow: "STRING_VALUE",
|
|
46
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
47
|
+
* Tags: [ // TagList
|
|
48
|
+
* { // Tag
|
|
49
|
+
* Key: "STRING_VALUE",
|
|
50
|
+
* Value: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* StorageEncrypted: true || false,
|
|
54
|
+
* KmsKeyId: "STRING_VALUE",
|
|
55
|
+
* PreSignedUrl: "STRING_VALUE",
|
|
56
|
+
* EnableCloudwatchLogsExports: [ // LogTypeList
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* DeletionProtection: true || false,
|
|
60
|
+
* GlobalClusterIdentifier: "STRING_VALUE",
|
|
61
|
+
* };
|
|
29
62
|
* const command = new CreateDBClusterCommand(input);
|
|
30
63
|
* const response = await client.send(command);
|
|
31
64
|
* ```
|
|
@@ -44,6 +44,17 @@ export interface CreateDBClusterParameterGroupCommandOutput extends CreateDBClus
|
|
|
44
44
|
* import { DocDBClient, CreateDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
45
45
|
* // const { DocDBClient, CreateDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
46
46
|
* const client = new DocDBClient(config);
|
|
47
|
+
* const input = { // CreateDBClusterParameterGroupMessage
|
|
48
|
+
* DBClusterParameterGroupName: "STRING_VALUE", // required
|
|
49
|
+
* DBParameterGroupFamily: "STRING_VALUE", // required
|
|
50
|
+
* Description: "STRING_VALUE", // required
|
|
51
|
+
* Tags: [ // TagList
|
|
52
|
+
* { // Tag
|
|
53
|
+
* Key: "STRING_VALUE",
|
|
54
|
+
* Value: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* ],
|
|
57
|
+
* };
|
|
47
58
|
* const command = new CreateDBClusterParameterGroupCommand(input);
|
|
48
59
|
* const response = await client.send(command);
|
|
49
60
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSna
|
|
|
26
26
|
* import { DocDBClient, CreateDBClusterSnapshotCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, CreateDBClusterSnapshotCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // CreateDBClusterSnapshotMessage
|
|
30
|
+
* DBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* Tags: [ // TagList
|
|
33
|
+
* { // Tag
|
|
34
|
+
* Key: "STRING_VALUE",
|
|
35
|
+
* Value: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
29
39
|
* const command = new CreateDBClusterSnapshotCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,25 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
|
|
|
26
26
|
* import { DocDBClient, CreateDBInstanceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, CreateDBInstanceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // CreateDBInstanceMessage
|
|
30
|
+
* DBInstanceIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* DBInstanceClass: "STRING_VALUE", // required
|
|
32
|
+
* Engine: "STRING_VALUE", // required
|
|
33
|
+
* AvailabilityZone: "STRING_VALUE",
|
|
34
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
35
|
+
* AutoMinorVersionUpgrade: true || false,
|
|
36
|
+
* Tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
|
+
* Key: "STRING_VALUE",
|
|
39
|
+
* Value: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* CopyTagsToSnapshot: true || false,
|
|
44
|
+
* PromotionTier: Number("int"),
|
|
45
|
+
* EnablePerformanceInsights: true || false,
|
|
46
|
+
* PerformanceInsightsKMSKeyId: "STRING_VALUE",
|
|
47
|
+
* };
|
|
29
48
|
* const command = new CreateDBInstanceCommand(input);
|
|
30
49
|
* const response = await client.send(command);
|
|
31
50
|
* ```
|
|
@@ -27,6 +27,19 @@ export interface CreateDBSubnetGroupCommandOutput extends CreateDBSubnetGroupRes
|
|
|
27
27
|
* import { DocDBClient, CreateDBSubnetGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, CreateDBSubnetGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // CreateDBSubnetGroupMessage
|
|
31
|
+
* DBSubnetGroupName: "STRING_VALUE", // required
|
|
32
|
+
* DBSubnetGroupDescription: "STRING_VALUE", // required
|
|
33
|
+
* SubnetIds: [ // SubnetIdentifierList // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* Tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
|
+
* Key: "STRING_VALUE",
|
|
39
|
+
* Value: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
30
43
|
* const command = new CreateDBSubnetGroupCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -28,6 +28,24 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri
|
|
|
28
28
|
* import { DocDBClient, CreateEventSubscriptionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
29
29
|
* // const { DocDBClient, CreateEventSubscriptionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
30
30
|
* const client = new DocDBClient(config);
|
|
31
|
+
* const input = { // CreateEventSubscriptionMessage
|
|
32
|
+
* SubscriptionName: "STRING_VALUE", // required
|
|
33
|
+
* SnsTopicArn: "STRING_VALUE", // required
|
|
34
|
+
* SourceType: "STRING_VALUE",
|
|
35
|
+
* EventCategories: [ // EventCategoriesList
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* SourceIds: [ // SourceIdsList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* Enabled: true || false,
|
|
42
|
+
* Tags: [ // TagList
|
|
43
|
+
* { // Tag
|
|
44
|
+
* Key: "STRING_VALUE",
|
|
45
|
+
* Value: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
31
49
|
* const command = new CreateEventSubscriptionCommand(input);
|
|
32
50
|
* const response = await client.send(command);
|
|
33
51
|
* ```
|
|
@@ -31,6 +31,15 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes
|
|
|
31
31
|
* import { DocDBClient, CreateGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
32
32
|
* // const { DocDBClient, CreateGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
33
33
|
* const client = new DocDBClient(config);
|
|
34
|
+
* const input = { // CreateGlobalClusterMessage
|
|
35
|
+
* GlobalClusterIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* SourceDBClusterIdentifier: "STRING_VALUE",
|
|
37
|
+
* Engine: "STRING_VALUE",
|
|
38
|
+
* EngineVersion: "STRING_VALUE",
|
|
39
|
+
* DeletionProtection: true || false,
|
|
40
|
+
* DatabaseName: "STRING_VALUE",
|
|
41
|
+
* StorageEncrypted: true || false,
|
|
42
|
+
* };
|
|
34
43
|
* const command = new CreateGlobalClusterCommand(input);
|
|
35
44
|
* const response = await client.send(command);
|
|
36
45
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
|
|
|
27
27
|
* import { DocDBClient, DeleteDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DeleteDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DeleteDBClusterMessage
|
|
31
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* SkipFinalSnapshot: true || false,
|
|
33
|
+
* FinalDBSnapshotIdentifier: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new DeleteDBClusterCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe
|
|
|
26
26
|
* import { DocDBClient, DeleteDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DeleteDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DeleteDBClusterParameterGroupMessage
|
|
30
|
+
* DBClusterParameterGroupName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteDBClusterParameterGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna
|
|
|
29
29
|
* import { DocDBClient, DeleteDBClusterSnapshotCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, DeleteDBClusterSnapshotCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // DeleteDBClusterSnapshotMessage
|
|
33
|
+
* DBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteDBClusterSnapshotCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
|
|
|
26
26
|
* import { DocDBClient, DeleteDBInstanceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DeleteDBInstanceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DeleteDBInstanceMessage
|
|
30
|
+
* DBInstanceIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteDBInstanceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface DeleteDBSubnetGroupCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* import { DocDBClient, DeleteDBSubnetGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
31
31
|
* // const { DocDBClient, DeleteDBSubnetGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
32
32
|
* const client = new DocDBClient(config);
|
|
33
|
+
* const input = { // DeleteDBSubnetGroupMessage
|
|
34
|
+
* DBSubnetGroupName: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new DeleteDBSubnetGroupCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteEventSubscriptionCommandOutput extends DeleteEventSubscri
|
|
|
26
26
|
* import { DocDBClient, DeleteEventSubscriptionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DeleteEventSubscriptionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DeleteEventSubscriptionMessage
|
|
30
|
+
* SubscriptionName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteEventSubscriptionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteGlobalClusterCommandOutput extends DeleteGlobalClusterRes
|
|
|
29
29
|
* import { DocDBClient, DeleteGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, DeleteGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // DeleteGlobalClusterMessage
|
|
33
|
+
* GlobalClusterIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteGlobalClusterCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _
|
|
|
26
26
|
* import { DocDBClient, DescribeCertificatesCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeCertificatesCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeCertificatesMessage
|
|
30
|
+
* CertificateIdentifier: "STRING_VALUE",
|
|
31
|
+
* Filters: [ // FilterList
|
|
32
|
+
* { // Filter
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Values: [ // FilterValueList // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* MaxRecords: Number("int"),
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* };
|
|
29
42
|
* const command = new DescribeCertificatesCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface DescribeDBClusterParameterGroupsCommandOutput extends DBCluster
|
|
|
26
26
|
* import { DocDBClient, DescribeDBClusterParameterGroupsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeDBClusterParameterGroupsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeDBClusterParameterGroupsMessage
|
|
30
|
+
* DBClusterParameterGroupName: "STRING_VALUE",
|
|
31
|
+
* Filters: [ // FilterList
|
|
32
|
+
* { // Filter
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Values: [ // FilterValueList // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* MaxRecords: Number("int"),
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* };
|
|
29
42
|
* const command = new DescribeDBClusterParameterGroupsCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -27,6 +27,20 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam
|
|
|
27
27
|
* import { DocDBClient, DescribeDBClusterParametersCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribeDBClusterParametersCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribeDBClusterParametersMessage
|
|
31
|
+
* DBClusterParameterGroupName: "STRING_VALUE", // required
|
|
32
|
+
* Source: "STRING_VALUE",
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Values: [ // FilterValueList // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* MaxRecords: Number("int"),
|
|
42
|
+
* Marker: "STRING_VALUE",
|
|
43
|
+
* };
|
|
30
44
|
* const command = new DescribeDBClusterParametersCommand(input);
|
|
31
45
|
* const response = await client.send(command);
|
|
32
46
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DescribeDBClusterSnapshotAttributesCommandOutput extends Descri
|
|
|
29
29
|
* import { DocDBClient, DescribeDBClusterSnapshotAttributesCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, DescribeDBClusterSnapshotAttributesCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // DescribeDBClusterSnapshotAttributesMessage
|
|
33
|
+
* DBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DescribeDBClusterSnapshotAttributesCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh
|
|
|
26
26
|
* import { DocDBClient, DescribeDBClusterSnapshotsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeDBClusterSnapshotsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeDBClusterSnapshotsMessage
|
|
30
|
+
* DBClusterIdentifier: "STRING_VALUE",
|
|
31
|
+
* DBClusterSnapshotIdentifier: "STRING_VALUE",
|
|
32
|
+
* SnapshotType: "STRING_VALUE",
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Values: [ // FilterValueList // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* MaxRecords: Number("int"),
|
|
42
|
+
* Marker: "STRING_VALUE",
|
|
43
|
+
* IncludeShared: true || false,
|
|
44
|
+
* IncludePublic: true || false,
|
|
45
|
+
* };
|
|
29
46
|
* const command = new DescribeDBClusterSnapshotsCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -31,6 +31,19 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
|
|
|
31
31
|
* import { DocDBClient, DescribeDBClustersCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
32
32
|
* // const { DocDBClient, DescribeDBClustersCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
33
33
|
* const client = new DocDBClient(config);
|
|
34
|
+
* const input = { // DescribeDBClustersMessage
|
|
35
|
+
* DBClusterIdentifier: "STRING_VALUE",
|
|
36
|
+
* Filters: [ // FilterList
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* Values: [ // FilterValueList // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* MaxRecords: Number("int"),
|
|
45
|
+
* Marker: "STRING_VALUE",
|
|
46
|
+
* };
|
|
34
47
|
* const command = new DescribeDBClustersCommand(input);
|
|
35
48
|
* const response = await client.send(command);
|
|
36
49
|
* ```
|
|
@@ -26,6 +26,24 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
|
|
|
26
26
|
* import { DocDBClient, DescribeDBEngineVersionsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeDBEngineVersionsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeDBEngineVersionsMessage
|
|
30
|
+
* Engine: "STRING_VALUE",
|
|
31
|
+
* EngineVersion: "STRING_VALUE",
|
|
32
|
+
* DBParameterGroupFamily: "STRING_VALUE",
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Values: [ // FilterValueList // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* MaxRecords: Number("int"),
|
|
42
|
+
* Marker: "STRING_VALUE",
|
|
43
|
+
* DefaultOnly: true || false,
|
|
44
|
+
* ListSupportedCharacterSets: true || false,
|
|
45
|
+
* ListSupportedTimezones: true || false,
|
|
46
|
+
* };
|
|
29
47
|
* const command = new DescribeDBEngineVersionsCommand(input);
|
|
30
48
|
* const response = await client.send(command);
|
|
31
49
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M
|
|
|
26
26
|
* import { DocDBClient, DescribeDBInstancesCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeDBInstancesCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeDBInstancesMessage
|
|
30
|
+
* DBInstanceIdentifier: "STRING_VALUE",
|
|
31
|
+
* Filters: [ // FilterList
|
|
32
|
+
* { // Filter
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Values: [ // FilterValueList // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* MaxRecords: Number("int"),
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* };
|
|
29
42
|
* const command = new DescribeDBInstancesCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -27,6 +27,19 @@ export interface DescribeDBSubnetGroupsCommandOutput extends DBSubnetGroupMessag
|
|
|
27
27
|
* import { DocDBClient, DescribeDBSubnetGroupsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribeDBSubnetGroupsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribeDBSubnetGroupsMessage
|
|
31
|
+
* DBSubnetGroupName: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Values: [ // FilterValueList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* MaxRecords: Number("int"),
|
|
41
|
+
* Marker: "STRING_VALUE",
|
|
42
|
+
* };
|
|
30
43
|
* const command = new DescribeDBSubnetGroupsCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -27,6 +27,19 @@ export interface DescribeEngineDefaultClusterParametersCommandOutput extends Des
|
|
|
27
27
|
* import { DocDBClient, DescribeEngineDefaultClusterParametersCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribeEngineDefaultClusterParametersCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribeEngineDefaultClusterParametersMessage
|
|
31
|
+
* DBParameterGroupFamily: "STRING_VALUE", // required
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Values: [ // FilterValueList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* MaxRecords: Number("int"),
|
|
41
|
+
* Marker: "STRING_VALUE",
|
|
42
|
+
* };
|
|
30
43
|
* const command = new DescribeEngineDefaultClusterParametersCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface DescribeEventCategoriesCommandOutput extends EventCategoriesMes
|
|
|
27
27
|
* import { DocDBClient, DescribeEventCategoriesCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribeEventCategoriesCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribeEventCategoriesMessage
|
|
31
|
+
* SourceType: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Values: [ // FilterValueList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
30
41
|
* const command = new DescribeEventCategoriesCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -27,6 +27,19 @@ export interface DescribeEventSubscriptionsCommandOutput extends EventSubscripti
|
|
|
27
27
|
* import { DocDBClient, DescribeEventSubscriptionsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribeEventSubscriptionsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribeEventSubscriptionsMessage
|
|
31
|
+
* SubscriptionName: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Values: [ // FilterValueList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* MaxRecords: Number("int"),
|
|
41
|
+
* Marker: "STRING_VALUE",
|
|
42
|
+
* };
|
|
30
43
|
* const command = new DescribeEventSubscriptionsCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -26,6 +26,26 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe
|
|
|
26
26
|
* import { DocDBClient, DescribeEventsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeEventsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeEventsMessage
|
|
30
|
+
* SourceIdentifier: "STRING_VALUE",
|
|
31
|
+
* SourceType: "STRING_VALUE",
|
|
32
|
+
* StartTime: new Date("TIMESTAMP"),
|
|
33
|
+
* EndTime: new Date("TIMESTAMP"),
|
|
34
|
+
* Duration: Number("int"),
|
|
35
|
+
* EventCategories: [ // EventCategoriesList
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* Filters: [ // FilterList
|
|
39
|
+
* { // Filter
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Values: [ // FilterValueList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* MaxRecords: Number("int"),
|
|
47
|
+
* Marker: "STRING_VALUE",
|
|
48
|
+
* };
|
|
29
49
|
* const command = new DescribeEventsCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -29,6 +29,19 @@ export interface DescribeGlobalClustersCommandOutput extends GlobalClustersMessa
|
|
|
29
29
|
* import { DocDBClient, DescribeGlobalClustersCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, DescribeGlobalClustersCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // DescribeGlobalClustersMessage
|
|
33
|
+
* GlobalClusterIdentifier: "STRING_VALUE",
|
|
34
|
+
* Filters: [ // FilterList
|
|
35
|
+
* { // Filter
|
|
36
|
+
* Name: "STRING_VALUE", // required
|
|
37
|
+
* Values: [ // FilterValueList // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* MaxRecords: Number("int"),
|
|
43
|
+
* Marker: "STRING_VALUE",
|
|
44
|
+
* };
|
|
32
45
|
* const command = new DescribeGlobalClustersCommand(input);
|
|
33
46
|
* const response = await client.send(command);
|
|
34
47
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface DescribeOrderableDBInstanceOptionsCommandOutput extends Orderab
|
|
|
26
26
|
* import { DocDBClient, DescribeOrderableDBInstanceOptionsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, DescribeOrderableDBInstanceOptionsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // DescribeOrderableDBInstanceOptionsMessage
|
|
30
|
+
* Engine: "STRING_VALUE", // required
|
|
31
|
+
* EngineVersion: "STRING_VALUE",
|
|
32
|
+
* DBInstanceClass: "STRING_VALUE",
|
|
33
|
+
* LicenseModel: "STRING_VALUE",
|
|
34
|
+
* Vpc: true || false,
|
|
35
|
+
* Filters: [ // FilterList
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Name: "STRING_VALUE", // required
|
|
38
|
+
* Values: [ // FilterValueList // required
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* MaxRecords: Number("int"),
|
|
44
|
+
* Marker: "STRING_VALUE",
|
|
45
|
+
* };
|
|
29
46
|
* const command = new DescribeOrderableDBInstanceOptionsCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -27,6 +27,19 @@ export interface DescribePendingMaintenanceActionsCommandOutput extends PendingM
|
|
|
27
27
|
* import { DocDBClient, DescribePendingMaintenanceActionsCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, DescribePendingMaintenanceActionsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // DescribePendingMaintenanceActionsMessage
|
|
31
|
+
* ResourceIdentifier: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Values: [ // FilterValueList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* MaxRecords: Number("int"),
|
|
42
|
+
* };
|
|
30
43
|
* const command = new DescribePendingMaintenanceActionsCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
|
|
|
28
28
|
* import { DocDBClient, FailoverDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
29
29
|
* // const { DocDBClient, FailoverDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
30
30
|
* const client = new DocDBClient(config);
|
|
31
|
+
* const input = { // FailoverDBClusterMessage
|
|
32
|
+
* DBClusterIdentifier: "STRING_VALUE",
|
|
33
|
+
* TargetDBInstanceIdentifier: "STRING_VALUE",
|
|
34
|
+
* };
|
|
31
35
|
* const command = new FailoverDBClusterCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta
|
|
|
26
26
|
* import { DocDBClient, ListTagsForResourceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, ListTagsForResourceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceMessage
|
|
30
|
+
* ResourceName: "STRING_VALUE", // required
|
|
31
|
+
* Filters: [ // FilterList
|
|
32
|
+
* { // Filter
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Values: [ // FilterValueList // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -28,6 +28,30 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
|
|
|
28
28
|
* import { DocDBClient, ModifyDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
29
29
|
* // const { DocDBClient, ModifyDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
30
30
|
* const client = new DocDBClient(config);
|
|
31
|
+
* const input = { // ModifyDBClusterMessage
|
|
32
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* NewDBClusterIdentifier: "STRING_VALUE",
|
|
34
|
+
* ApplyImmediately: true || false,
|
|
35
|
+
* BackupRetentionPeriod: Number("int"),
|
|
36
|
+
* DBClusterParameterGroupName: "STRING_VALUE",
|
|
37
|
+
* VpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* Port: Number("int"),
|
|
41
|
+
* MasterUserPassword: "STRING_VALUE",
|
|
42
|
+
* PreferredBackupWindow: "STRING_VALUE",
|
|
43
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
44
|
+
* CloudwatchLogsExportConfiguration: { // CloudwatchLogsExportConfiguration
|
|
45
|
+
* EnableLogTypes: [ // LogTypeList
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* DisableLogTypes: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* EngineVersion: "STRING_VALUE",
|
|
53
|
+
* DeletionProtection: true || false,
|
|
54
|
+
* };
|
|
31
55
|
* const command = new ModifyDBClusterCommand(input);
|
|
32
56
|
* const response = await client.send(command);
|
|
33
57
|
* ```
|
|
@@ -44,6 +44,23 @@ export interface ModifyDBClusterParameterGroupCommandOutput extends DBClusterPar
|
|
|
44
44
|
* import { DocDBClient, ModifyDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
45
45
|
* // const { DocDBClient, ModifyDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
46
46
|
* const client = new DocDBClient(config);
|
|
47
|
+
* const input = { // ModifyDBClusterParameterGroupMessage
|
|
48
|
+
* DBClusterParameterGroupName: "STRING_VALUE", // required
|
|
49
|
+
* Parameters: [ // ParametersList // required
|
|
50
|
+
* { // Parameter
|
|
51
|
+
* ParameterName: "STRING_VALUE",
|
|
52
|
+
* ParameterValue: "STRING_VALUE",
|
|
53
|
+
* Description: "STRING_VALUE",
|
|
54
|
+
* Source: "STRING_VALUE",
|
|
55
|
+
* ApplyType: "STRING_VALUE",
|
|
56
|
+
* DataType: "STRING_VALUE",
|
|
57
|
+
* AllowedValues: "STRING_VALUE",
|
|
58
|
+
* IsModifiable: true || false,
|
|
59
|
+
* MinimumEngineVersion: "STRING_VALUE",
|
|
60
|
+
* ApplyMethod: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* };
|
|
47
64
|
* const command = new ModifyDBClusterParameterGroupCommand(input);
|
|
48
65
|
* const response = await client.send(command);
|
|
49
66
|
* ```
|
|
@@ -27,6 +27,16 @@ export interface ModifyDBClusterSnapshotAttributeCommandOutput extends ModifyDBC
|
|
|
27
27
|
* import { DocDBClient, ModifyDBClusterSnapshotAttributeCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, ModifyDBClusterSnapshotAttributeCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // ModifyDBClusterSnapshotAttributeMessage
|
|
31
|
+
* DBClusterSnapshotIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* AttributeName: "STRING_VALUE", // required
|
|
33
|
+
* ValuesToAdd: [ // AttributeValueList
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* ValuesToRemove: [
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
30
40
|
* const command = new ModifyDBClusterSnapshotAttributeCommand(input);
|
|
31
41
|
* const response = await client.send(command);
|
|
32
42
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
|
|
|
26
26
|
* import { DocDBClient, ModifyDBInstanceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, ModifyDBInstanceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // ModifyDBInstanceMessage
|
|
30
|
+
* DBInstanceIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* DBInstanceClass: "STRING_VALUE",
|
|
32
|
+
* ApplyImmediately: true || false,
|
|
33
|
+
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
34
|
+
* AutoMinorVersionUpgrade: true || false,
|
|
35
|
+
* NewDBInstanceIdentifier: "STRING_VALUE",
|
|
36
|
+
* CACertificateIdentifier: "STRING_VALUE",
|
|
37
|
+
* CopyTagsToSnapshot: true || false,
|
|
38
|
+
* PromotionTier: Number("int"),
|
|
39
|
+
* EnablePerformanceInsights: true || false,
|
|
40
|
+
* PerformanceInsightsKMSKeyId: "STRING_VALUE",
|
|
41
|
+
* };
|
|
29
42
|
* const command = new ModifyDBInstanceCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface ModifyDBSubnetGroupCommandOutput extends ModifyDBSubnetGroupRes
|
|
|
26
26
|
* import { DocDBClient, ModifyDBSubnetGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, ModifyDBSubnetGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // ModifyDBSubnetGroupMessage
|
|
30
|
+
* DBSubnetGroupName: "STRING_VALUE", // required
|
|
31
|
+
* DBSubnetGroupDescription: "STRING_VALUE",
|
|
32
|
+
* SubnetIds: [ // SubnetIdentifierList // required
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
29
36
|
* const command = new ModifyDBSubnetGroupCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface ModifyEventSubscriptionCommandOutput extends ModifyEventSubscri
|
|
|
26
26
|
* import { DocDBClient, ModifyEventSubscriptionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, ModifyEventSubscriptionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // ModifyEventSubscriptionMessage
|
|
30
|
+
* SubscriptionName: "STRING_VALUE", // required
|
|
31
|
+
* SnsTopicArn: "STRING_VALUE",
|
|
32
|
+
* SourceType: "STRING_VALUE",
|
|
33
|
+
* EventCategories: [ // EventCategoriesList
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* Enabled: true || false,
|
|
37
|
+
* };
|
|
29
38
|
* const command = new ModifyEventSubscriptionCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -29,6 +29,11 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes
|
|
|
29
29
|
* import { DocDBClient, ModifyGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, ModifyGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // ModifyGlobalClusterMessage
|
|
33
|
+
* GlobalClusterIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* NewGlobalClusterIdentifier: "STRING_VALUE",
|
|
35
|
+
* DeletionProtection: true || false,
|
|
36
|
+
* };
|
|
32
37
|
* const command = new ModifyGlobalClusterCommand(input);
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
@@ -32,6 +32,10 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
|
|
|
32
32
|
* import { DocDBClient, RebootDBInstanceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
33
33
|
* // const { DocDBClient, RebootDBInstanceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
34
34
|
* const client = new DocDBClient(config);
|
|
35
|
+
* const input = { // RebootDBInstanceMessage
|
|
36
|
+
* DBInstanceIdentifier: "STRING_VALUE", // required
|
|
37
|
+
* ForceFailover: true || false,
|
|
38
|
+
* };
|
|
35
39
|
* const command = new RebootDBInstanceCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -29,6 +29,10 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl
|
|
|
29
29
|
* import { DocDBClient, RemoveFromGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, RemoveFromGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // RemoveFromGlobalClusterMessage
|
|
33
|
+
* GlobalClusterIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* DbClusterIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
32
36
|
* const command = new RemoveFromGlobalClusterCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput extends Rem
|
|
|
27
27
|
* import { DocDBClient, RemoveSourceIdentifierFromSubscriptionCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
28
28
|
* // const { DocDBClient, RemoveSourceIdentifierFromSubscriptionCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
29
29
|
* const client = new DocDBClient(config);
|
|
30
|
+
* const input = { // RemoveSourceIdentifierFromSubscriptionMessage
|
|
31
|
+
* SubscriptionName: "STRING_VALUE", // required
|
|
32
|
+
* SourceIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new RemoveSourceIdentifierFromSubscriptionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DocDBClient, RemoveTagsFromResourceCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
27
27
|
* // const { DocDBClient, RemoveTagsFromResourceCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
28
28
|
* const client = new DocDBClient(config);
|
|
29
|
+
* const input = { // RemoveTagsFromResourceMessage
|
|
30
|
+
* ResourceName: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // KeyList // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RemoveTagsFromResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -33,6 +33,24 @@ export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterPara
|
|
|
33
33
|
* import { DocDBClient, ResetDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
34
34
|
* // const { DocDBClient, ResetDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
35
35
|
* const client = new DocDBClient(config);
|
|
36
|
+
* const input = { // ResetDBClusterParameterGroupMessage
|
|
37
|
+
* DBClusterParameterGroupName: "STRING_VALUE", // required
|
|
38
|
+
* ResetAllParameters: true || false,
|
|
39
|
+
* Parameters: [ // ParametersList
|
|
40
|
+
* { // Parameter
|
|
41
|
+
* ParameterName: "STRING_VALUE",
|
|
42
|
+
* ParameterValue: "STRING_VALUE",
|
|
43
|
+
* Description: "STRING_VALUE",
|
|
44
|
+
* Source: "STRING_VALUE",
|
|
45
|
+
* ApplyType: "STRING_VALUE",
|
|
46
|
+
* DataType: "STRING_VALUE",
|
|
47
|
+
* AllowedValues: "STRING_VALUE",
|
|
48
|
+
* IsModifiable: true || false,
|
|
49
|
+
* MinimumEngineVersion: "STRING_VALUE",
|
|
50
|
+
* ApplyMethod: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* };
|
|
36
54
|
* const command = new ResetDBClusterParameterGroupCommand(input);
|
|
37
55
|
* const response = await client.send(command);
|
|
38
56
|
* ```
|
|
@@ -28,6 +28,31 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
28
28
|
* import { DocDBClient, RestoreDBClusterFromSnapshotCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
29
29
|
* // const { DocDBClient, RestoreDBClusterFromSnapshotCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
30
30
|
* const client = new DocDBClient(config);
|
|
31
|
+
* const input = { // RestoreDBClusterFromSnapshotMessage
|
|
32
|
+
* AvailabilityZones: [ // AvailabilityZones
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* SnapshotIdentifier: "STRING_VALUE", // required
|
|
37
|
+
* Engine: "STRING_VALUE", // required
|
|
38
|
+
* EngineVersion: "STRING_VALUE",
|
|
39
|
+
* Port: Number("int"),
|
|
40
|
+
* DBSubnetGroupName: "STRING_VALUE",
|
|
41
|
+
* VpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* Tags: [ // TagList
|
|
45
|
+
* { // Tag
|
|
46
|
+
* Key: "STRING_VALUE",
|
|
47
|
+
* Value: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* KmsKeyId: "STRING_VALUE",
|
|
51
|
+
* EnableCloudwatchLogsExports: [ // LogTypeList
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* DeletionProtection: true || false,
|
|
55
|
+
* };
|
|
31
56
|
* const command = new RestoreDBClusterFromSnapshotCommand(input);
|
|
32
57
|
* const response = await client.send(command);
|
|
33
58
|
* ```
|
|
@@ -30,6 +30,29 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
30
30
|
* import { DocDBClient, RestoreDBClusterToPointInTimeCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
31
31
|
* // const { DocDBClient, RestoreDBClusterToPointInTimeCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
32
32
|
* const client = new DocDBClient(config);
|
|
33
|
+
* const input = { // RestoreDBClusterToPointInTimeMessage
|
|
34
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* RestoreType: "STRING_VALUE",
|
|
36
|
+
* SourceDBClusterIdentifier: "STRING_VALUE", // required
|
|
37
|
+
* RestoreToTime: new Date("TIMESTAMP"),
|
|
38
|
+
* UseLatestRestorableTime: true || false,
|
|
39
|
+
* Port: Number("int"),
|
|
40
|
+
* DBSubnetGroupName: "STRING_VALUE",
|
|
41
|
+
* VpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* Tags: [ // TagList
|
|
45
|
+
* { // Tag
|
|
46
|
+
* Key: "STRING_VALUE",
|
|
47
|
+
* Value: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* KmsKeyId: "STRING_VALUE",
|
|
51
|
+
* EnableCloudwatchLogsExports: [ // LogTypeList
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* DeletionProtection: true || false,
|
|
55
|
+
* };
|
|
33
56
|
* const command = new RestoreDBClusterToPointInTimeCommand(input);
|
|
34
57
|
* const response = await client.send(command);
|
|
35
58
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
|
|
|
28
28
|
* import { DocDBClient, StartDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
29
29
|
* // const { DocDBClient, StartDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
30
30
|
* const client = new DocDBClient(config);
|
|
31
|
+
* const input = { // StartDBClusterMessage
|
|
32
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new StartDBClusterCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
|
|
|
29
29
|
* import { DocDBClient, StopDBClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
|
|
30
30
|
* // const { DocDBClient, StopDBClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
|
|
31
31
|
* const client = new DocDBClient(config);
|
|
32
|
+
* const input = { // StopDBClusterMessage
|
|
33
|
+
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new StopDBClusterCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-sdk-rds": "3.299.0",
|
|
37
37
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
38
38
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
39
39
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
40
40
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
41
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
42
42
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
43
43
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
44
44
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
52
52
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-retry": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
56
56
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
57
57
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
58
58
|
"fast-xml-parser": "4.1.2",
|