@aws-sdk/client-dataexchange 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.
Files changed (30) hide show
  1. package/dist-types/commands/CancelJobCommand.d.ts +3 -0
  2. package/dist-types/commands/CreateDataSetCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateEventActionCommand.d.ts +19 -0
  4. package/dist-types/commands/CreateJobCommand.d.ts +125 -0
  5. package/dist-types/commands/CreateRevisionCommand.d.ts +7 -0
  6. package/dist-types/commands/DeleteAssetCommand.d.ts +5 -0
  7. package/dist-types/commands/DeleteDataSetCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteEventActionCommand.d.ts +3 -0
  9. package/dist-types/commands/DeleteRevisionCommand.d.ts +4 -0
  10. package/dist-types/commands/GetAssetCommand.d.ts +5 -0
  11. package/dist-types/commands/GetDataSetCommand.d.ts +3 -0
  12. package/dist-types/commands/GetEventActionCommand.d.ts +3 -0
  13. package/dist-types/commands/GetJobCommand.d.ts +3 -0
  14. package/dist-types/commands/GetRevisionCommand.d.ts +4 -0
  15. package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +5 -0
  16. package/dist-types/commands/ListDataSetsCommand.d.ts +5 -0
  17. package/dist-types/commands/ListEventActionsCommand.d.ts +5 -0
  18. package/dist-types/commands/ListJobsCommand.d.ts +6 -0
  19. package/dist-types/commands/ListRevisionAssetsCommand.d.ts +6 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  21. package/dist-types/commands/RevokeRevisionCommand.d.ts +5 -0
  22. package/dist-types/commands/SendApiAssetCommand.d.ts +14 -0
  23. package/dist-types/commands/StartJobCommand.d.ts +3 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  26. package/dist-types/commands/UpdateAssetCommand.d.ts +6 -0
  27. package/dist-types/commands/UpdateDataSetCommand.d.ts +5 -0
  28. package/dist-types/commands/UpdateEventActionCommand.d.ts +15 -0
  29. package/dist-types/commands/UpdateRevisionCommand.d.ts +6 -0
  30. package/package.json +8 -8
