@aws-sdk/client-dataexchange 3.53.0 → 3.55.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 (68) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/DataExchange.js +15 -0
  3. package/dist-cjs/DataExchangeClient.js +13 -13
  4. package/dist-cjs/commands/CancelJobCommand.js +3 -3
  5. package/dist-cjs/commands/CreateDataSetCommand.js +3 -3
  6. package/dist-cjs/commands/CreateEventActionCommand.js +3 -3
  7. package/dist-cjs/commands/CreateJobCommand.js +3 -3
  8. package/dist-cjs/commands/CreateRevisionCommand.js +3 -3
  9. package/dist-cjs/commands/DeleteAssetCommand.js +3 -3
  10. package/dist-cjs/commands/DeleteDataSetCommand.js +3 -3
  11. package/dist-cjs/commands/DeleteEventActionCommand.js +3 -3
  12. package/dist-cjs/commands/DeleteRevisionCommand.js +3 -3
  13. package/dist-cjs/commands/GetAssetCommand.js +3 -3
  14. package/dist-cjs/commands/GetDataSetCommand.js +3 -3
  15. package/dist-cjs/commands/GetEventActionCommand.js +3 -3
  16. package/dist-cjs/commands/GetJobCommand.js +3 -3
  17. package/dist-cjs/commands/GetRevisionCommand.js +3 -3
  18. package/dist-cjs/commands/ListDataSetRevisionsCommand.js +3 -3
  19. package/dist-cjs/commands/ListDataSetsCommand.js +3 -3
  20. package/dist-cjs/commands/ListEventActionsCommand.js +3 -3
  21. package/dist-cjs/commands/ListJobsCommand.js +3 -3
  22. package/dist-cjs/commands/ListRevisionAssetsCommand.js +3 -3
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  24. package/dist-cjs/commands/RevokeRevisionCommand.js +36 -0
  25. package/dist-cjs/commands/SendApiAssetCommand.js +3 -3
  26. package/dist-cjs/commands/StartJobCommand.js +3 -3
  27. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  28. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  29. package/dist-cjs/commands/UpdateAssetCommand.js +3 -3
  30. package/dist-cjs/commands/UpdateDataSetCommand.js +3 -3
  31. package/dist-cjs/commands/UpdateEventActionCommand.js +3 -3
  32. package/dist-cjs/commands/UpdateRevisionCommand.js +3 -3
  33. package/dist-cjs/commands/index.js +1 -0
  34. package/dist-cjs/endpoints.js +1 -1
  35. package/dist-cjs/models/models_0.js +14 -2
  36. package/dist-cjs/protocols/Aws_restJson1.js +480 -301
  37. package/dist-cjs/runtimeConfig.browser.js +4 -4
  38. package/dist-cjs/runtimeConfig.js +9 -9
  39. package/dist-cjs/runtimeConfig.native.js +1 -1
  40. package/dist-es/DataExchange.js +43 -28
  41. package/dist-es/commands/RevokeRevisionCommand.js +39 -0
  42. package/dist-es/commands/index.js +1 -0
  43. package/dist-es/models/models_0.js +8 -0
  44. package/dist-es/pagination/ListDataSetRevisionsPaginator.js +4 -4
  45. package/dist-es/pagination/ListDataSetsPaginator.js +4 -4
  46. package/dist-es/pagination/ListEventActionsPaginator.js +4 -4
  47. package/dist-es/pagination/ListJobsPaginator.js +4 -4
  48. package/dist-es/pagination/ListRevisionAssetsPaginator.js +4 -4
  49. package/dist-es/protocols/Aws_restJson1.js +250 -43
  50. package/dist-types/DataExchange.d.ts +7 -0
  51. package/dist-types/DataExchangeClient.d.ts +5 -4
  52. package/dist-types/commands/RevokeRevisionCommand.d.ts +35 -0
  53. package/dist-types/commands/index.d.ts +1 -0
  54. package/dist-types/models/models_0.d.ts +124 -1
  55. package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
  56. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  57. package/dist-types/runtimeConfig.d.ts +1 -1
  58. package/dist-types/runtimeConfig.native.d.ts +3 -3
  59. package/dist-types/ts3.4/DataExchange.d.ts +5 -0
  60. package/dist-types/ts3.4/DataExchangeClient.d.ts +5 -4
  61. package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +17 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +65 -0
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
  65. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  66. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  67. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  68. package/package.json +34 -34
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
+ import { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0";
5
+ export interface RevokeRevisionCommandInput extends RevokeRevisionRequest {
6
+ }
7
+ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>This operation revokes subscribers' access to a revision.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { DataExchangeClient, RevokeRevisionCommand } from "@aws-sdk/client-dataexchange"; // ES Modules import
15
+ * // const { DataExchangeClient, RevokeRevisionCommand } = require("@aws-sdk/client-dataexchange"); // CommonJS import
16
+ * const client = new DataExchangeClient(config);
17
+ * const command = new RevokeRevisionCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link RevokeRevisionCommandInput} for command's `input` shape.
22
+ * @see {@link RevokeRevisionCommandOutput} for command's `response` shape.
23
+ * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class RevokeRevisionCommand extends $Command<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig> {
27
+ readonly input: RevokeRevisionCommandInput;
28
+ constructor(input: RevokeRevisionCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeRevisionCommandInput, RevokeRevisionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -18,6 +18,7 @@ export * from "./ListEventActionsCommand";
18
18
  export * from "./ListJobsCommand";
19
19
  export * from "./ListRevisionAssetsCommand";
20
20
  export * from "./ListTagsForResourceCommand";
21
+ export * from "./RevokeRevisionCommand";
21
22
  export * from "./SendApiAssetCommand";
22
23
  export * from "./StartJobCommand";
23
24
  export * from "./TagResourceCommand";
@@ -223,7 +223,7 @@ export declare enum AssetType {
223
223
  S3_SNAPSHOT = "S3_SNAPSHOT"
224
224
  }
225
225
  /**
226
- * <p>An asset in AWS Data Exchange is a piece of data (S3 object) or a means of fulfilling data (Amazon Redshift datashare or Amazon API Gateway API). The asset can be a structured data file, an image file, or some other data file that can be stored as an S3 object, an Amazon API Gateway API, or an Amazon Redshift datashare (Preview). When you create an import job for your files, API Gateway APIs, or Amazon Redshift datashares, you create an asset in AWS Data Exchange.</p>
226
+ * <p>An asset in AWS Data Exchange is a piece of data (S3 object) or a means of fulfilling data (Amazon Redshift datashare or Amazon API Gateway API). The asset can be a structured data file, an image file, or some other data file that can be stored as an S3 object, an Amazon API Gateway API, or an Amazon Redshift datashare. When you create an import job for your files, API Gateway APIs, or Amazon Redshift datashares, you create an asset in AWS Data Exchange.</p>
227
227
  */
228
228
  export interface AssetEntry {
229
229
  /**
@@ -1402,6 +1402,18 @@ export interface CreateRevisionResponse {
1402
1402
  * <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
1403
1403
  */
1404
1404
  UpdatedAt?: Date;
1405
+ /**
1406
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
1407
+ */
1408
+ RevocationComment?: string;
1409
+ /**
1410
+ * <p>A status indicating that subscribers' access to the revision was revoked.</p>
1411
+ */
1412
+ Revoked?: boolean;
1413
+ /**
1414
+ * <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
1415
+ */
1416
+ RevokedAt?: Date;
1405
1417
  }
1406
1418
  export declare namespace CreateRevisionResponse {
1407
1419
  /**
@@ -1754,6 +1766,18 @@ export interface GetRevisionResponse {
1754
1766
  * <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
1755
1767
  */
1756
1768
  UpdatedAt?: Date;
1769
+ /**
1770
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
1771
+ */
1772
+ RevocationComment?: string;
1773
+ /**
1774
+ * <p>A status indicating that subscribers' access to the revision was revoked.</p>
1775
+ */
1776
+ Revoked?: boolean;
1777
+ /**
1778
+ * <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
1779
+ */
1780
+ RevokedAt?: Date;
1757
1781
  }
1758
1782
  export declare namespace GetRevisionResponse {
1759
1783
  /**
@@ -1817,6 +1841,18 @@ export interface RevisionEntry {
1817
1841
  * <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
1818
1842
  */
1819
1843
  UpdatedAt: Date | undefined;
1844
+ /**
1845
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
1846
+ */
1847
+ RevocationComment?: string;
1848
+ /**
1849
+ * <p>A status indicating that subscribers' access to the revision was revoked.</p>
1850
+ */
1851
+ Revoked?: boolean;
1852
+ /**
1853
+ * <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
1854
+ */
1855
+ RevokedAt?: Date;
1820
1856
  }
1821
1857
  export declare namespace RevisionEntry {
1822
1858
  /**
@@ -2147,6 +2183,81 @@ export declare namespace ListTagsForResourceResponse {
2147
2183
  */
2148
2184
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2149
2185
  }
2186
+ /**
2187
+ * <p>The request body for RevokeRevision.</p>
2188
+ */
2189
+ export interface RevokeRevisionRequest {
2190
+ /**
2191
+ * <p>The unique identifier for a data set.</p>
2192
+ */
2193
+ DataSetId: string | undefined;
2194
+ /**
2195
+ * <p>The unique identifier for a revision.</p>
2196
+ */
2197
+ RevisionId: string | undefined;
2198
+ /**
2199
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
2200
+ */
2201
+ RevocationComment: string | undefined;
2202
+ }
2203
+ export declare namespace RevokeRevisionRequest {
2204
+ /**
2205
+ * @internal
2206
+ */
2207
+ const filterSensitiveLog: (obj: RevokeRevisionRequest) => any;
2208
+ }
2209
+ export interface RevokeRevisionResponse {
2210
+ /**
2211
+ * <p>The ARN for the revision.</p>
2212
+ */
2213
+ Arn?: string;
2214
+ /**
2215
+ * <p>An optional comment about the revision.</p>
2216
+ */
2217
+ Comment?: string;
2218
+ /**
2219
+ * <p>The date and time that the revision was created, in ISO 8601 format.</p>
2220
+ */
2221
+ CreatedAt?: Date;
2222
+ /**
2223
+ * <p>The unique identifier for the data set associated with this revision.</p>
2224
+ */
2225
+ DataSetId?: string;
2226
+ /**
2227
+ * <p>To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products.</p> <p>Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.</p>
2228
+ */
2229
+ Finalized?: boolean;
2230
+ /**
2231
+ * <p>The unique identifier for the revision.</p>
2232
+ */
2233
+ Id?: string;
2234
+ /**
2235
+ * <p>The revision ID of the owned revision corresponding to the entitled revision being viewed. This parameter is returned when a revision owner is viewing the entitled copy of its owned revision.</p>
2236
+ */
2237
+ SourceId?: string;
2238
+ /**
2239
+ * <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
2240
+ */
2241
+ UpdatedAt?: Date;
2242
+ /**
2243
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
2244
+ */
2245
+ RevocationComment?: string;
2246
+ /**
2247
+ * <p>A status indicating that subscribers' access to the revision was revoked.</p>
2248
+ */
2249
+ Revoked?: boolean;
2250
+ /**
2251
+ * <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
2252
+ */
2253
+ RevokedAt?: Date;
2254
+ }
2255
+ export declare namespace RevokeRevisionResponse {
2256
+ /**
2257
+ * @internal
2258
+ */
2259
+ const filterSensitiveLog: (obj: RevokeRevisionResponse) => any;
2260
+ }
2150
2261
  /**
2151
2262
  * <p>The request body for SendApiAsset.</p>
2152
2263
  */
@@ -2526,6 +2637,18 @@ export interface UpdateRevisionResponse {
2526
2637
  * <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
2527
2638
  */
2528
2639
  UpdatedAt?: Date;
2640
+ /**
2641
+ * <p>A required comment to inform subscribers of the reason their access to the revision was revoked.</p>
2642
+ */
2643
+ RevocationComment?: string;
2644
+ /**
2645
+ * <p>A status indicating that subscribers' access to the revision was revoked.</p>
2646
+ */
2647
+ Revoked?: boolean;
2648
+ /**
2649
+ * <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
2650
+ */
2651
+ RevokedAt?: Date;
2529
2652
  }
2530
2653
  export declare namespace UpdateRevisionResponse {
2531
2654
  /**
@@ -20,6 +20,7 @@ import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "../
20
20
  import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
21
21
  import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "../commands/ListRevisionAssetsCommand";
22
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "../commands/RevokeRevisionCommand";
23
24
  import { SendApiAssetCommandInput, SendApiAssetCommandOutput } from "../commands/SendApiAssetCommand";
24
25
  import { StartJobCommandInput, StartJobCommandOutput } from "../commands/StartJobCommand";
25
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -48,6 +49,7 @@ export declare const serializeAws_restJson1ListEventActionsCommand: (input: List
48
49
  export declare const serializeAws_restJson1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
50
  export declare const serializeAws_restJson1ListRevisionAssetsCommand: (input: ListRevisionAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
51
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_restJson1RevokeRevisionCommand: (input: RevokeRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
53
  export declare const serializeAws_restJson1SendApiAssetCommand: (input: SendApiAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
54
  export declare const serializeAws_restJson1StartJobCommand: (input: StartJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
55
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -76,6 +78,7 @@ export declare const deserializeAws_restJson1ListEventActionsCommand: (output: _
76
78
  export declare const deserializeAws_restJson1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
77
79
  export declare const deserializeAws_restJson1ListRevisionAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRevisionAssetsCommandOutput>;
78
80
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
81
+ export declare const deserializeAws_restJson1RevokeRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RevokeRevisionCommandOutput>;
79
82
  export declare const deserializeAws_restJson1SendApiAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendApiAssetCommandOutput>;
80
83
  export declare const deserializeAws_restJson1StartJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartJobCommandOutput>;
81
84
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
21
21
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
22
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
23
  serviceId: string;
24
- region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
28
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
29
29
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -19,6 +19,7 @@ import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "./c
19
19
  import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
20
20
  import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "./commands/ListRevisionAssetsCommand";
21
21
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
+ import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "./commands/RevokeRevisionCommand";
22
23
  import { SendApiAssetCommandInput, SendApiAssetCommandOutput } from "./commands/SendApiAssetCommand";
23
24
  import { StartJobCommandInput, StartJobCommandOutput } from "./commands/StartJobCommand";
24
25
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
@@ -111,6 +112,10 @@ export declare class DataExchange extends DataExchangeClient {
111
112
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
112
113
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
113
114
 
115
+ revokeRevision(args: RevokeRevisionCommandInput, options?: __HttpHandlerOptions): Promise<RevokeRevisionCommandOutput>;
116
+ revokeRevision(args: RevokeRevisionCommandInput, cb: (err: any, data?: RevokeRevisionCommandOutput) => void): void;
117
+ revokeRevision(args: RevokeRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeRevisionCommandOutput) => void): void;
118
+
114
119
  sendApiAsset(args: SendApiAssetCommandInput, options?: __HttpHandlerOptions): Promise<SendApiAssetCommandOutput>;
115
120
  sendApiAsset(args: SendApiAssetCommandInput, cb: (err: any, data?: SendApiAssetCommandOutput) => void): void;
116
121
  sendApiAsset(args: SendApiAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendApiAssetCommandOutput) => void): void;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
10
10
  import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "./commands/CreateDataSetCommand";
11
11
  import { CreateEventActionCommandInput, CreateEventActionCommandOutput } from "./commands/CreateEventActionCommand";
@@ -26,6 +26,7 @@ import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "./c
26
26
  import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
27
27
  import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "./commands/ListRevisionAssetsCommand";
28
28
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
29
+ import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "./commands/RevokeRevisionCommand";
29
30
  import { SendApiAssetCommandInput, SendApiAssetCommandOutput } from "./commands/SendApiAssetCommand";
30
31
  import { StartJobCommandInput, StartJobCommandOutput } from "./commands/StartJobCommand";
31
32
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
@@ -34,8 +35,8 @@ import { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "./commands/Up
34
35
  import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "./commands/UpdateDataSetCommand";
35
36
  import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from "./commands/UpdateEventActionCommand";
36
37
  import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "./commands/UpdateRevisionCommand";
37
- export declare type ServiceInputTypes = CancelJobCommandInput | CreateDataSetCommandInput | CreateEventActionCommandInput | CreateJobCommandInput | CreateRevisionCommandInput | DeleteAssetCommandInput | DeleteDataSetCommandInput | DeleteEventActionCommandInput | DeleteRevisionCommandInput | GetAssetCommandInput | GetDataSetCommandInput | GetEventActionCommandInput | GetJobCommandInput | GetRevisionCommandInput | ListDataSetRevisionsCommandInput | ListDataSetsCommandInput | ListEventActionsCommandInput | ListJobsCommandInput | ListRevisionAssetsCommandInput | ListTagsForResourceCommandInput | SendApiAssetCommandInput | StartJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssetCommandInput | UpdateDataSetCommandInput | UpdateEventActionCommandInput | UpdateRevisionCommandInput;
38
- export declare type ServiceOutputTypes = CancelJobCommandOutput | CreateDataSetCommandOutput | CreateEventActionCommandOutput | CreateJobCommandOutput | CreateRevisionCommandOutput | DeleteAssetCommandOutput | DeleteDataSetCommandOutput | DeleteEventActionCommandOutput | DeleteRevisionCommandOutput | GetAssetCommandOutput | GetDataSetCommandOutput | GetEventActionCommandOutput | GetJobCommandOutput | GetRevisionCommandOutput | ListDataSetRevisionsCommandOutput | ListDataSetsCommandOutput | ListEventActionsCommandOutput | ListJobsCommandOutput | ListRevisionAssetsCommandOutput | ListTagsForResourceCommandOutput | SendApiAssetCommandOutput | StartJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssetCommandOutput | UpdateDataSetCommandOutput | UpdateEventActionCommandOutput | UpdateRevisionCommandOutput;
38
+ export declare type ServiceInputTypes = CancelJobCommandInput | CreateDataSetCommandInput | CreateEventActionCommandInput | CreateJobCommandInput | CreateRevisionCommandInput | DeleteAssetCommandInput | DeleteDataSetCommandInput | DeleteEventActionCommandInput | DeleteRevisionCommandInput | GetAssetCommandInput | GetDataSetCommandInput | GetEventActionCommandInput | GetJobCommandInput | GetRevisionCommandInput | ListDataSetRevisionsCommandInput | ListDataSetsCommandInput | ListEventActionsCommandInput | ListJobsCommandInput | ListRevisionAssetsCommandInput | ListTagsForResourceCommandInput | RevokeRevisionCommandInput | SendApiAssetCommandInput | StartJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssetCommandInput | UpdateDataSetCommandInput | UpdateEventActionCommandInput | UpdateRevisionCommandInput;
39
+ export declare type ServiceOutputTypes = CancelJobCommandOutput | CreateDataSetCommandOutput | CreateEventActionCommandOutput | CreateJobCommandOutput | CreateRevisionCommandOutput | DeleteAssetCommandOutput | DeleteDataSetCommandOutput | DeleteEventActionCommandOutput | DeleteRevisionCommandOutput | GetAssetCommandOutput | GetDataSetCommandOutput | GetEventActionCommandOutput | GetJobCommandOutput | GetRevisionCommandOutput | ListDataSetRevisionsCommandOutput | ListDataSetsCommandOutput | ListEventActionsCommandOutput | ListJobsCommandOutput | ListRevisionAssetsCommandOutput | ListTagsForResourceCommandOutput | RevokeRevisionCommandOutput | SendApiAssetCommandOutput | StartJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssetCommandOutput | UpdateDataSetCommandOutput | UpdateEventActionCommandOutput | UpdateRevisionCommandOutput;
39
40
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
40
41
 
41
42
  requestHandler?: __HttpHandler;
@@ -44,7 +45,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
44
45
 
45
46
  urlParser?: __UrlParser;
46
47
 
47
- bodyLengthChecker?: (body: any) => number | undefined;
48
+ bodyLengthChecker?: __BodyLengthCalculator;
48
49
 
49
50
  streamCollector?: __StreamCollector;
50
51
 
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
+ import { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0";
5
+ export interface RevokeRevisionCommandInput extends RevokeRevisionRequest {
6
+ }
7
+ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RevokeRevisionCommand extends $Command<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig> {
11
+ readonly input: RevokeRevisionCommandInput;
12
+ constructor(input: RevokeRevisionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeRevisionCommandInput, RevokeRevisionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -18,6 +18,7 @@ export * from "./ListEventActionsCommand";
18
18
  export * from "./ListJobsCommand";
19
19
  export * from "./ListRevisionAssetsCommand";
20
20
  export * from "./ListTagsForResourceCommand";
21
+ export * from "./RevokeRevisionCommand";
21
22
  export * from "./SendApiAssetCommand";
22
23
  export * from "./StartJobCommand";
23
24
  export * from "./TagResourceCommand";
@@ -826,6 +826,12 @@ export interface CreateRevisionResponse {
826
826
  };
827
827
 
828
828
  UpdatedAt?: Date;
829
+
830
+ RevocationComment?: string;
831
+
832
+ Revoked?: boolean;
833
+
834
+ RevokedAt?: Date;
829
835
  }
830
836
  export declare namespace CreateRevisionResponse {
831
837
 
@@ -1032,6 +1038,12 @@ export interface GetRevisionResponse {
1032
1038
  };
1033
1039
 
1034
1040
  UpdatedAt?: Date;
1041
+
1042
+ RevocationComment?: string;
1043
+
1044
+ Revoked?: boolean;
1045
+
1046
+ RevokedAt?: Date;
1035
1047
  }
1036
1048
  export declare namespace GetRevisionResponse {
1037
1049
 
@@ -1067,6 +1079,12 @@ export interface RevisionEntry {
1067
1079
  SourceId?: string;
1068
1080
 
1069
1081
  UpdatedAt: Date | undefined;
1082
+
1083
+ RevocationComment?: string;
1084
+
1085
+ Revoked?: boolean;
1086
+
1087
+ RevokedAt?: Date;
1070
1088
  }
1071
1089
  export declare namespace RevisionEntry {
1072
1090
 
@@ -1262,6 +1280,47 @@ export declare namespace ListTagsForResourceResponse {
1262
1280
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1263
1281
  }
1264
1282
 
1283
+ export interface RevokeRevisionRequest {
1284
+
1285
+ DataSetId: string | undefined;
1286
+
1287
+ RevisionId: string | undefined;
1288
+
1289
+ RevocationComment: string | undefined;
1290
+ }
1291
+ export declare namespace RevokeRevisionRequest {
1292
+
1293
+ const filterSensitiveLog: (obj: RevokeRevisionRequest) => any;
1294
+ }
1295
+ export interface RevokeRevisionResponse {
1296
+
1297
+ Arn?: string;
1298
+
1299
+ Comment?: string;
1300
+
1301
+ CreatedAt?: Date;
1302
+
1303
+ DataSetId?: string;
1304
+
1305
+ Finalized?: boolean;
1306
+
1307
+ Id?: string;
1308
+
1309
+ SourceId?: string;
1310
+
1311
+ UpdatedAt?: Date;
1312
+
1313
+ RevocationComment?: string;
1314
+
1315
+ Revoked?: boolean;
1316
+
1317
+ RevokedAt?: Date;
1318
+ }
1319
+ export declare namespace RevokeRevisionResponse {
1320
+
1321
+ const filterSensitiveLog: (obj: RevokeRevisionResponse) => any;
1322
+ }
1323
+
1265
1324
  export interface SendApiAssetRequest {
1266
1325
 
1267
1326
  Body?: string;
@@ -1478,6 +1537,12 @@ export interface UpdateRevisionResponse {
1478
1537
  SourceId?: string;
1479
1538
 
1480
1539
  UpdatedAt?: Date;
1540
+
1541
+ RevocationComment?: string;
1542
+
1543
+ Revoked?: boolean;
1544
+
1545
+ RevokedAt?: Date;
1481
1546
  }
1482
1547
  export declare namespace UpdateRevisionResponse {
1483
1548
 
@@ -20,6 +20,7 @@ import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "../
20
20
  import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
21
21
  import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "../commands/ListRevisionAssetsCommand";
22
22
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "../commands/RevokeRevisionCommand";
23
24
  import { SendApiAssetCommandInput, SendApiAssetCommandOutput } from "../commands/SendApiAssetCommand";
24
25
  import { StartJobCommandInput, StartJobCommandOutput } from "../commands/StartJobCommand";
25
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -48,6 +49,7 @@ export declare const serializeAws_restJson1ListEventActionsCommand: (input: List
48
49
  export declare const serializeAws_restJson1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
50
  export declare const serializeAws_restJson1ListRevisionAssetsCommand: (input: ListRevisionAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
51
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_restJson1RevokeRevisionCommand: (input: RevokeRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
53
  export declare const serializeAws_restJson1SendApiAssetCommand: (input: SendApiAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
54
  export declare const serializeAws_restJson1StartJobCommand: (input: StartJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
55
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -76,6 +78,7 @@ export declare const deserializeAws_restJson1ListEventActionsCommand: (output: _
76
78
  export declare const deserializeAws_restJson1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
77
79
  export declare const deserializeAws_restJson1ListRevisionAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRevisionAssetsCommandOutput>;
78
80
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
81
+ export declare const deserializeAws_restJson1RevokeRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RevokeRevisionCommandOutput>;
79
82
  export declare const deserializeAws_restJson1SendApiAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendApiAssetCommandOutput>;
80
83
  export declare const deserializeAws_restJson1StartJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartJobCommandOutput>;
81
84
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
19
19
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
21
  serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
22
+ region: string | import("@aws-sdk/types").Provider<any>;
23
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
27
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
28
  tls?: boolean | undefined;
29
29
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
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.53.0",
4
+ "version": "3.55.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",
@@ -18,47 +18,47 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.53.0",
22
- "@aws-sdk/config-resolver": "3.53.0",
23
- "@aws-sdk/credential-provider-node": "3.53.0",
24
- "@aws-sdk/fetch-http-handler": "3.53.0",
25
- "@aws-sdk/hash-node": "3.53.0",
26
- "@aws-sdk/invalid-dependency": "3.53.0",
27
- "@aws-sdk/middleware-content-length": "3.53.0",
28
- "@aws-sdk/middleware-host-header": "3.53.0",
29
- "@aws-sdk/middleware-logger": "3.53.0",
30
- "@aws-sdk/middleware-retry": "3.53.0",
31
- "@aws-sdk/middleware-serde": "3.53.0",
32
- "@aws-sdk/middleware-signing": "3.53.0",
33
- "@aws-sdk/middleware-stack": "3.53.0",
34
- "@aws-sdk/middleware-user-agent": "3.53.0",
35
- "@aws-sdk/node-config-provider": "3.53.0",
36
- "@aws-sdk/node-http-handler": "3.53.0",
37
- "@aws-sdk/protocol-http": "3.53.0",
38
- "@aws-sdk/smithy-client": "3.53.0",
39
- "@aws-sdk/types": "3.53.0",
40
- "@aws-sdk/url-parser": "3.53.0",
41
- "@aws-sdk/util-base64-browser": "3.52.0",
42
- "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
- "@aws-sdk/util-user-agent-browser": "3.53.0",
48
- "@aws-sdk/util-user-agent-node": "3.53.0",
49
- "@aws-sdk/util-utf8-browser": "3.52.0",
50
- "@aws-sdk/util-utf8-node": "3.52.0",
51
- "tslib": "^2.3.0"
21
+ "@aws-sdk/client-sts": "3.55.0",
22
+ "@aws-sdk/config-resolver": "3.55.0",
23
+ "@aws-sdk/credential-provider-node": "3.55.0",
24
+ "@aws-sdk/fetch-http-handler": "3.55.0",
25
+ "@aws-sdk/hash-node": "3.55.0",
26
+ "@aws-sdk/invalid-dependency": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.55.0",
28
+ "@aws-sdk/middleware-host-header": "3.55.0",
29
+ "@aws-sdk/middleware-logger": "3.55.0",
30
+ "@aws-sdk/middleware-retry": "3.55.0",
31
+ "@aws-sdk/middleware-serde": "3.55.0",
32
+ "@aws-sdk/middleware-signing": "3.55.0",
33
+ "@aws-sdk/middleware-stack": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.55.0",
35
+ "@aws-sdk/node-config-provider": "3.55.0",
36
+ "@aws-sdk/node-http-handler": "3.55.0",
37
+ "@aws-sdk/protocol-http": "3.55.0",
38
+ "@aws-sdk/smithy-client": "3.55.0",
39
+ "@aws-sdk/types": "3.55.0",
40
+ "@aws-sdk/url-parser": "3.55.0",
41
+ "@aws-sdk/util-base64-browser": "3.55.0",
42
+ "@aws-sdk/util-base64-node": "3.55.0",
43
+ "@aws-sdk/util-body-length-browser": "3.55.0",
44
+ "@aws-sdk/util-body-length-node": "3.55.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.55.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.55.0",
48
+ "@aws-sdk/util-user-agent-node": "3.55.0",
49
+ "@aws-sdk/util-utf8-browser": "3.55.0",
50
+ "@aws-sdk/util-utf8-node": "3.55.0",
51
+ "tslib": "^2.3.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.52.0",
54
+ "@aws-sdk/service-client-documentation-generator": "3.55.0",
55
55
  "@tsconfig/recommended": "1.0.1",
56
56
  "@types/node": "^12.7.5",
57
57
  "concurrently": "7.0.0",
58
58
  "downlevel-dts": "0.7.0",
59
59
  "rimraf": "3.0.2",
60
60
  "typedoc": "0.19.2",
61
- "typescript": "~4.3.5"
61
+ "typescript": "~4.6.2"
62
62
  },
63
63
  "engines": {
64
64
  "node": ">=12.0.0"