@aws-sdk/client-kinesis 3.43.0 → 3.47.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 (56) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +2 -2
  3. package/dist-cjs/Kinesis.js +15 -0
  4. package/dist-cjs/commands/UpdateStreamModeCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +1 -0
  6. package/dist-cjs/endpoints.js +1 -16
  7. package/dist-cjs/models/models_0.js +28 -95
  8. package/dist-cjs/protocols/Aws_json1_1.js +151 -2
  9. package/dist-cjs/runtimeConfig.browser.js +7 -2
  10. package/dist-cjs/runtimeConfig.js +9 -3
  11. package/dist-es/Kinesis.js +15 -0
  12. package/dist-es/commands/UpdateStreamModeCommand.js +39 -0
  13. package/dist-es/commands/index.js +1 -0
  14. package/dist-es/endpoints.js +1 -16
  15. package/dist-es/models/models_0.js +22 -65
  16. package/dist-es/protocols/Aws_json1_1.js +189 -35
  17. package/dist-es/runtimeConfig.browser.js +12 -3
  18. package/dist-es/runtimeConfig.js +13 -6
  19. package/dist-types/Kinesis.d.ts +165 -143
  20. package/dist-types/KinesisClient.d.ts +10 -5
  21. package/dist-types/commands/AddTagsToStreamCommand.d.ts +2 -4
  22. package/dist-types/commands/CreateStreamCommand.d.ts +19 -19
  23. package/dist-types/commands/DecreaseStreamRetentionPeriodCommand.d.ts +5 -5
  24. package/dist-types/commands/DeleteStreamCommand.d.ts +5 -4
  25. package/dist-types/commands/DescribeStreamCommand.d.ts +5 -1
  26. package/dist-types/commands/DescribeStreamSummaryCommand.d.ts +5 -5
  27. package/dist-types/commands/GetRecordsCommand.d.ts +29 -19
  28. package/dist-types/commands/GetShardIteratorCommand.d.ts +7 -7
  29. package/dist-types/commands/IncreaseStreamRetentionPeriodCommand.d.ts +3 -3
  30. package/dist-types/commands/ListShardsCommand.d.ts +4 -2
  31. package/dist-types/commands/ListStreamsCommand.d.ts +1 -1
  32. package/dist-types/commands/MergeShardsCommand.d.ts +5 -5
  33. package/dist-types/commands/PutRecordCommand.d.ts +8 -8
  34. package/dist-types/commands/PutRecordsCommand.d.ts +7 -7
  35. package/dist-types/commands/SplitShardCommand.d.ts +17 -19
  36. package/dist-types/commands/StartStreamEncryptionCommand.d.ts +10 -10
  37. package/dist-types/commands/StopStreamEncryptionCommand.d.ts +8 -9
  38. package/dist-types/commands/SubscribeToShardCommand.d.ts +3 -2
  39. package/dist-types/commands/UpdateShardCountCommand.d.ts +10 -11
  40. package/dist-types/commands/UpdateStreamModeCommand.d.ts +38 -0
  41. package/dist-types/commands/index.d.ts +1 -0
  42. package/dist-types/models/models_0.d.ts +327 -236
  43. package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
  44. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  45. package/dist-types/runtimeConfig.d.ts +4 -3
  46. package/dist-types/runtimeConfig.native.d.ts +1 -0
  47. package/dist-types/ts3.4/Kinesis.d.ts +5 -0
  48. package/dist-types/ts3.4/KinesisClient.d.ts +6 -3
  49. package/dist-types/ts3.4/commands/UpdateStreamModeCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +50 -57
  52. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +3 -0
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  56. package/package.json +42 -49
@@ -28,6 +28,7 @@ import { StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput }
28
28
  import { StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput } from "../commands/StopStreamEncryptionCommand";
29
29
  import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "../commands/SubscribeToShardCommand";
30
30
  import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "../commands/UpdateShardCountCommand";
