@aws-sdk/client-docdb-elastic 3.300.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.
@@ -26,14 +26,14 @@ export interface CreateClusterCommandOutput extends CreateClusterOutput, __Metad
26
26
  * import { DocDBElasticClient, CreateClusterCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, CreateClusterCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // CreateClusterInput
30
30
  * clusterName: "STRING_VALUE", // required
31
31
  * authType: "STRING_VALUE", // required
32
32
  * adminUserName: "STRING_VALUE", // required
33
33
  * adminUserPassword: "STRING_VALUE", // required
34
34
  * shardCapacity: Number("int"), // required
35
35
  * shardCount: Number("int"), // required
36
- * vpcSecurityGroupIds: [
36
+ * vpcSecurityGroupIds: [ // StringList
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * subnetIds: [
@@ -42,7 +42,7 @@ export interface CreateClusterCommandOutput extends CreateClusterOutput, __Metad
42
42
  * kmsKeyId: "STRING_VALUE",
43
43
  * clientToken: "STRING_VALUE",
44
44
  * preferredMaintenanceWindow: "STRING_VALUE",
45
- * tags: {
45
+ * tags: { // TagMap
46
46
  * "<keys>": "STRING_VALUE",
47
47
  * },
48
48
  * };
@@ -26,10 +26,10 @@ export interface CreateClusterSnapshotCommandOutput extends CreateClusterSnapsho
26
26
  * import { DocDBElasticClient, CreateClusterSnapshotCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, CreateClusterSnapshotCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // CreateClusterSnapshotInput
30
30
  * clusterArn: "STRING_VALUE", // required
31
31
  * snapshotName: "STRING_VALUE", // required
32
- * tags: {
32
+ * tags: { // TagMap
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,7 +26,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterOutput, __Metad
26
26
  * import { DocDBElasticClient, DeleteClusterCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, DeleteClusterCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // DeleteClusterInput
30
30
  * clusterArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteClusterCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteClusterSnapshotCommandOutput extends DeleteClusterSnapsho
26
26
  * import { DocDBElasticClient, DeleteClusterSnapshotCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, DeleteClusterSnapshotCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // DeleteClusterSnapshotInput
30
30
  * snapshotArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteClusterSnapshotCommand(input);
@@ -26,7 +26,7 @@ export interface GetClusterCommandOutput extends GetClusterOutput, __MetadataBea
26
26
  * import { DocDBElasticClient, GetClusterCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, GetClusterCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // GetClusterInput
30
30
  * clusterArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetClusterCommand(input);
@@ -26,7 +26,7 @@ export interface GetClusterSnapshotCommandOutput extends GetClusterSnapshotOutpu
26
26
  * import { DocDBElasticClient, GetClusterSnapshotCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, GetClusterSnapshotCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // GetClusterSnapshotInput
30
30
  * snapshotArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetClusterSnapshotCommand(input);
@@ -26,7 +26,7 @@ export interface ListClusterSnapshotsCommandOutput extends ListClusterSnapshotsO
26
26
  * import { DocDBElasticClient, ListClusterSnapshotsCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, ListClusterSnapshotsCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // ListClusterSnapshotsInput
30
30
  * clusterArn: "STRING_VALUE",
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListClustersCommandOutput extends ListClustersOutput, __Metadat
26
26
  * import { DocDBElasticClient, ListClustersCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, ListClustersCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // ListClustersInput
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { DocDBElasticClient, ListTagsForResourceCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, ListTagsForResourceCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,17 +26,17 @@ export interface RestoreClusterFromSnapshotCommandOutput extends RestoreClusterF
26
26
  * import { DocDBElasticClient, RestoreClusterFromSnapshotCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, RestoreClusterFromSnapshotCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // RestoreClusterFromSnapshotInput
30
30
  * clusterName: "STRING_VALUE", // required
31
31
  * snapshotArn: "STRING_VALUE", // required
32
- * vpcSecurityGroupIds: [
32
+ * vpcSecurityGroupIds: [ // StringList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * subnetIds: [
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * kmsKeyId: "STRING_VALUE",
39
- * tags: {
39
+ * tags: { // TagMap
40
40
  * "<keys>": "STRING_VALUE",
41
41
  * },
42
42
  * };
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { DocDBElasticClient, TagResourceCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, TagResourceCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { DocDBElasticClient, UntagResourceCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
27
27
  * // const { DocDBElasticClient, UntagResourceCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
28
28
  * const client = new DocDBElasticClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -27,12 +27,12 @@ export interface UpdateClusterCommandOutput extends UpdateClusterOutput, __Metad
27
27
  * import { DocDBElasticClient, UpdateClusterCommand } from "@aws-sdk/client-docdb-elastic"; // ES Modules import
28
28
  * // const { DocDBElasticClient, UpdateClusterCommand } = require("@aws-sdk/client-docdb-elastic"); // CommonJS import
29
29
  * const client = new DocDBElasticClient(config);
30
- * const input = {
30
+ * const input = { // UpdateClusterInput
31
31
  * clusterArn: "STRING_VALUE", // required
32
32
  * authType: "STRING_VALUE",
33
33
  * shardCapacity: Number("int"),
34
34
  * shardCount: Number("int"),
35
- * vpcSecurityGroupIds: [
35
+ * vpcSecurityGroupIds: [ // StringList
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * subnetIds: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-docdb-elastic",
3
3
  "description": "AWS SDK for JavaScript Docdb Elastic Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "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",