@aws-sdk/client-dataexchange 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.
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataSetCommand.d.ts +2 -2
- package/dist-types/commands/CreateEventActionCommand.d.ts +7 -7
- package/dist-types/commands/CreateJobCommand.d.ts +31 -31
- package/dist-types/commands/CreateRevisionCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEventActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRevisionCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataSetCommand.d.ts +1 -1
- package/dist-types/commands/GetEventActionCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetRevisionCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RevokeRevisionCommand.d.ts +1 -1
- package/dist-types/commands/SendApiAssetCommand.d.ts +2 -2
- package/dist-types/commands/StartJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventActionCommand.d.ts +5 -5
- package/dist-types/commands/UpdateRevisionCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ export interface CancelJobCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, CancelJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, CancelJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelJobRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelJobCommand(input);
|
|
@@ -26,11 +26,11 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
|
|
|
26
26
|
* import { DataExchangeClient, CreateDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, CreateDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateDataSetRequest
|
|
30
30
|
* AssetType: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
|
-
* Tags: {
|
|
33
|
+
* Tags: { // MapOf__string
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -26,21 +26,21 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons
|
|
|
26
26
|
* import { DataExchangeClient, CreateEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, CreateEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Action: {
|
|
31
|
-
* ExportRevisionToS3: {
|
|
32
|
-
* Encryption: {
|
|
29
|
+
* const input = { // CreateEventActionRequest
|
|
30
|
+
* Action: { // Action
|
|
31
|
+
* ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
|
|
32
|
+
* Encryption: { // ExportServerSideEncryption
|
|
33
33
|
* KmsKeyArn: "STRING_VALUE",
|
|
34
34
|
* Type: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
|
-
* RevisionDestination: {
|
|
36
|
+
* RevisionDestination: { // AutoExportRevisionDestinationEntry
|
|
37
37
|
* Bucket: "STRING_VALUE", // required
|
|
38
38
|
* KeyPattern: "STRING_VALUE",
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
41
41
|
* },
|
|
42
|
-
* Event: {
|
|
43
|
-
* RevisionPublished: {
|
|
42
|
+
* Event: { // Event
|
|
43
|
+
* RevisionPublished: { // RevisionPublished
|
|
44
44
|
* DataSetId: "STRING_VALUE", // required
|
|
45
45
|
* },
|
|
46
46
|
* },
|
|
@@ -26,51 +26,51 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
26
26
|
* import { DataExchangeClient, CreateJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, CreateJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Details: {
|
|
31
|
-
* ExportAssetToSignedUrl: {
|
|
29
|
+
* const input = { // CreateJobRequest
|
|
30
|
+
* Details: { // RequestDetails
|
|
31
|
+
* ExportAssetToSignedUrl: { // ExportAssetToSignedUrlRequestDetails
|
|
32
32
|
* AssetId: "STRING_VALUE", // required
|
|
33
33
|
* DataSetId: "STRING_VALUE", // required
|
|
34
34
|
* RevisionId: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
|
-
* ExportAssetsToS3: {
|
|
37
|
-
* AssetDestinations: [ // required
|
|
38
|
-
* {
|
|
36
|
+
* ExportAssetsToS3: { // ExportAssetsToS3RequestDetails
|
|
37
|
+
* AssetDestinations: [ // ListOfAssetDestinationEntry // required
|
|
38
|
+
* { // AssetDestinationEntry
|
|
39
39
|
* AssetId: "STRING_VALUE", // required
|
|
40
40
|
* Bucket: "STRING_VALUE", // required
|
|
41
41
|
* Key: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
44
|
* DataSetId: "STRING_VALUE", // required
|
|
45
|
-
* Encryption: {
|
|
45
|
+
* Encryption: { // ExportServerSideEncryption
|
|
46
46
|
* KmsKeyArn: "STRING_VALUE",
|
|
47
47
|
* Type: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
49
49
|
* RevisionId: "STRING_VALUE", // required
|
|
50
50
|
* },
|
|
51
|
-
* ExportRevisionsToS3: {
|
|
51
|
+
* ExportRevisionsToS3: { // ExportRevisionsToS3RequestDetails
|
|
52
52
|
* DataSetId: "STRING_VALUE", // required
|
|
53
53
|
* Encryption: {
|
|
54
54
|
* KmsKeyArn: "STRING_VALUE",
|
|
55
55
|
* Type: "STRING_VALUE", // required
|
|
56
56
|
* },
|
|
57
|
-
* RevisionDestinations: [ // required
|
|
58
|
-
* {
|
|
57
|
+
* RevisionDestinations: [ // ListOfRevisionDestinationEntry // required
|
|
58
|
+
* { // RevisionDestinationEntry
|
|
59
59
|
* Bucket: "STRING_VALUE", // required
|
|
60
60
|
* KeyPattern: "STRING_VALUE",
|
|
61
61
|
* RevisionId: "STRING_VALUE", // required
|
|
62
62
|
* },
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
65
|
-
* ImportAssetFromSignedUrl: {
|
|
65
|
+
* ImportAssetFromSignedUrl: { // ImportAssetFromSignedUrlRequestDetails
|
|
66
66
|
* AssetName: "STRING_VALUE", // required
|
|
67
67
|
* DataSetId: "STRING_VALUE", // required
|
|
68
68
|
* Md5Hash: "STRING_VALUE", // required
|
|
69
69
|
* RevisionId: "STRING_VALUE", // required
|
|
70
70
|
* },
|
|
71
|
-
* ImportAssetsFromS3: {
|
|
72
|
-
* AssetSources: [ // required
|
|
73
|
-
* {
|
|
71
|
+
* ImportAssetsFromS3: { // ImportAssetsFromS3RequestDetails
|
|
72
|
+
* AssetSources: [ // ListOfAssetSourceEntry // required
|
|
73
|
+
* { // AssetSourceEntry
|
|
74
74
|
* Bucket: "STRING_VALUE", // required
|
|
75
75
|
* Key: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
@@ -78,16 +78,16 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
78
78
|
* DataSetId: "STRING_VALUE", // required
|
|
79
79
|
* RevisionId: "STRING_VALUE", // required
|
|
80
80
|
* },
|
|
81
|
-
* ImportAssetsFromRedshiftDataShares: {
|
|
82
|
-
* AssetSources: [ // required
|
|
83
|
-
* {
|
|
81
|
+
* ImportAssetsFromRedshiftDataShares: { // ImportAssetsFromRedshiftDataSharesRequestDetails
|
|
82
|
+
* AssetSources: [ // ListOfRedshiftDataShareAssetSourceEntry // required
|
|
83
|
+
* { // RedshiftDataShareAssetSourceEntry
|
|
84
84
|
* DataShareArn: "STRING_VALUE", // required
|
|
85
85
|
* },
|
|
86
86
|
* ],
|
|
87
87
|
* DataSetId: "STRING_VALUE", // required
|
|
88
88
|
* RevisionId: "STRING_VALUE", // required
|
|
89
89
|
* },
|
|
90
|
-
* ImportAssetFromApiGatewayApi: {
|
|
90
|
+
* ImportAssetFromApiGatewayApi: { // ImportAssetFromApiGatewayApiRequestDetails
|
|
91
91
|
* ApiDescription: "STRING_VALUE",
|
|
92
92
|
* ApiId: "STRING_VALUE", // required
|
|
93
93
|
* ApiKey: "STRING_VALUE",
|
|
@@ -98,17 +98,17 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
98
98
|
* RevisionId: "STRING_VALUE", // required
|
|
99
99
|
* Stage: "STRING_VALUE", // required
|
|
100
100
|
* },
|
|
101
|
-
* CreateS3DataAccessFromS3Bucket: {
|
|
102
|
-
* AssetSource: {
|
|
101
|
+
* CreateS3DataAccessFromS3Bucket: { // CreateS3DataAccessFromS3BucketRequestDetails
|
|
102
|
+
* AssetSource: { // S3DataAccessAssetSourceEntry
|
|
103
103
|
* Bucket: "STRING_VALUE", // required
|
|
104
|
-
* KeyPrefixes: [
|
|
104
|
+
* KeyPrefixes: [ // ListOf__string
|
|
105
105
|
* "STRING_VALUE",
|
|
106
106
|
* ],
|
|
107
107
|
* Keys: [
|
|
108
108
|
* "STRING_VALUE",
|
|
109
109
|
* ],
|
|
110
|
-
* KmsKeysToGrant: [
|
|
111
|
-
* {
|
|
110
|
+
* KmsKeysToGrant: [ // ListOfKmsKeysToGrant
|
|
111
|
+
* { // KmsKeyToGrant
|
|
112
112
|
* KmsKeyArn: "STRING_VALUE", // required
|
|
113
113
|
* },
|
|
114
114
|
* ],
|
|
@@ -116,22 +116,22 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
116
116
|
* DataSetId: "STRING_VALUE", // required
|
|
117
117
|
* RevisionId: "STRING_VALUE", // required
|
|
118
118
|
* },
|
|
119
|
-
* ImportAssetsFromLakeFormationTagPolicy: {
|
|
119
|
+
* ImportAssetsFromLakeFormationTagPolicy: { // ImportAssetsFromLakeFormationTagPolicyRequestDetails
|
|
120
120
|
* CatalogId: "STRING_VALUE", // required
|
|
121
|
-
* Database: {
|
|
122
|
-
* Expression: [ // required
|
|
123
|
-
* {
|
|
121
|
+
* Database: { // DatabaseLFTagPolicyAndPermissions
|
|
122
|
+
* Expression: [ // ListOfLFTags // required
|
|
123
|
+
* { // LFTag
|
|
124
124
|
* TagKey: "STRING_VALUE", // required
|
|
125
|
-
* TagValues: [ // required
|
|
125
|
+
* TagValues: [ // ListOfLFTagValues // required
|
|
126
126
|
* "STRING_VALUE",
|
|
127
127
|
* ],
|
|
128
128
|
* },
|
|
129
129
|
* ],
|
|
130
|
-
* Permissions: [ // required
|
|
130
|
+
* Permissions: [ // ListOfDatabaseLFTagPolicyPermissions // required
|
|
131
131
|
* "STRING_VALUE",
|
|
132
132
|
* ],
|
|
133
133
|
* },
|
|
134
|
-
* Table: {
|
|
134
|
+
* Table: { // TableLFTagPolicyAndPermissions
|
|
135
135
|
* Expression: [ // required
|
|
136
136
|
* {
|
|
137
137
|
* TagKey: "STRING_VALUE", // required
|
|
@@ -140,7 +140,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
140
140
|
* ],
|
|
141
141
|
* },
|
|
142
142
|
* ],
|
|
143
|
-
* Permissions: [ // required
|
|
143
|
+
* Permissions: [ // ListOfTableTagPolicyLFPermissions // required
|
|
144
144
|
* "STRING_VALUE",
|
|
145
145
|
* ],
|
|
146
146
|
* },
|
|
@@ -26,10 +26,10 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M
|
|
|
26
26
|
* import { DataExchangeClient, CreateRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, CreateRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateRevisionRequest
|
|
30
30
|
* Comment: "STRING_VALUE",
|
|
31
31
|
* DataSetId: "STRING_VALUE", // required
|
|
32
|
-
* Tags: {
|
|
32
|
+
* Tags: { // MapOf__string
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, DeleteAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, DeleteAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteAssetRequest
|
|
30
30
|
* AssetId: "STRING_VALUE", // required
|
|
31
31
|
* DataSetId: "STRING_VALUE", // required
|
|
32
32
|
* RevisionId: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, DeleteDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, DeleteDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteDataSetRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDataSetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, DeleteEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, DeleteEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteEventActionRequest
|
|
30
30
|
* EventActionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEventActionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, DeleteRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, DeleteRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteRevisionRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* RevisionId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
|
|
|
26
26
|
* import { DataExchangeClient, GetAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, GetAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetAssetRequest
|
|
30
30
|
* AssetId: "STRING_VALUE", // required
|
|
31
31
|
* DataSetId: "STRING_VALUE", // required
|
|
32
32
|
* RevisionId: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
|
|
|
26
26
|
* import { DataExchangeClient, GetDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, GetDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetDataSetRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDataSetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
|
|
|
26
26
|
* import { DataExchangeClient, GetEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, GetEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetEventActionRequest
|
|
30
30
|
* EventActionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEventActionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, GetJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, GetJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetJobRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetJobCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
|
|
|
26
26
|
* import { DataExchangeClient, GetRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, GetRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRevisionRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* RevisionId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
|
|
|
26
26
|
* import { DataExchangeClient, ListDataSetRevisionsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListDataSetRevisionsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDataSetRevisionsRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
|
|
|
26
26
|
* import { DataExchangeClient, ListDataSetsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListDataSetsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDataSetsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* Origin: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
|
|
|
26
26
|
* import { DataExchangeClient, ListEventActionsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListEventActionsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEventActionsRequest
|
|
30
30
|
* EventSourceId: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
26
26
|
* import { DataExchangeClient, ListJobsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListJobsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListJobsRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
|
|
|
26
26
|
* import { DataExchangeClient, ListRevisionAssetsCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListRevisionAssetsCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRevisionAssetsRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { DataExchangeClient, ListTagsForResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
|
|
|
26
26
|
* import { DataExchangeClient, RevokeRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, RevokeRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RevokeRevisionRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* RevisionId: "STRING_VALUE", // required
|
|
32
32
|
* RevocationComment: "STRING_VALUE", // required
|
|
@@ -26,9 +26,9 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad
|
|
|
26
26
|
* import { DataExchangeClient, SendApiAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, SendApiAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // SendApiAssetRequest
|
|
30
30
|
* Body: "STRING_VALUE",
|
|
31
|
-
* QueryStringParameters: {
|
|
31
|
+
* QueryStringParameters: { // MapOf__string
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* AssetId: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare
|
|
|
26
26
|
* import { DataExchangeClient, StartJobCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, StartJobCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartJobRequest
|
|
30
30
|
* JobId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartJobCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, TagResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, TagResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // MapOf__string // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { DataExchangeClient, UntagResourceCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, UntagResourceCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // ListOf__string // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
|
|
|
26
26
|
* import { DataExchangeClient, UpdateAssetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, UpdateAssetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAssetRequest
|
|
30
30
|
* AssetId: "STRING_VALUE", // required
|
|
31
31
|
* DataSetId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met
|
|
|
26
26
|
* import { DataExchangeClient, UpdateDataSetCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, UpdateDataSetCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateDataSetRequest
|
|
30
30
|
* DataSetId: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
@@ -26,14 +26,14 @@ export interface UpdateEventActionCommandOutput extends UpdateEventActionRespons
|
|
|
26
26
|
* import { DataExchangeClient, UpdateEventActionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, UpdateEventActionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Action: {
|
|
31
|
-
* ExportRevisionToS3: {
|
|
32
|
-
* Encryption: {
|
|
29
|
+
* const input = { // UpdateEventActionRequest
|
|
30
|
+
* Action: { // Action
|
|
31
|
+
* ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
|
|
32
|
+
* Encryption: { // ExportServerSideEncryption
|
|
33
33
|
* KmsKeyArn: "STRING_VALUE",
|
|
34
34
|
* Type: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
|
-
* RevisionDestination: {
|
|
36
|
+
* RevisionDestination: { // AutoExportRevisionDestinationEntry
|
|
37
37
|
* Bucket: "STRING_VALUE", // required
|
|
38
38
|
* KeyPattern: "STRING_VALUE",
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __M
|
|
|
26
26
|
* import { DataExchangeClient, UpdateRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
|
|
27
27
|
* // const { DataExchangeClient, UpdateRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
|
|
28
28
|
* const client = new DataExchangeClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateRevisionRequest
|
|
30
30
|
* Comment: "STRING_VALUE",
|
|
31
31
|
* DataSetId: "STRING_VALUE", // required
|
|
32
32
|
* Finalized: true || false,
|
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.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|