@aws-sdk/client-kinesis 3.40.0 → 3.41.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 (32) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/endpoints.js +8 -0
  3. package/dist-es/endpoints.js +8 -0
  4. package/dist-types/commands/AddTagsToStreamCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateStreamCommand.d.ts +1 -1
  6. package/dist-types/commands/DecreaseStreamRetentionPeriodCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteStreamCommand.d.ts +1 -1
  8. package/dist-types/commands/DeregisterStreamConsumerCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeLimitsCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeStreamCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeStreamConsumerCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeStreamSummaryCommand.d.ts +1 -1
  13. package/dist-types/commands/DisableEnhancedMonitoringCommand.d.ts +1 -1
  14. package/dist-types/commands/EnableEnhancedMonitoringCommand.d.ts +1 -1
  15. package/dist-types/commands/GetRecordsCommand.d.ts +1 -1
  16. package/dist-types/commands/GetShardIteratorCommand.d.ts +1 -1
  17. package/dist-types/commands/IncreaseStreamRetentionPeriodCommand.d.ts +1 -1
  18. package/dist-types/commands/ListShardsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListStreamConsumersCommand.d.ts +1 -1
  20. package/dist-types/commands/ListStreamsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForStreamCommand.d.ts +1 -1
  22. package/dist-types/commands/MergeShardsCommand.d.ts +1 -1
  23. package/dist-types/commands/PutRecordCommand.d.ts +1 -1
  24. package/dist-types/commands/PutRecordsCommand.d.ts +1 -1
  25. package/dist-types/commands/RegisterStreamConsumerCommand.d.ts +1 -1
  26. package/dist-types/commands/RemoveTagsFromStreamCommand.d.ts +1 -1
  27. package/dist-types/commands/SplitShardCommand.d.ts +1 -1
  28. package/dist-types/commands/StartStreamEncryptionCommand.d.ts +1 -1
  29. package/dist-types/commands/StopStreamEncryptionCommand.d.ts +1 -1
  30. package/dist-types/commands/SubscribeToShardCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateShardCountCommand.d.ts +1 -1
  32. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
7
18
 
8
19
 
@@ -149,6 +149,10 @@ const partitionHash = {
149
149
  hostname: "kinesis.{region}.c2s.ic.gov",
150
150
  tags: [],
151
151
  },
152
+ {
153
+ hostname: "kinesis-fips.{region}.c2s.ic.gov",
154
+ tags: ["fips"],
155
+ },
152
156
  ],
153
157
  },
154
158
  "aws-iso-b": {
@@ -159,6 +163,10 @@ const partitionHash = {
159
163
  hostname: "kinesis.{region}.sc2s.sgov.gov",
160
164
  tags: [],
161
165
  },
166
+ {
167
+ hostname: "kinesis-fips.{region}.sc2s.sgov.gov",
168
+ tags: ["fips"],
169
+ },
162
170
  ],
163
171
  },
164
172
  "aws-us-gov": {
@@ -147,6 +147,10 @@ var partitionHash = {
147
147
  hostname: "kinesis.{region}.c2s.ic.gov",
148
148
  tags: [],
149
149
  },
150
+ {
151
+ hostname: "kinesis-fips.{region}.c2s.ic.gov",
152
+ tags: ["fips"],
153
+ },
150
154
  ],
151
155
  },
152
156
  "aws-iso-b": {
@@ -157,6 +161,10 @@ var partitionHash = {
157
161
  hostname: "kinesis.{region}.sc2s.sgov.gov",
158
162
  tags: [],
159
163
  },
164
+ {
165
+ hostname: "kinesis-fips.{region}.sc2s.sgov.gov",
166
+ tags: ["fips"],
167
+ },
160
168
  ],
161
169
  },
