@aws-sdk/client-dataexchange 3.888.0 → 3.891.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/AcceptDataGrantCommand.d.ts +2 -0
- package/dist-types/commands/CancelJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateDataGrantCommand.d.ts +2 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +2 -0
- package/dist-types/commands/CreateEventActionCommand.d.ts +2 -0
- package/dist-types/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateRevisionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataGrantCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataSetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEventActionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRevisionCommand.d.ts +2 -0
- package/dist-types/commands/GetAssetCommand.d.ts +2 -0
- package/dist-types/commands/GetDataGrantCommand.d.ts +2 -0
- package/dist-types/commands/GetDataSetCommand.d.ts +2 -0
- package/dist-types/commands/GetEventActionCommand.d.ts +2 -0
- package/dist-types/commands/GetJobCommand.d.ts +2 -0
- package/dist-types/commands/GetReceivedDataGrantCommand.d.ts +2 -0
- package/dist-types/commands/GetRevisionCommand.d.ts +2 -0
- package/dist-types/commands/ListDataGrantsCommand.d.ts +2 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +2 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventActionsCommand.d.ts +2 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListReceivedDataGrantsCommand.d.ts +2 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RevokeRevisionCommand.d.ts +2 -0
- package/dist-types/commands/SendApiAssetCommand.d.ts +2 -0
- package/dist-types/commands/SendDataSetNotificationCommand.d.ts +2 -0
- package/dist-types/commands/StartJobCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDataSetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateEventActionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateRevisionCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -33,6 +33,8 @@ declare const AcceptDataGrantCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, AcceptDataGrantCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, AcceptDataGrantCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // AcceptDataGrantRequest
|
|
38
40
|
* DataGrantArn: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const CancelJobCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { DataExchangeClient, CancelJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
36
36
|
* // const { DataExchangeClient, CancelJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
37
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
38
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
37
39
|
* const client = new DataExchangeClient(config);
|
|
38
40
|
* const input = { // CancelJobRequest
|
|
39
41
|
* JobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateDataGrantCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, CreateDataGrantCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, CreateDataGrantCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // CreateDataGrantRequest
|
|
38
40
|
* Name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateDataSetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, CreateDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, CreateDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // CreateDataSetRequest
|
|
38
40
|
* AssetType: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateEventActionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, CreateEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, CreateEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // CreateEventActionRequest
|
|
38
40
|
* Action: { // Action
|
|
@@ -33,6 +33,8 @@ declare const CreateJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, CreateJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, CreateJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // CreateJobRequest
|
|
38
40
|
* Details: { // RequestDetails
|
|
@@ -33,6 +33,8 @@ declare const CreateRevisionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, CreateRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, CreateRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // CreateRevisionRequest
|
|
38
40
|
* Comment: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteAssetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, DeleteAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, DeleteAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // DeleteAssetRequest
|
|
38
40
|
* AssetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteDataGrantCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, DeleteDataGrantCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, DeleteDataGrantCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // DeleteDataGrantRequest
|
|
38
40
|
* DataGrantId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteDataSetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, DeleteDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, DeleteDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // DeleteDataSetRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteEventActionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, DeleteEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, DeleteEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // DeleteEventActionRequest
|
|
38
40
|
* EventActionId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteRevisionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, DeleteRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, DeleteRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // DeleteRevisionRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetAssetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetAssetRequest
|
|
38
40
|
* AssetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetDataGrantCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetDataGrantCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetDataGrantCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetDataGrantRequest
|
|
38
40
|
* DataGrantId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetDataSetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetDataSetRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetEventActionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetEventActionRequest
|
|
38
40
|
* EventActionId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetJobRequest
|
|
38
40
|
* JobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetReceivedDataGrantCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetReceivedDataGrantCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetReceivedDataGrantCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetReceivedDataGrantRequest
|
|
38
40
|
* DataGrantArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetRevisionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, GetRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, GetRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // GetRevisionRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListDataGrantsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, ListDataGrantsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, ListDataGrantsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // ListDataGrantsRequest
|
|
38
40
|
* MaxResults: Number("int"),
|
|
@@ -34,6 +34,8 @@ declare const ListDataSetRevisionsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { DataExchangeClient, ListDataSetRevisionsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
36
36
|
* // const { DataExchangeClient, ListDataSetRevisionsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
37
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
38
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
37
39
|
* const client = new DataExchangeClient(config);
|
|
38
40
|
* const input = { // ListDataSetRevisionsRequest
|
|
39
41
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const ListDataSetsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { DataExchangeClient, ListDataSetsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
36
36
|
* // const { DataExchangeClient, ListDataSetsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
37
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
38
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
37
39
|
* const client = new DataExchangeClient(config);
|
|
38
40
|
* const input = { // ListDataSetsRequest
|
|
39
41
|
* MaxResults: Number("int"),
|
|
@@ -33,6 +33,8 @@ declare const ListEventActionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, ListEventActionsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, ListEventActionsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // ListEventActionsRequest
|
|
38
40
|
* EventSourceId: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListJobsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, ListJobsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, ListJobsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // ListJobsRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListReceivedDataGrantsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, ListReceivedDataGrantsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, ListReceivedDataGrantsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // ListReceivedDataGrantsRequest
|
|
38
40
|
* MaxResults: Number("int"),
|
|
@@ -34,6 +34,8 @@ declare const ListRevisionAssetsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { DataExchangeClient, ListRevisionAssetsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
36
36
|
* // const { DataExchangeClient, ListRevisionAssetsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
37
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
38
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
37
39
|
* const client = new DataExchangeClient(config);
|
|
38
40
|
* const input = { // ListRevisionAssetsRequest
|
|
39
41
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, ListTagsForResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // ListTagsForResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const RevokeRevisionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, RevokeRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, RevokeRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // RevokeRevisionRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const SendApiAssetCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { DataExchangeClient, SendApiAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
36
36
|
* // const { DataExchangeClient, SendApiAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
37
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
38
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
37
39
|
* const client = new DataExchangeClient(config);
|
|
38
40
|
* const input = { // SendApiAssetRequest
|
|
39
41
|
* Body: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const SendDataSetNotificationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, SendDataSetNotificationCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, SendDataSetNotificationCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // SendDataSetNotificationRequest
|
|
38
40
|
* Scope: { // ScopeDetails
|
|
@@ -33,6 +33,8 @@ declare const StartJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, StartJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, StartJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // StartJobRequest
|
|
38
40
|
* JobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, TagResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, TagResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // TagResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, UntagResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, UntagResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // UntagResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateAssetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, UpdateAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, UpdateAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // UpdateAssetRequest
|
|
38
40
|
* AssetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateDataSetCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, UpdateDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, UpdateDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // UpdateDataSetRequest
|
|
38
40
|
* DataSetId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateEventActionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, UpdateEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, UpdateEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // UpdateEventActionRequest
|
|
38
40
|
* Action: { // Action
|
|
@@ -33,6 +33,8 @@ declare const UpdateRevisionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { DataExchangeClient, UpdateRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
35
35
|
* // const { DataExchangeClient, UpdateRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
36
|
+
* // import type { DataExchangeClientConfig } from "@aws-sdk/client-dataexchange";
|
|
37
|
+
* const config = {}; // type is DataExchangeClientConfig
|
|
36
38
|
* const client = new DataExchangeClient(config);
|
|
37
39
|
* const input = { // UpdateRevisionRequest
|
|
38
40
|
* Comment: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dataexchange",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dataexchange",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/core": "3.890.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.2.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
|
-
"@smithy/node-config-provider": "^4.2.
|
|
44
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.2",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
55
|
-
"@smithy/util-endpoints": "^3.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|