31
+ import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "../commands/UpdateStreamModeCommand";
31
32
  export declare const serializeAws_json1_1AddTagsToStreamCommand: (input: AddTagsToStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
33
  export declare const serializeAws_json1_1CreateStreamCommand: (input: CreateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
34
  export declare const serializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (input: DecreaseStreamRetentionPeriodCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -56,6 +57,7 @@ export declare const serializeAws_json1_1StartStreamEncryptionCommand: (input: S
56
57
  export declare const serializeAws_json1_1StopStreamEncryptionCommand: (input: StopStreamEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
58
  export declare const serializeAws_json1_1SubscribeToShardCommand: (input: SubscribeToShardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
59
  export declare const serializeAws_json1_1UpdateShardCountCommand: (input: UpdateShardCountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ export declare const serializeAws_json1_1UpdateStreamModeCommand: (input: UpdateStreamModeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
61
  export declare const deserializeAws_json1_1AddTagsToStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddTagsToStreamCommandOutput>;
60
62
  export declare const deserializeAws_json1_1CreateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamCommandOutput>;
61
63
  export declare const deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DecreaseStreamRetentionPeriodCommandOutput>;
@@ -84,3 +86,4 @@ export declare const deserializeAws_json1_1StartStreamEncryptionCommand: (output
84
86
  export declare const deserializeAws_json1_1StopStreamEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamEncryptionCommandOutput>;
85
87
  export declare const deserializeAws_json1_1SubscribeToShardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeToShardCommandOutput>;
86
88
  export declare const deserializeAws_json1_1UpdateShardCountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateShardCountCommandOutput>;
89
+ export declare const deserializeAws_json1_1UpdateStreamModeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamModeCommandOutput>;
@@ -1,10 +1,11 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { KinesisClientConfig } from "./KinesisClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
@@ -13,7 +14,7 @@ export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
13
14
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
14
15
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
15
16
  region: string | import("@aws-sdk/types").Provider<any>;
16
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
17
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
17
18
  retryMode: string | import("@aws-sdk/types").Provider<string>;
18
19
  sha256: import("@aws-sdk/types").HashConstructor;
19
20
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,19 +1,20 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { KinesisClientConfig } from "./KinesisClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
14
15
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
15
16
  region: string | import("@aws-sdk/types").Provider<string>;
16
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
17
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
17
18
  retryMode: string | import("@aws-sdk/types").Provider<string>;
18
19
  sha256: import("@aws-sdk/types").HashConstructor;
19
20
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
28
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
29
+ 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>;
29
30
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
30
31
  tls?: boolean | undefined;
31
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -27,6 +27,7 @@ import { StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput }
27
27
  import { StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput } from "./commands/StopStreamEncryptionCommand";
28
28
  import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "./commands/SubscribeToShardCommand";
29
29
  import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "./commands/UpdateShardCountCommand";
30
+ import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "./commands/UpdateStreamModeCommand";
30
31
  import { KinesisClient } from "./KinesisClient";
31
32
 
32
33
  export declare class Kinesis extends KinesisClient {
@@ -142,4 +143,8 @@ export declare class Kinesis extends KinesisClient {
142
143
  updateShardCount(args: UpdateShardCountCommandInput, options?: __HttpHandlerOptions): Promise<UpdateShardCountCommandOutput>;
143
144
  updateShardCount(args: UpdateShardCountCommandInput, cb: (err: any, data?: UpdateShardCountCommandOutput) => void): void;
144
145
  updateShardCount(args: UpdateShardCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateShardCountCommandOutput) => void): void;
146
+
147
+ updateStreamMode(args: UpdateStreamModeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStreamModeCommandOutput>;
148
+ updateStreamMode(args: UpdateStreamModeCommandInput, cb: (err: any, data?: UpdateStreamModeCommandOutput) => void): void;
149
+ updateStreamMode(args: UpdateStreamModeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStreamModeCommandOutput) => void): void;
145
150
  }
@@ -5,7 +5,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
5
5
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
- import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
9
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, 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";
10
10
  import { AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput } from "./commands/AddTagsToStreamCommand";
11
11
  import { CreateStreamCommandInput, CreateStreamCommandOutput } from "./commands/CreateStreamCommand";
@@ -35,8 +35,9 @@ import { StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput }
35
35
  import { StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput } from "./commands/StopStreamEncryptionCommand";
36
36
  import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "./commands/SubscribeToShardCommand";
37
37
  import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "./commands/UpdateShardCountCommand";
38
- export declare type ServiceInputTypes = AddTagsToStreamCommandInput | CreateStreamCommandInput | DecreaseStreamRetentionPeriodCommandInput | DeleteStreamCommandInput | DeregisterStreamConsumerCommandInput | DescribeLimitsCommandInput | DescribeStreamCommandInput | DescribeStreamConsumerCommandInput | DescribeStreamSummaryCommandInput | DisableEnhancedMonitoringCommandInput | EnableEnhancedMonitoringCommandInput | GetRecordsCommandInput | GetShardIteratorCommandInput | IncreaseStreamRetentionPeriodCommandInput | ListShardsCommandInput | ListStreamConsumersCommandInput | ListStreamsCommandInput | ListTagsForStreamCommandInput | MergeShardsCommandInput | PutRecordCommandInput | PutRecordsCommandInput | RegisterStreamConsumerCommandInput | RemoveTagsFromStreamCommandInput | SplitShardCommandInput | StartStreamEncryptionCommandInput | StopStreamEncryptionCommandInput | SubscribeToShardCommandInput | UpdateShardCountCommandInput;
39
- export declare type ServiceOutputTypes = AddTagsToStreamCommandOutput | CreateStreamCommandOutput | DecreaseStreamRetentionPeriodCommandOutput | DeleteStreamCommandOutput | DeregisterStreamConsumerCommandOutput | DescribeLimitsCommandOutput | DescribeStreamCommandOutput | DescribeStreamConsumerCommandOutput | DescribeStreamSummaryCommandOutput | DisableEnhancedMonitoringCommandOutput | EnableEnhancedMonitoringCommandOutput | GetRecordsCommandOutput | GetShardIteratorCommandOutput | IncreaseStreamRetentionPeriodCommandOutput | ListShardsCommandOutput | ListStreamConsumersCommandOutput | ListStreamsCommandOutput | ListTagsForStreamCommandOutput | MergeShardsCommandOutput | PutRecordCommandOutput | PutRecordsCommandOutput | RegisterStreamConsumerCommandOutput | RemoveTagsFromStreamCommandOutput | SplitShardCommandOutput | StartStreamEncryptionCommandOutput | StopStreamEncryptionCommandOutput | SubscribeToShardCommandOutput | UpdateShardCountCommandOutput;
38
+ import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "./commands/UpdateStreamModeCommand";
39
+ export declare type ServiceInputTypes = AddTagsToStreamCommandInput | CreateStreamCommandInput | DecreaseStreamRetentionPeriodCommandInput | DeleteStreamCommandInput | DeregisterStreamConsumerCommandInput | DescribeLimitsCommandInput | DescribeStreamCommandInput | DescribeStreamConsumerCommandInput | DescribeStreamSummaryCommandInput | DisableEnhancedMonitoringCommandInput | EnableEnhancedMonitoringCommandInput | GetRecordsCommandInput | GetShardIteratorCommandInput | IncreaseStreamRetentionPeriodCommandInput | ListShardsCommandInput | ListStreamConsumersCommandInput | ListStreamsCommandInput | ListTagsForStreamCommandInput | MergeShardsCommandInput | PutRecordCommandInput | PutRecordsCommandInput | RegisterStreamConsumerCommandInput | RemoveTagsFromStreamCommandInput | SplitShardCommandInput | StartStreamEncryptionCommandInput | StopStreamEncryptionCommandInput | SubscribeToShardCommandInput | UpdateShardCountCommandInput | UpdateStreamModeCommandInput;
40
+ export declare type ServiceOutputTypes = AddTagsToStreamCommandOutput | CreateStreamCommandOutput | DecreaseStreamRetentionPeriodCommandOutput | DeleteStreamCommandOutput | DeregisterStreamConsumerCommandOutput | DescribeLimitsCommandOutput | DescribeStreamCommandOutput | DescribeStreamConsumerCommandOutput | DescribeStreamSummaryCommandOutput | DisableEnhancedMonitoringCommandOutput | EnableEnhancedMonitoringCommandOutput | GetRecordsCommandOutput | GetShardIteratorCommandOutput | IncreaseStreamRetentionPeriodCommandOutput | ListShardsCommandOutput | ListStreamConsumersCommandOutput | ListStreamsCommandOutput | ListTagsForStreamCommandOutput | MergeShardsCommandOutput | PutRecordCommandOutput | PutRecordsCommandOutput | RegisterStreamConsumerCommandOutput | RemoveTagsFromStreamCommandOutput | SplitShardCommandOutput | StartStreamEncryptionCommandOutput | StopStreamEncryptionCommandOutput | SubscribeToShardCommandOutput | UpdateShardCountCommandOutput | UpdateStreamModeCommandOutput;
40
41
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
41
42
 
42
43
  requestHandler?: __HttpHandler;
@@ -82,6 +83,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
82
83
  defaultUserAgentProvider?: Provider<__UserAgent>;
83
84
 
84
85
  eventStreamSerdeProvider?: __EventStreamSerdeProvider;
86
+
87
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
85
88
  }
86
89
  declare type KinesisClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig;
87
90
 
@@ -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 { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient";
4
+ import { UpdateStreamModeInput } from "../models/models_0";
5
+ export interface UpdateStreamModeCommandInput extends UpdateStreamModeInput {
6
+ }
7
+ export interface UpdateStreamModeCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateStreamModeCommand extends $Command<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput, KinesisClientResolvedConfig> {
11
+ readonly input: UpdateStreamModeCommandInput;
12
+ constructor(input: UpdateStreamModeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -26,3 +26,4 @@ export * from "./StartStreamEncryptionCommand";
26
26
  export * from "./StopStreamEncryptionCommand";
27
27
  export * from "./SubscribeToShardCommand";
28
28
  export * from "./UpdateShardCountCommand";
29
+ export * from "./UpdateStreamModeCommand";
@@ -19,10 +19,6 @@ export interface InvalidArgumentException extends __SmithyException, $MetadataBe
19
19
 
20
20
  message?: string;
21
21
  }
22
- export declare namespace InvalidArgumentException {
23
-
24
- const filterSensitiveLog: (obj: InvalidArgumentException) => any;
25
- }
26
22
 
27
23
  export interface LimitExceededException extends __SmithyException, $MetadataBearer {
28
24
  name: "LimitExceededException";
@@ -30,10 +26,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
30
26
 
31
27
  message?: string;
32
28
  }
33
- export declare namespace LimitExceededException {
34
-
35
- const filterSensitiveLog: (obj: LimitExceededException) => any;
36
- }
37
29
 
38
30
  export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
39
31
  name: "ResourceInUseException";
@@ -41,10 +33,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
41
33
 
42
34
  message?: string;
43
35
  }
44
- export declare namespace ResourceInUseException {
45
-
46
- const filterSensitiveLog: (obj: ResourceInUseException) => any;
47
- }
48
36
 
49
37
  export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
50
38
  name: "ResourceNotFoundException";
@@ -52,10 +40,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
52
40
 
53
41
  message?: string;
54
42
  }
55
- export declare namespace ResourceNotFoundException {
56
-
57
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
58
- }
59
43
 
60
44
  export interface HashKeyRange {
61
45
 
@@ -67,8 +51,11 @@ export declare namespace HashKeyRange {
67
51
 
68
52
  const filterSensitiveLog: (obj: HashKeyRange) => any;
69
53
  }
54
+
70
55
  export interface ChildShard {
56
+
71
57
  ShardId: string | undefined;
58
+
72
59
  ParentShards: string[] | undefined;
73
60
 
74
61
  HashKeyRange: HashKeyRange | undefined;
@@ -114,12 +101,27 @@ export declare namespace ConsumerDescription {
114
101
 
115
102
  const filterSensitiveLog: (obj: ConsumerDescription) => any;
116
103
  }
104
+ export declare enum StreamMode {
105
+ ON_DEMAND = "ON_DEMAND",
106
+ PROVISIONED = "PROVISIONED"
107
+ }
108
+
109
+ export interface StreamModeDetails {
110
+
111
+ StreamMode: StreamMode | string | undefined;
112
+ }
113
+ export declare namespace StreamModeDetails {
114
+
115
+ const filterSensitiveLog: (obj: StreamModeDetails) => any;
116
+ }
117
117
 
118
118
  export interface CreateStreamInput {
119
119
 
120
120
  StreamName: string | undefined;
121
121
 
122
- ShardCount: number | undefined;
122
+ ShardCount?: number;
123
+
124
+ StreamModeDetails?: StreamModeDetails;
123
125
  }
124
126
  export declare namespace CreateStreamInput {
125
127
 
@@ -170,6 +172,10 @@ export interface DescribeLimitsOutput {
170
172
  ShardLimit: number | undefined;
171
173
 
172
174
  OpenShardCount: number | undefined;
175
+
176
+ OnDemandStreamCount: number | undefined;
177
+
178
+ OnDemandStreamCountLimit: number | undefined;
173
179
  }
174
180
  export declare namespace DescribeLimitsOutput {
175
181
 
@@ -254,6 +260,8 @@ export interface StreamDescription {
254
260
 
255
261
  StreamStatus: StreamStatus | string | undefined;
256
262
 
263
+ StreamModeDetails?: StreamModeDetails;
264
+
257
265
  Shards: Shard[] | undefined;
258
266
 
259
267
  HasMoreShards: boolean | undefined;
@@ -318,6 +326,8 @@ export interface StreamDescriptionSummary {
318
326
 
319
327
  StreamStatus: StreamStatus | string | undefined;
320
328
 
329
+ StreamModeDetails?: StreamModeDetails;
330
+
321
331
  RetentionPeriodHours: number | undefined;
322
332
 
323
333
  StreamCreationTimestamp: Date | undefined;
@@ -386,20 +396,12 @@ export interface ExpiredIteratorException extends __SmithyException, $MetadataBe
386
396
 
387
397
  message?: string;
388
398
  }
389
- export declare namespace ExpiredIteratorException {
390
-
391
- const filterSensitiveLog: (obj: ExpiredIteratorException) => any;
392
- }
393
399
 
394
400
  export interface ExpiredNextTokenException extends __SmithyException, $MetadataBearer {
395
401
  name: "ExpiredNextTokenException";
396
402
  $fault: "client";
397
403
  message?: string;
398
404
  }
399
- export declare namespace ExpiredNextTokenException {
400
-
401
- const filterSensitiveLog: (obj: ExpiredNextTokenException) => any;
402
- }
403
405
 
404
406
  export interface GetRecordsInput {
405
407
 
@@ -436,6 +438,7 @@ export interface GetRecordsOutput {
436
438
  NextShardIterator?: string;
437
439
 
438
440
  MillisBehindLatest?: number;
441
+
439
442
  ChildShards?: ChildShard[];
440
443
  }
441
444
  export declare namespace GetRecordsOutput {
@@ -449,10 +452,6 @@ export interface KMSAccessDeniedException extends __SmithyException, $MetadataBe
449
452
 
450
453
  message?: string;
451
454
  }
452
- export declare namespace KMSAccessDeniedException {
453
-
454
- const filterSensitiveLog: (obj: KMSAccessDeniedException) => any;
455
- }
456
455
 
457
456
  export interface KMSDisabledException extends __SmithyException, $MetadataBearer {
458
457
  name: "KMSDisabledException";
@@ -460,10 +459,6 @@ export interface KMSDisabledException extends __SmithyException, $MetadataBearer
460
459
 
461
460
  message?: string;
462
461
  }
463
- export declare namespace KMSDisabledException {
464
-
465
- const filterSensitiveLog: (obj: KMSDisabledException) => any;
466
- }
467
462
 
468
463
  export interface KMSInvalidStateException extends __SmithyException, $MetadataBearer {
469
464
  name: "KMSInvalidStateException";
@@ -471,10 +466,6 @@ export interface KMSInvalidStateException extends __SmithyException, $MetadataBe
471
466
 
472
467
  message?: string;
473
468
  }
474
- export declare namespace KMSInvalidStateException {
475
-
476
- const filterSensitiveLog: (obj: KMSInvalidStateException) => any;
477
- }
478
469
 
479
470
  export interface KMSNotFoundException extends __SmithyException, $MetadataBearer {
480
471
  name: "KMSNotFoundException";
@@ -482,10 +473,6 @@ export interface KMSNotFoundException extends __SmithyException, $MetadataBearer
482
473
 
483
474
  message?: string;
484
475
  }
485
- export declare namespace KMSNotFoundException {
486
-
487
- const filterSensitiveLog: (obj: KMSNotFoundException) => any;
488
- }
489
476
 
490
477
  export interface KMSOptInRequired extends __SmithyException, $MetadataBearer {
491
478
  name: "KMSOptInRequired";
@@ -493,10 +480,6 @@ export interface KMSOptInRequired extends __SmithyException, $MetadataBearer {
493
480
 
494
481
  message?: string;
495
482
  }
496
- export declare namespace KMSOptInRequired {
497
-
498
- const filterSensitiveLog: (obj: KMSOptInRequired) => any;
499
- }
500
483
 
501
484
  export interface KMSThrottlingException extends __SmithyException, $MetadataBearer {
502
485
  name: "KMSThrottlingException";
@@ -504,10 +487,6 @@ export interface KMSThrottlingException extends __SmithyException, $MetadataBear
504
487
 
505
488
  message?: string;
506
489
  }
507
- export declare namespace KMSThrottlingException {
508
-
509
- const filterSensitiveLog: (obj: KMSThrottlingException) => any;
510
- }
511
490
 
512
491
  export interface ProvisionedThroughputExceededException extends __SmithyException, $MetadataBearer {
513
492
  name: "ProvisionedThroughputExceededException";
@@ -515,10 +494,6 @@ export interface ProvisionedThroughputExceededException extends __SmithyExceptio
515
494
 
516
495
  message?: string;
517
496
  }
518
- export declare namespace ProvisionedThroughputExceededException {
519
-
520
- const filterSensitiveLog: (obj: ProvisionedThroughputExceededException) => any;
521
- }
522
497
  export declare enum ShardIteratorType {
523
498
  AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
524
499
  AT_SEQUENCE_NUMBER = "AT_SEQUENCE_NUMBER",
@@ -569,10 +544,6 @@ export interface InternalFailureException extends __SmithyException {
569
544
  $fault: "server";
570
545
  message?: string;
571
546
  }
572
- export declare namespace InternalFailureException {
573
-
574
- const filterSensitiveLog: (obj: InternalFailureException) => any;
575
- }
576
547
  export declare enum ShardFilterType {
577
548
  AFTER_SHARD_ID = "AFTER_SHARD_ID",
578
549
  AT_LATEST = "AT_LATEST",
@@ -581,9 +552,13 @@ export declare enum ShardFilterType {
581
552
  FROM_TIMESTAMP = "FROM_TIMESTAMP",
582
553
  FROM_TRIM_HORIZON = "FROM_TRIM_HORIZON"
583
554
  }
555
+
584
556
  export interface ShardFilter {
557
+
585
558
  Type: ShardFilterType | string | undefined;
559
+
586
560
  ShardId?: string;
561
+
587
562
  Timestamp?: Date;
588
563
  }
589
564
  export declare namespace ShardFilter {
@@ -601,6 +576,7 @@ export interface ListShardsInput {
601
576
  MaxResults?: number;
602
577
 
603
578
  StreamCreationTimestamp?: Date;
579
+
604
580
  ShardFilter?: ShardFilter;
605
581
  }
606
582
  export declare namespace ListShardsInput {
@@ -712,6 +688,12 @@ export declare namespace MergeShardsInput {
712
688
  const filterSensitiveLog: (obj: MergeShardsInput) => any;
713
689
  }
714
690
 
691
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
692
+ name: "ValidationException";
693
+ $fault: "client";
694
+ message?: string;
695
+ }
696
+
715
697
  export interface PutRecordInput {
716
698
 
717
699
  StreamName: string | undefined;
@@ -892,6 +874,7 @@ export interface SubscribeToShardEvent {
892
874
  ContinuationSequenceNumber: string | undefined;
893
875
 
894
876
  MillisBehindLatest: number | undefined;
877
+
895
878
  ChildShards?: ChildShard[];
896
879
  }
897
880
  export declare namespace SubscribeToShardEvent {
@@ -1109,3 +1092,13 @@ export declare namespace UpdateShardCountOutput {
1109
1092
 
1110
1093
  const filterSensitiveLog: (obj: UpdateShardCountOutput) => any;
1111
1094
  }
1095
+ export interface UpdateStreamModeInput {
1096
+
1097
+ StreamARN: string | undefined;
1098
+
1099
+ StreamModeDetails: StreamModeDetails | undefined;
1100
+ }
1101
+ export declare namespace UpdateStreamModeInput {
1102
+
1103
+ const filterSensitiveLog: (obj: UpdateStreamModeInput) => any;
1104
+ }
@@ -28,6 +28,7 @@ import { StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput }
28
28
  import { StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput } from "../commands/StopStreamEncryptionCommand";
29
29
  import { SubscribeToShardCommandInput, SubscribeToShardCommandOutput } from "../commands/SubscribeToShardCommand";
30
30
  import { UpdateShardCountCommandInput, UpdateShardCountCommandOutput } from "../commands/UpdateShardCountCommand";
31
+ import { UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput } from "../commands/UpdateStreamModeCommand";
31
32
  export declare const serializeAws_json1_1AddTagsToStreamCommand: (input: AddTagsToStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
33
  export declare const serializeAws_json1_1CreateStreamCommand: (input: CreateStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
34
  export declare const serializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (input: DecreaseStreamRetentionPeriodCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -56,6 +57,7 @@ export declare const serializeAws_json1_1StartStreamEncryptionCommand: (input: S
56
57
  export declare const serializeAws_json1_1StopStreamEncryptionCommand: (input: StopStreamEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
58
  export declare const serializeAws_json1_1SubscribeToShardCommand: (input: SubscribeToShardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
59
  export declare const serializeAws_json1_1UpdateShardCountCommand: (input: UpdateShardCountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ export declare const serializeAws_json1_1UpdateStreamModeCommand: (input: UpdateStreamModeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
61
  export declare const deserializeAws_json1_1AddTagsToStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddTagsToStreamCommandOutput>;
60
62
  export declare const deserializeAws_json1_1CreateStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamCommandOutput>;
61
63
  export declare const deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DecreaseStreamRetentionPeriodCommandOutput>;
@@ -84,3 +86,4 @@ export declare const deserializeAws_json1_1StartStreamEncryptionCommand: (output
84
86
  export declare const deserializeAws_json1_1StopStreamEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamEncryptionCommandOutput>;
85
87
  export declare const deserializeAws_json1_1SubscribeToShardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeToShardCommandOutput>;
86
88
  export declare const deserializeAws_json1_1UpdateShardCountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateShardCountCommandOutput>;
89
+ export declare const deserializeAws_json1_1UpdateStreamModeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamModeCommandOutput>;
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { KinesisClientConfig } from "./KinesisClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -11,7 +12,7 @@ export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
11
12
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
12
13
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
14
  region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
15
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
16
  retryMode: string | import("@aws-sdk/types").Provider<string>;
16
17
  sha256: import("@aws-sdk/types").HashConstructor;
17
18
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,17 +1,18 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { KinesisClientConfig } from "./KinesisClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
9
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
12
13
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
14
  region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
15
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
16
  retryMode: string | import("@aws-sdk/types").Provider<string>;
16
17
  sha256: import("@aws-sdk/types").HashConstructor;
17
18
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (config: KinesisClientConfig) => {
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
26
  eventStreamSerdeProvider: import("@aws-sdk/types").EventStreamSerdeProvider;
27
+ 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>;
27
28
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
29
  tls?: boolean | undefined;
29
30
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
package/package.json CHANGED
@@ -1,18 +1,15 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis",
3
3
  "description": "AWS SDK for JavaScript Kinesis Client for Node.js, Browser and React Native",
4
- "version": "3.43.0",
4
+ "version": "3.47.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
- "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
- "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-*"
16
13
  },
17
14
  "main": "./dist-cjs/index.js",
18
15
  "types": "./dist-types/index.d.ts",
@@ -21,52 +18,48 @@
21
18
  "dependencies": {
22
19
  "@aws-crypto/sha256-browser": "2.0.0",
23
20
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.43.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.41.0",
27
- "@aws-sdk/eventstream-serde-browser": "3.40.0",
28
- "@aws-sdk/eventstream-serde-config-resolver": "3.40.0",
29
- "@aws-sdk/eventstream-serde-node": "3.40.0",
30
- "@aws-sdk/fetch-http-handler": "3.40.0",
31
- "@aws-sdk/hash-node": "3.40.0",
32
- "@aws-sdk/invalid-dependency": "3.40.0",
33
- "@aws-sdk/middleware-content-length": "3.40.0",
34
- "@aws-sdk/middleware-host-header": "3.40.0",
35
- "@aws-sdk/middleware-logger": "3.40.0",
36
- "@aws-sdk/middleware-retry": "3.40.0",
37
- "@aws-sdk/middleware-serde": "3.40.0",
38
- "@aws-sdk/middleware-signing": "3.40.0",
39
- "@aws-sdk/middleware-stack": "3.40.0",
40
- "@aws-sdk/middleware-user-agent": "3.40.0",
41
- "@aws-sdk/node-config-provider": "3.40.0",
42
- "@aws-sdk/node-http-handler": "3.40.0",
43
- "@aws-sdk/protocol-http": "3.40.0",
44
- "@aws-sdk/smithy-client": "3.41.0",
45
- "@aws-sdk/types": "3.40.0",
46
- "@aws-sdk/url-parser": "3.40.0",
47
- "@aws-sdk/util-base64-browser": "3.37.0",
48
- "@aws-sdk/util-base64-node": "3.37.0",
49
- "@aws-sdk/util-body-length-browser": "3.37.0",
50
- "@aws-sdk/util-body-length-node": "3.37.0",
51
- "@aws-sdk/util-user-agent-browser": "3.40.0",
52
- "@aws-sdk/util-user-agent-node": "3.40.0",
53
- "@aws-sdk/util-utf8-browser": "3.37.0",
54
- "@aws-sdk/util-utf8-node": "3.37.0",
55
- "@aws-sdk/util-waiter": "3.40.0",
21
+ "@aws-sdk/client-sts": "3.47.0",
22
+ "@aws-sdk/config-resolver": "3.47.0",
23
+ "@aws-sdk/credential-provider-node": "3.47.0",
24
+ "@aws-sdk/eventstream-serde-browser": "3.47.0",
25
+ "@aws-sdk/eventstream-serde-config-resolver": "3.47.0",
26
+ "@aws-sdk/eventstream-serde-node": "3.47.0",
27
+ "@aws-sdk/fetch-http-handler": "3.47.0",
28
+ "@aws-sdk/hash-node": "3.47.0",
29
+ "@aws-sdk/invalid-dependency": "3.47.0",
30
+ "@aws-sdk/middleware-content-length": "3.47.0",
31
+ "@aws-sdk/middleware-host-header": "3.47.0",
32
+ "@aws-sdk/middleware-logger": "3.47.0",
33
+ "@aws-sdk/middleware-retry": "3.47.0",
34
+ "@aws-sdk/middleware-serde": "3.47.0",
35
+ "@aws-sdk/middleware-signing": "3.47.0",
36
+ "@aws-sdk/middleware-stack": "3.47.0",
37
+ "@aws-sdk/middleware-user-agent": "3.47.0",
38
+ "@aws-sdk/node-config-provider": "3.47.0",
39
+ "@aws-sdk/node-http-handler": "3.47.0",
40
+ "@aws-sdk/protocol-http": "3.47.0",
41
+ "@aws-sdk/smithy-client": "3.47.0",
42
+ "@aws-sdk/types": "3.47.0",
43
+ "@aws-sdk/url-parser": "3.47.0",
44
+ "@aws-sdk/util-base64-browser": "3.47.0",
45
+ "@aws-sdk/util-base64-node": "3.47.0",
46
+ "@aws-sdk/util-body-length-browser": "3.47.0",
47
+ "@aws-sdk/util-body-length-node": "3.47.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.47.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.47.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.47.0",
51
+ "@aws-sdk/util-user-agent-node": "3.47.0",
52
+ "@aws-sdk/util-utf8-browser": "3.47.0",
53
+ "@aws-sdk/util-utf8-node": "3.47.0",
54
+ "@aws-sdk/util-waiter": "3.47.0",
56
55
  "tslib": "^2.3.0"
57
56
  },
58
57
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
60
- "@types/node": "^12.7.5",
61
- "downlevel-dts": "0.7.0",
62
- "jest": "^26.1.0",
63
- "rimraf": "^3.0.0",
64
- "ts-jest": "^26.4.1",
65
- "typedoc": "^0.19.2",
66
- "typescript": "~4.3.5"
58
+ "@aws-sdk/service-client-documentation-generator": "3.47.0",
59
+ "@types/node": "^12.7.5"
67
60
  },
68
61
  "engines": {
69
- "node": ">=10.0.0"
62
+ "node": ">=12.0.0"
70
63
  },
71
64
  "typesVersions": {
72
65
  "<4.0": {