162
170
  "aws-us-gov": {
@@ -28,7 +28,7 @@ export interface AddTagsToStreamCommandOutput extends __MetadataBearer {
28
28
  *
29
29
  * @see {@link AddTagsToStreamCommandInput} for command's `input` shape.
30
30
  * @see {@link AddTagsToStreamCommandOutput} for command's `response` shape.
31
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
31
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
32
32
  *
33
33
  */
34
34
  export declare class AddTagsToStreamCommand extends $Command<AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -60,7 +60,7 @@ export interface CreateStreamCommandOutput extends __MetadataBearer {
60
60
  *
61
61
  * @see {@link CreateStreamCommandInput} for command's `input` shape.
62
62
  * @see {@link CreateStreamCommandOutput} for command's `response` shape.
63
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
63
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
64
64
  *
65
65
  */
66
66
  export declare class CreateStreamCommand extends $Command<CreateStreamCommandInput, CreateStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -25,7 +25,7 @@ export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
25
25
  *
26
26
  * @see {@link DecreaseStreamRetentionPeriodCommandInput} for command's `input` shape.
27
27
  * @see {@link DecreaseStreamRetentionPeriodCommandOutput} for command's `response` shape.
28
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class DecreaseStreamRetentionPeriodCommand extends $Command<DecreaseStreamRetentionPeriodCommandInput, DecreaseStreamRetentionPeriodCommandOutput, KinesisClientResolvedConfig> {
@@ -38,7 +38,7 @@ export interface DeleteStreamCommandOutput extends __MetadataBearer {
38
38
  *
39
39
  * @see {@link DeleteStreamCommandInput} for command's `input` shape.
40
40
  * @see {@link DeleteStreamCommandOutput} for command's `response` shape.
41
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
41
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
42
42
  *
43
43
  */
44
44
  export declare class DeleteStreamCommand extends $Command<DeleteStreamCommandInput, DeleteStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -27,7 +27,7 @@ export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer
27
27
  *
28
28
  * @see {@link DeregisterStreamConsumerCommandInput} for command's `input` shape.
29
29
  * @see {@link DeregisterStreamConsumerCommandOutput} for command's `response` shape.
30
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
30
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
31
31
  *
32
32
  */
33
33
  export declare class DeregisterStreamConsumerCommand extends $Command<DeregisterStreamConsumerCommandInput, DeregisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
@@ -23,7 +23,7 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met
23
23
  *
24
24
  * @see {@link DescribeLimitsCommandInput} for command's `input` shape.
25
25
  * @see {@link DescribeLimitsCommandOutput} for command's `response` shape.
26
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
26
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
27
27
  *
28
28
  */
29
29
  export declare class DescribeLimitsCommand extends $Command<DescribeLimitsCommandInput, DescribeLimitsCommandOutput, KinesisClientResolvedConfig> {
@@ -36,7 +36,7 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met
36
36
  *
37
37
  * @see {@link DescribeStreamCommandInput} for command's `input` shape.
38
38
  * @see {@link DescribeStreamCommandOutput} for command's `response` shape.
39
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
39
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
40
40
  *
41
41
  */
42
42
  export declare class DescribeStreamCommand extends $Command<DescribeStreamCommandInput, DescribeStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -27,7 +27,7 @@ export interface DescribeStreamConsumerCommandOutput extends DescribeStreamConsu
27
27
  *
28
28
  * @see {@link DescribeStreamConsumerCommandInput} for command's `input` shape.
29
29
  * @see {@link DescribeStreamConsumerCommandOutput} for command's `response` shape.
30
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
30
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
31
31
  *
32
32
  */
33
33
  export declare class DescribeStreamConsumerCommand extends $Command<DescribeStreamConsumerCommandInput, DescribeStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
@@ -27,7 +27,7 @@ export interface DescribeStreamSummaryCommandOutput extends DescribeStreamSummar
27
27
  *
28
28
  * @see {@link DescribeStreamSummaryCommandInput} for command's `input` shape.
29
29
  * @see {@link DescribeStreamSummaryCommandOutput} for command's `response` shape.
30
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
30
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
31
31
  *
32
32
  */
33
33
  export declare class DescribeStreamSummaryCommand extends $Command<DescribeStreamSummaryCommandInput, DescribeStreamSummaryCommandOutput, KinesisClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DisableEnhancedMonitoringCommandOutput extends EnhancedMonitori
20
20
  *
21
21
  * @see {@link DisableEnhancedMonitoringCommandInput} for command's `input` shape.
22
22
  * @see {@link DisableEnhancedMonitoringCommandOutput} for command's `response` shape.
23
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DisableEnhancedMonitoringCommand extends $Command<DisableEnhancedMonitoringCommandInput, DisableEnhancedMonitoringCommandOutput, KinesisClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface EnableEnhancedMonitoringCommandOutput extends EnhancedMonitorin
20
20
  *
21
21
  * @see {@link EnableEnhancedMonitoringCommandInput} for command's `input` shape.
22
22
  * @see {@link EnableEnhancedMonitoringCommandOutput} for command's `response` shape.
23
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class EnableEnhancedMonitoringCommand extends $Command<EnableEnhancedMonitoringCommandInput, EnableEnhancedMonitoringCommandOutput, KinesisClientResolvedConfig> {
@@ -66,7 +66,7 @@ export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBea
66
66
  *
67
67
  * @see {@link GetRecordsCommandInput} for command's `input` shape.
68
68
  * @see {@link GetRecordsCommandOutput} for command's `response` shape.
69
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
69
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
70
70
  *
71
71
  */
72
72
  export declare class GetRecordsCommand extends $Command<GetRecordsCommandInput, GetRecordsCommandOutput, KinesisClientResolvedConfig> {
@@ -53,7 +53,7 @@ export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, _
53
53
  *
54
54
  * @see {@link GetShardIteratorCommandInput} for command's `input` shape.
55
55
  * @see {@link GetShardIteratorCommandOutput} for command's `response` shape.
56
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
56
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
57
57
  *
58
58
  */
59
59
  export declare class GetShardIteratorCommand extends $Command<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, KinesisClientResolvedConfig> {
@@ -28,7 +28,7 @@ export interface IncreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
28
28
  *
29
29
  * @see {@link IncreaseStreamRetentionPeriodCommandInput} for command's `input` shape.
30
30
  * @see {@link IncreaseStreamRetentionPeriodCommandOutput} for command's `response` shape.
31
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
31
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
32
32
  *
33
33
  */
34
34
  export declare class IncreaseStreamRetentionPeriodCommand extends $Command<IncreaseStreamRetentionPeriodCommandInput, IncreaseStreamRetentionPeriodCommandOutput, KinesisClientResolvedConfig> {
@@ -28,7 +28,7 @@ export interface ListShardsCommandOutput extends ListShardsOutput, __MetadataBea
28
28
  *
29
29
  * @see {@link ListShardsCommandInput} for command's `input` shape.
30
30
  * @see {@link ListShardsCommandOutput} for command's `response` shape.
31
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
31
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
32
32
  *
33
33
  */
34
34
  export declare class ListShardsCommand extends $Command<ListShardsCommandInput, ListShardsCommandOutput, KinesisClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface ListStreamConsumersCommandOutput extends ListStreamConsumersOut
22
22
  *
23
23
  * @see {@link ListStreamConsumersCommandInput} for command's `input` shape.
24
24
  * @see {@link ListStreamConsumersCommandOutput} for command's `response` shape.
25
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class ListStreamConsumersCommand extends $Command<ListStreamConsumersCommandInput, ListStreamConsumersCommandOutput, KinesisClientResolvedConfig> {
@@ -35,7 +35,7 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB
35
35
  *
36
36
  * @see {@link ListStreamsCommandInput} for command's `input` shape.
37
37
  * @see {@link ListStreamsCommandOutput} for command's `response` shape.
38
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
38
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
39
39
  *
40
40
  */
41
41
  export declare class ListStreamsCommand extends $Command<ListStreamsCommandInput, ListStreamsCommandOutput, KinesisClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface ListTagsForStreamCommandOutput extends ListTagsForStreamOutput,
21
21
  *
22
22
  * @see {@link ListTagsForStreamCommandInput} for command's `input` shape.
23
23
  * @see {@link ListTagsForStreamCommandOutput} for command's `response` shape.
24
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class ListTagsForStreamCommand extends $Command<ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -55,7 +55,7 @@ export interface MergeShardsCommandOutput extends __MetadataBearer {
55
55
  *
56
56
  * @see {@link MergeShardsCommandInput} for command's `input` shape.
57
57
  * @see {@link MergeShardsCommandOutput} for command's `response` shape.
58
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
58
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
59
59
  *
60
60
  */
61
61
  export declare class MergeShardsCommand extends $Command<MergeShardsCommandInput, MergeShardsCommandOutput, KinesisClientResolvedConfig> {
@@ -55,7 +55,7 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
55
55
  *
56
56
  * @see {@link PutRecordCommandInput} for command's `input` shape.
57
57
  * @see {@link PutRecordCommandOutput} for command's `response` shape.
58
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
58
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
59
59
  *
60
60
  */
61
61
  export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, KinesisClientResolvedConfig> {
@@ -75,7 +75,7 @@ export interface PutRecordsCommandOutput extends PutRecordsOutput, __MetadataBea
75
75
  *
76
76
  * @see {@link PutRecordsCommandInput} for command's `input` shape.
77
77
  * @see {@link PutRecordsCommandOutput} for command's `response` shape.
78
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
78
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
79
79
  *
80
80
  */
81
81
  export declare class PutRecordsCommand extends $Command<PutRecordsCommandInput, PutRecordsCommandOutput, KinesisClientResolvedConfig> {
@@ -33,7 +33,7 @@ export interface RegisterStreamConsumerCommandOutput extends RegisterStreamConsu
33
33
  *
34
34
  * @see {@link RegisterStreamConsumerCommandInput} for command's `input` shape.
35
35
  * @see {@link RegisterStreamConsumerCommandOutput} for command's `response` shape.
36
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
36
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
37
37
  *
38
38
  */
39
39
  export declare class RegisterStreamConsumerCommand extends $Command<RegisterStreamConsumerCommandInput, RegisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
@@ -25,7 +25,7 @@ export interface RemoveTagsFromStreamCommandOutput extends __MetadataBearer {
25
25
  *
26
26
  * @see {@link RemoveTagsFromStreamCommandInput} for command's `input` shape.
27
27
  * @see {@link RemoveTagsFromStreamCommandOutput} for command's `response` shape.
28
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
28
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
29
29
  *
30
30
  */
31
31
  export declare class RemoveTagsFromStreamCommand extends $Command<RemoveTagsFromStreamCommandInput, RemoveTagsFromStreamCommandOutput, KinesisClientResolvedConfig> {
@@ -61,7 +61,7 @@ export interface SplitShardCommandOutput extends __MetadataBearer {
61
61
  *
62
62
  * @see {@link SplitShardCommandInput} for command's `input` shape.
63
63
  * @see {@link SplitShardCommandOutput} for command's `response` shape.
64
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
64
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
65
65
  *
66
66
  */
67
67
  export declare class SplitShardCommand extends $Command<SplitShardCommandInput, SplitShardCommandOutput, KinesisClientResolvedConfig> {
@@ -35,7 +35,7 @@ export interface StartStreamEncryptionCommandOutput extends __MetadataBearer {
35
35
  *
36
36
  * @see {@link StartStreamEncryptionCommandInput} for command's `input` shape.
37
37
  * @see {@link StartStreamEncryptionCommandOutput} for command's `response` shape.
38
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
38
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
39
39
  *
40
40
  */
41
41
  export declare class StartStreamEncryptionCommand extends $Command<StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
@@ -35,7 +35,7 @@ export interface StopStreamEncryptionCommandOutput extends __MetadataBearer {
35
35
  *
36
36
  * @see {@link StopStreamEncryptionCommandInput} for command's `input` shape.
37
37
  * @see {@link StopStreamEncryptionCommandOutput} for command's `response` shape.
38
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
38
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
39
39
  *
40
40
  */
41
41
  export declare class StopStreamEncryptionCommand extends $Command<StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
@@ -41,7 +41,7 @@ export interface SubscribeToShardCommandOutput extends SubscribeToShardOutput, _
41
41
  *
42
42
  * @see {@link SubscribeToShardCommandInput} for command's `input` shape.
43
43
  * @see {@link SubscribeToShardCommandOutput} for command's `response` shape.
44
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
44
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
45
45
  *
46
46
  */
47
47
  export declare class SubscribeToShardCommand extends $Command<SubscribeToShardCommandInput, SubscribeToShardCommandOutput, KinesisClientResolvedConfig> {
@@ -63,7 +63,7 @@ export interface UpdateShardCountCommandOutput extends UpdateShardCountOutput, _
63
63
  *
64
64
  * @see {@link UpdateShardCountCommandInput} for command's `input` shape.
65
65
  * @see {@link UpdateShardCountCommandOutput} for command's `response` shape.
66
- * @see {@link KinesisClientResolvedConfig | config} for command's `input` shape.
66
+ * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
67
67
  *
68
68
  */
69
69
  export declare class UpdateShardCountCommand extends $Command<UpdateShardCountCommandInput, UpdateShardCountCommandOutput, KinesisClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.40.0",
4
+ "version": "3.41.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.40.0",
24
+ "@aws-sdk/client-sts": "3.41.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.40.0",
26
+ "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/eventstream-serde-browser": "3.40.0",
28
28
  "@aws-sdk/eventstream-serde-config-resolver": "3.40.0",
29
29
  "@aws-sdk/eventstream-serde-node": "3.40.0",
@@ -41,7 +41,7 @@
41
41
  "@aws-sdk/node-config-provider": "3.40.0",
42
42
  "@aws-sdk/node-http-handler": "3.40.0",
43
43
  "@aws-sdk/protocol-http": "3.40.0",
44
- "@aws-sdk/smithy-client": "3.40.0",
44
+ "@aws-sdk/smithy-client": "3.41.0",
45
45
  "@aws-sdk/types": "3.40.0",
46
46
  "@aws-sdk/url-parser": "3.40.0",
47
47
  "@aws-sdk/util-base64-browser": "3.37.0",