@@ -26,6 +26,9 @@ 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 = { // CancelJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CancelJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,14 @@ 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 = { // CreateDataSetRequest
30
+ * AssetType: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE", // required
32
+ * Name: "STRING_VALUE", // required
33
+ * Tags: { // MapOf__string
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
29
37
  * const command = new CreateDataSetCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,25 @@ 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 = { // CreateEventActionRequest
30
+ * Action: { // Action
31
+ * ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
32
+ * Encryption: { // ExportServerSideEncryption
33
+ * KmsKeyArn: "STRING_VALUE",
34
+ * Type: "STRING_VALUE", // required
35
+ * },
36
+ * RevisionDestination: { // AutoExportRevisionDestinationEntry
37
+ * Bucket: "STRING_VALUE", // required
38
+ * KeyPattern: "STRING_VALUE",
39
+ * },
40
+ * },
41
+ * },
42
+ * Event: { // Event
43
+ * RevisionPublished: { // RevisionPublished
44
+ * DataSetId: "STRING_VALUE", // required
45
+ * },
46
+ * },
47
+ * };
29
48
  * const command = new CreateEventActionCommand(input);
30
49
  * const response = await client.send(command);
31
50
  * ```
@@ -26,6 +26,131 @@ 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 = { // CreateJobRequest
30
+ * Details: { // RequestDetails
31
+ * ExportAssetToSignedUrl: { // ExportAssetToSignedUrlRequestDetails
32
+ * AssetId: "STRING_VALUE", // required
33
+ * DataSetId: "STRING_VALUE", // required
34
+ * RevisionId: "STRING_VALUE", // required
35
+ * },
36
+ * ExportAssetsToS3: { // ExportAssetsToS3RequestDetails
37
+ * AssetDestinations: [ // ListOfAssetDestinationEntry // required
38
+ * { // AssetDestinationEntry
39
+ * AssetId: "STRING_VALUE", // required
40
+ * Bucket: "STRING_VALUE", // required
41
+ * Key: "STRING_VALUE",
42
+ * },
43
+ * ],
44
+ * DataSetId: "STRING_VALUE", // required
45
+ * Encryption: { // ExportServerSideEncryption
46
+ * KmsKeyArn: "STRING_VALUE",
47
+ * Type: "STRING_VALUE", // required
48
+ * },
49
+ * RevisionId: "STRING_VALUE", // required
50
+ * },
51
+ * ExportRevisionsToS3: { // ExportRevisionsToS3RequestDetails
52
+ * DataSetId: "STRING_VALUE", // required
53
+ * Encryption: {
54
+ * KmsKeyArn: "STRING_VALUE",
55
+ * Type: "STRING_VALUE", // required
56
+ * },
57
+ * RevisionDestinations: [ // ListOfRevisionDestinationEntry // required
58
+ * { // RevisionDestinationEntry
59
+ * Bucket: "STRING_VALUE", // required
60
+ * KeyPattern: "STRING_VALUE",
61
+ * RevisionId: "STRING_VALUE", // required
62
+ * },
63
+ * ],
64
+ * },
65
+ * ImportAssetFromSignedUrl: { // ImportAssetFromSignedUrlRequestDetails
66
+ * AssetName: "STRING_VALUE", // required
67
+ * DataSetId: "STRING_VALUE", // required
68
+ * Md5Hash: "STRING_VALUE", // required
69
+ * RevisionId: "STRING_VALUE", // required
70
+ * },
71
+ * ImportAssetsFromS3: { // ImportAssetsFromS3RequestDetails
72
+ * AssetSources: [ // ListOfAssetSourceEntry // required
73
+ * { // AssetSourceEntry
74
+ * Bucket: "STRING_VALUE", // required
75
+ * Key: "STRING_VALUE", // required
76
+ * },
77
+ * ],
78
+ * DataSetId: "STRING_VALUE", // required
79
+ * RevisionId: "STRING_VALUE", // required
80
+ * },
81
+ * ImportAssetsFromRedshiftDataShares: { // ImportAssetsFromRedshiftDataSharesRequestDetails
82
+ * AssetSources: [ // ListOfRedshiftDataShareAssetSourceEntry // required
83
+ * { // RedshiftDataShareAssetSourceEntry
84
+ * DataShareArn: "STRING_VALUE", // required
85
+ * },
86
+ * ],
87
+ * DataSetId: "STRING_VALUE", // required
88
+ * RevisionId: "STRING_VALUE", // required
89
+ * },
90
+ * ImportAssetFromApiGatewayApi: { // ImportAssetFromApiGatewayApiRequestDetails
91
+ * ApiDescription: "STRING_VALUE",
92
+ * ApiId: "STRING_VALUE", // required
93
+ * ApiKey: "STRING_VALUE",
94
+ * ApiName: "STRING_VALUE", // required
95
+ * ApiSpecificationMd5Hash: "STRING_VALUE", // required
96
+ * DataSetId: "STRING_VALUE", // required
97
+ * ProtocolType: "STRING_VALUE", // required
98
+ * RevisionId: "STRING_VALUE", // required
99
+ * Stage: "STRING_VALUE", // required
100
+ * },
101
+ * CreateS3DataAccessFromS3Bucket: { // CreateS3DataAccessFromS3BucketRequestDetails
102
+ * AssetSource: { // S3DataAccessAssetSourceEntry
103
+ * Bucket: "STRING_VALUE", // required
104
+ * KeyPrefixes: [ // ListOf__string
105
+ * "STRING_VALUE",
106
+ * ],
107
+ * Keys: [
108
+ * "STRING_VALUE",
109
+ * ],
110
+ * KmsKeysToGrant: [ // ListOfKmsKeysToGrant
111
+ * { // KmsKeyToGrant
112
+ * KmsKeyArn: "STRING_VALUE", // required
113
+ * },
114
+ * ],
115
+ * },
116
+ * DataSetId: "STRING_VALUE", // required
117
+ * RevisionId: "STRING_VALUE", // required
118
+ * },
119
+ * ImportAssetsFromLakeFormationTagPolicy: { // ImportAssetsFromLakeFormationTagPolicyRequestDetails
120
+ * CatalogId: "STRING_VALUE", // required
121
+ * Database: { // DatabaseLFTagPolicyAndPermissions
122
+ * Expression: [ // ListOfLFTags // required
123
+ * { // LFTag
124
+ * TagKey: "STRING_VALUE", // required
125
+ * TagValues: [ // ListOfLFTagValues // required
126
+ * "STRING_VALUE",
127
+ * ],
128
+ * },
129
+ * ],
130
+ * Permissions: [ // ListOfDatabaseLFTagPolicyPermissions // required
131
+ * "STRING_VALUE",
132
+ * ],
133
+ * },
134
+ * Table: { // TableLFTagPolicyAndPermissions
135
+ * Expression: [ // required
136
+ * {
137
+ * TagKey: "STRING_VALUE", // required
138
+ * TagValues: [ // required
139
+ * "STRING_VALUE",
140
+ * ],
141
+ * },
142
+ * ],
143
+ * Permissions: [ // ListOfTableTagPolicyLFPermissions // required
144
+ * "STRING_VALUE",
145
+ * ],
146
+ * },
147
+ * RoleArn: "STRING_VALUE", // required
148
+ * DataSetId: "STRING_VALUE", // required
149
+ * RevisionId: "STRING_VALUE", // required
150
+ * },
151
+ * },
152
+ * Type: "STRING_VALUE", // required
153
+ * };
29
154
  * const command = new CreateJobCommand(input);
30
155
  * const response = await client.send(command);
31
156
  * ```
@@ -26,6 +26,13 @@ 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 = { // CreateRevisionRequest
30
+ * Comment: "STRING_VALUE",
31
+ * DataSetId: "STRING_VALUE", // required
32
+ * Tags: { // MapOf__string
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
29
36
  * const command = new CreateRevisionCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,11 @@ 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 = { // DeleteAssetRequest
30
+ * AssetId: "STRING_VALUE", // required
31
+ * DataSetId: "STRING_VALUE", // required
32
+ * RevisionId: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DeleteAssetCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteDataSetRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteDataSetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteEventActionRequest
30
+ * EventActionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteEventActionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // DeleteRevisionRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * RevisionId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteRevisionCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // GetAssetRequest
30
+ * AssetId: "STRING_VALUE", // required
31
+ * DataSetId: "STRING_VALUE", // required
32
+ * RevisionId: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetAssetCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // GetDataSetRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDataSetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // GetEventActionRequest
30
+ * EventActionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetEventActionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // GetJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // GetRevisionRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * RevisionId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetRevisionCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListDataSetRevisionsRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListDataSetRevisionsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListDataSetsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * Origin: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListDataSetsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListEventActionsRequest
30
+ * EventSourceId: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListEventActionsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListJobsRequest
30
+ * DataSetId: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * RevisionId: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListJobsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListRevisionAssetsRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * RevisionId: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new ListRevisionAssetsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,9 @@ 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 = { // ListTagsForResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ 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 = { // RevokeRevisionRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * RevisionId: "STRING_VALUE", // required
32
+ * RevocationComment: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new RevokeRevisionCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,20 @@ 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 = { // SendApiAssetRequest
30
+ * Body: "STRING_VALUE",
31
+ * QueryStringParameters: { // MapOf__string
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * AssetId: "STRING_VALUE", // required
35
+ * DataSetId: "STRING_VALUE", // required
36
+ * RequestHeaders: {
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * Method: "STRING_VALUE",
40
+ * Path: "STRING_VALUE",
41
+ * RevisionId: "STRING_VALUE", // required
42
+ * };
29
43
  * const command = new SendApiAssetCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,9 @@ 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 = { // StartJobRequest
30
+ * JobId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ 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 = { // TagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: { // MapOf__string // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = { // UntagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // ListOf__string // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = { // UpdateAssetRequest
30
+ * AssetId: "STRING_VALUE", // required
31
+ * DataSetId: "STRING_VALUE", // required
32
+ * Name: "STRING_VALUE", // required
33
+ * RevisionId: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new UpdateAssetCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ 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 = { // UpdateDataSetRequest
30
+ * DataSetId: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * Name: "STRING_VALUE",
33
+ * };
29
34
  * const command = new UpdateDataSetCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,21 @@ 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 = { // UpdateEventActionRequest
30
+ * Action: { // Action
31
+ * ExportRevisionToS3: { // AutoExportRevisionToS3RequestDetails
32
+ * Encryption: { // ExportServerSideEncryption
33
+ * KmsKeyArn: "STRING_VALUE",
34
+ * Type: "STRING_VALUE", // required
35
+ * },
36
+ * RevisionDestination: { // AutoExportRevisionDestinationEntry
37
+ * Bucket: "STRING_VALUE", // required
38
+ * KeyPattern: "STRING_VALUE",
39
+ * },
40
+ * },
41
+ * },
42
+ * EventActionId: "STRING_VALUE", // required
43
+ * };
29
44
  * const command = new UpdateEventActionCommand(input);
30
45
  * const response = await client.send(command);
31
46
  * ```
@@ -26,6 +26,12 @@ 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 = { // UpdateRevisionRequest
30
+ * Comment: "STRING_VALUE",
31
+ * DataSetId: "STRING_VALUE", // required
32
+ * Finalized: true || false,
33
+ * RevisionId: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new UpdateRevisionCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
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.299.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
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,12 +32,12 @@
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.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },