@aws-sdk/client-kinesis 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/KinesisServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +198 -2
- package/dist-cjs/protocols/Aws_json1_1.js +307 -1132
- package/dist-es/index.js +1 -0
- package/dist-es/models/KinesisServiceException.js +12 -0
- package/dist-es/models/models_0.js +182 -1
- package/dist-es/protocols/Aws_json1_1.js +667 -1221
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/KinesisServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +83 -73
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/KinesisServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -61
- package/package.json +29 -29
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Kinesis service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class KinesisServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { KinesisServiceException as __BaseException } from "./KinesisServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Represents the input for <code>AddTagsToStream</code>.</p>
|
|
4
5
|
*/
|
|
@@ -24,49 +25,49 @@ export declare namespace AddTagsToStreamInput {
|
|
|
24
25
|
* <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
|
|
25
26
|
* For more information, see the returned message.</p>
|
|
26
27
|
*/
|
|
27
|
-
export
|
|
28
|
-
name: "InvalidArgumentException";
|
|
29
|
-
$fault: "client";
|
|
28
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
29
|
+
readonly name: "InvalidArgumentException";
|
|
30
|
+
readonly $fault: "client";
|
|
30
31
|
/**
|
|
31
|
-
*
|
|
32
|
+
* @internal
|
|
32
33
|
*/
|
|
33
|
-
|
|
34
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
34
35
|
}
|
|
35
36
|
/**
|
|
36
37
|
* <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
|
|
37
38
|
* stream requests exceeds the maximum number allowed. </p>
|
|
38
39
|
*/
|
|
39
|
-
export
|
|
40
|
-
name: "LimitExceededException";
|
|
41
|
-
$fault: "client";
|
|
40
|
+
export declare class LimitExceededException extends __BaseException {
|
|
41
|
+
readonly name: "LimitExceededException";
|
|
42
|
+
readonly $fault: "client";
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
+
* @internal
|
|
44
45
|
*/
|
|
45
|
-
|
|
46
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
46
47
|
}
|
|
47
48
|
/**
|
|
48
49
|
* <p>The resource is not available for this operation. For successful operation, the
|
|
49
50
|
* resource must be in the <code>ACTIVE</code> state.</p>
|
|
50
51
|
*/
|
|
51
|
-
export
|
|
52
|
-
name: "ResourceInUseException";
|
|
53
|
-
$fault: "client";
|
|
52
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
53
|
+
readonly name: "ResourceInUseException";
|
|
54
|
+
readonly $fault: "client";
|
|
54
55
|
/**
|
|
55
|
-
*
|
|
56
|
+
* @internal
|
|
56
57
|
*/
|
|
57
|
-
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
58
59
|
}
|
|
59
60
|
/**
|
|
60
61
|
* <p>The requested resource could not be found. The stream might not be specified
|
|
61
62
|
* correctly.</p>
|
|
62
63
|
*/
|
|
63
|
-
export
|
|
64
|
-
name: "ResourceNotFoundException";
|
|
65
|
-
$fault: "client";
|
|
64
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
65
|
+
readonly name: "ResourceNotFoundException";
|
|
66
|
+
readonly $fault: "client";
|
|
66
67
|
/**
|
|
67
|
-
*
|
|
68
|
+
* @internal
|
|
68
69
|
*/
|
|
69
|
-
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
70
71
|
}
|
|
71
72
|
/**
|
|
72
73
|
* <p>The range of possible hash key values for the shard, which is a set of ordered
|
|
@@ -991,21 +992,24 @@ export declare namespace EnableEnhancedMonitoringInput {
|
|
|
991
992
|
/**
|
|
992
993
|
* <p>The provided iterator exceeds the maximum age allowed.</p>
|
|
993
994
|
*/
|
|
994
|
-
export
|
|
995
|
-
name: "ExpiredIteratorException";
|
|
996
|
-
$fault: "client";
|
|
995
|
+
export declare class ExpiredIteratorException extends __BaseException {
|
|
996
|
+
readonly name: "ExpiredIteratorException";
|
|
997
|
+
readonly $fault: "client";
|
|
997
998
|
/**
|
|
998
|
-
*
|
|
999
|
+
* @internal
|
|
999
1000
|
*/
|
|
1000
|
-
|
|
1001
|
+
constructor(opts: __ExceptionOptionType<ExpiredIteratorException, __BaseException>);
|
|
1001
1002
|
}
|
|
1002
1003
|
/**
|
|
1003
1004
|
* <p>The pagination token passed to the operation is expired.</p>
|
|
1004
1005
|
*/
|
|
1005
|
-
export
|
|
1006
|
-
name: "ExpiredNextTokenException";
|
|
1007
|
-
$fault: "client";
|
|
1008
|
-
|
|
1006
|
+
export declare class ExpiredNextTokenException extends __BaseException {
|
|
1007
|
+
readonly name: "ExpiredNextTokenException";
|
|
1008
|
+
readonly $fault: "client";
|
|
1009
|
+
/**
|
|
1010
|
+
* @internal
|
|
1011
|
+
*/
|
|
1012
|
+
constructor(opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>);
|
|
1009
1013
|
}
|
|
1010
1014
|
/**
|
|
1011
1015
|
* <p>Represents the input for <a>GetRecords</a>.</p>
|
|
@@ -1114,25 +1118,25 @@ export declare namespace GetRecordsOutput {
|
|
|
1114
1118
|
* <p>The ciphertext references a key that doesn't exist or that you don't have access
|
|
1115
1119
|
* to.</p>
|
|
1116
1120
|
*/
|
|
1117
|
-
export
|
|
1118
|
-
name: "KMSAccessDeniedException";
|
|
1119
|
-
$fault: "client";
|
|
1121
|
+
export declare class KMSAccessDeniedException extends __BaseException {
|
|
1122
|
+
readonly name: "KMSAccessDeniedException";
|
|
1123
|
+
readonly $fault: "client";
|
|
1120
1124
|
/**
|
|
1121
|
-
*
|
|
1125
|
+
* @internal
|
|
1122
1126
|
*/
|
|
1123
|
-
|
|
1127
|
+
constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
|
|
1124
1128
|
}
|
|
1125
1129
|
/**
|
|
1126
1130
|
* <p>The request was rejected because the specified customer master key (CMK) isn't
|
|
1127
1131
|
* enabled.</p>
|
|
1128
1132
|
*/
|
|
1129
|
-
export
|
|
1130
|
-
name: "KMSDisabledException";
|
|
1131
|
-
$fault: "client";
|
|
1133
|
+
export declare class KMSDisabledException extends __BaseException {
|
|
1134
|
+
readonly name: "KMSDisabledException";
|
|
1135
|
+
readonly $fault: "client";
|
|
1132
1136
|
/**
|
|
1133
|
-
*
|
|
1137
|
+
* @internal
|
|
1134
1138
|
*/
|
|
1135
|
-
|
|
1139
|
+
constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
|
|
1136
1140
|
}
|
|
1137
1141
|
/**
|
|
1138
1142
|
* <p>The request was rejected because the state of the specified resource isn't valid for
|
|
@@ -1140,36 +1144,36 @@ export interface KMSDisabledException extends __SmithyException, $MetadataBearer
|
|
|
1140
1144
|
* Customer Master Key</a> in the <i>Amazon Web Services Key Management
|
|
1141
1145
|
* Service Developer Guide</i>.</p>
|
|
1142
1146
|
*/
|
|
1143
|
-
export
|
|
1144
|
-
name: "KMSInvalidStateException";
|
|
1145
|
-
$fault: "client";
|
|
1147
|
+
export declare class KMSInvalidStateException extends __BaseException {
|
|
1148
|
+
readonly name: "KMSInvalidStateException";
|
|
1149
|
+
readonly $fault: "client";
|
|
1146
1150
|
/**
|
|
1147
|
-
*
|
|
1151
|
+
* @internal
|
|
1148
1152
|
*/
|
|
1149
|
-
|
|
1153
|
+
constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
|
|
1150
1154
|
}
|
|
1151
1155
|
/**
|
|
1152
1156
|
* <p>The request was rejected because the specified entity or resource can't be
|
|
1153
1157
|
* found.</p>
|
|
1154
1158
|
*/
|
|
1155
|
-
export
|
|
1156
|
-
name: "KMSNotFoundException";
|
|
1157
|
-
$fault: "client";
|
|
1159
|
+
export declare class KMSNotFoundException extends __BaseException {
|
|
1160
|
+
readonly name: "KMSNotFoundException";
|
|
1161
|
+
readonly $fault: "client";
|
|
1158
1162
|
/**
|
|
1159
|
-
*
|
|
1163
|
+
* @internal
|
|
1160
1164
|
*/
|
|
1161
|
-
|
|
1165
|
+
constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
|
|
1162
1166
|
}
|
|
1163
1167
|
/**
|
|
1164
1168
|
* <p>The Amazon Web Services access key ID needs a subscription for the service.</p>
|
|
1165
1169
|
*/
|
|
1166
|
-
export
|
|
1167
|
-
name: "KMSOptInRequired";
|
|
1168
|
-
$fault: "client";
|
|
1170
|
+
export declare class KMSOptInRequired extends __BaseException {
|
|
1171
|
+
readonly name: "KMSOptInRequired";
|
|
1172
|
+
readonly $fault: "client";
|
|
1169
1173
|
/**
|
|
1170
|
-
*
|
|
1174
|
+
* @internal
|
|
1171
1175
|
*/
|
|
1172
|
-
|
|
1176
|
+
constructor(opts: __ExceptionOptionType<KMSOptInRequired, __BaseException>);
|
|
1173
1177
|
}
|
|
1174
1178
|
/**
|
|
1175
1179
|
* <p>The request was denied due to request throttling. For more information about
|
|
@@ -1177,13 +1181,13 @@ export interface KMSOptInRequired extends __SmithyException, $MetadataBearer {
|
|
|
1177
1181
|
* the <i>Amazon Web Services Key Management Service Developer
|
|
1178
1182
|
* Guide</i>.</p>
|
|
1179
1183
|
*/
|
|
1180
|
-
export
|
|
1181
|
-
name: "KMSThrottlingException";
|
|
1182
|
-
$fault: "client";
|
|
1184
|
+
export declare class KMSThrottlingException extends __BaseException {
|
|
1185
|
+
readonly name: "KMSThrottlingException";
|
|
1186
|
+
readonly $fault: "client";
|
|
1183
1187
|
/**
|
|
1184
|
-
*
|
|
1188
|
+
* @internal
|
|
1185
1189
|
*/
|
|
1186
|
-
|
|
1190
|
+
constructor(opts: __ExceptionOptionType<KMSThrottlingException, __BaseException>);
|
|
1187
1191
|
}
|
|
1188
1192
|
/**
|
|
1189
1193
|
* <p>The request rate for the stream is too high, or the requested data is too large for
|
|
@@ -1192,13 +1196,13 @@ export interface KMSThrottlingException extends __SmithyException, $MetadataBear
|
|
|
1192
1196
|
* <i>Amazon Kinesis Data Streams Developer Guide</i>, and <a href="https://docs.aws.amazon.com/general/latest/gr/api-retries.html">Error Retries and
|
|
1193
1197
|
* Exponential Backoff in Amazon Web Services</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
1194
1198
|
*/
|
|
1195
|
-
export
|
|
1196
|
-
name: "ProvisionedThroughputExceededException";
|
|
1197
|
-
$fault: "client";
|
|
1199
|
+
export declare class ProvisionedThroughputExceededException extends __BaseException {
|
|
1200
|
+
readonly name: "ProvisionedThroughputExceededException";
|
|
1201
|
+
readonly $fault: "client";
|
|
1198
1202
|
/**
|
|
1199
|
-
*
|
|
1203
|
+
* @internal
|
|
1200
1204
|
*/
|
|
1201
|
-
|
|
1205
|
+
constructor(opts: __ExceptionOptionType<ProvisionedThroughputExceededException, __BaseException>);
|
|
1202
1206
|
}
|
|
1203
1207
|
export declare enum ShardIteratorType {
|
|
1204
1208
|
AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
|
|
@@ -1317,10 +1321,13 @@ export declare namespace IncreaseStreamRetentionPeriodInput {
|
|
|
1317
1321
|
* <p>The processing of the request failed because of an unknown error, exception, or
|
|
1318
1322
|
* failure.</p>
|
|
1319
1323
|
*/
|
|
1320
|
-
export
|
|
1321
|
-
name: "InternalFailureException";
|
|
1322
|
-
$fault: "server";
|
|
1323
|
-
|
|
1324
|
+
export declare class InternalFailureException extends __BaseException {
|
|
1325
|
+
readonly name: "InternalFailureException";
|
|
1326
|
+
readonly $fault: "server";
|
|
1327
|
+
/**
|
|
1328
|
+
* @internal
|
|
1329
|
+
*/
|
|
1330
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
1324
1331
|
}
|
|
1325
1332
|
export declare enum ShardFilterType {
|
|
1326
1333
|
AFTER_SHARD_ID = "AFTER_SHARD_ID",
|
|
@@ -1741,10 +1748,13 @@ export declare namespace MergeShardsInput {
|
|
|
1741
1748
|
*
|
|
1742
1749
|
* </p>
|
|
1743
1750
|
*/
|
|
1744
|
-
export
|
|
1745
|
-
name: "ValidationException";
|
|
1746
|
-
$fault: "client";
|
|
1747
|
-
|
|
1751
|
+
export declare class ValidationException extends __BaseException {
|
|
1752
|
+
readonly name: "ValidationException";
|
|
1753
|
+
readonly $fault: "client";
|
|
1754
|
+
/**
|
|
1755
|
+
* @internal
|
|
1756
|
+
*/
|
|
1757
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1748
1758
|
}
|
|
1749
1759
|
/**
|
|
1750
1760
|
* <p>Represents the input for <code>PutRecord</code>.</p>
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { KinesisServiceException as __BaseException } from "./KinesisServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AddTagsToStreamInput {
|
|
4
5
|
|
|
@@ -13,32 +14,32 @@ export declare namespace AddTagsToStreamInput {
|
|
|
13
14
|
const filterSensitiveLog: (obj: AddTagsToStreamInput) => any;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
|
-
export
|
|
17
|
-
name: "InvalidArgumentException";
|
|
18
|
-
$fault: "client";
|
|
17
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
18
|
+
readonly name: "InvalidArgumentException";
|
|
19
|
+
readonly $fault: "client";
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
21
22
|
}
|
|
22
23
|
|
|
23
|
-
export
|
|
24
|
-
name: "LimitExceededException";
|
|
25
|
-
$fault: "client";
|
|
24
|
+
export declare class LimitExceededException extends __BaseException {
|
|
25
|
+
readonly name: "LimitExceededException";
|
|
26
|
+
readonly $fault: "client";
|
|
26
27
|
|
|
27
|
-
|
|
28
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
export
|
|
31
|
-
name: "ResourceInUseException";
|
|
32
|
-
$fault: "client";
|
|
31
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
32
|
+
readonly name: "ResourceInUseException";
|
|
33
|
+
readonly $fault: "client";
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
35
36
|
}
|
|
36
37
|
|
|
37
|
-
export
|
|
38
|
-
name: "ResourceNotFoundException";
|
|
39
|
-
$fault: "client";
|
|
38
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
readonly name: "ResourceNotFoundException";
|
|
40
|
+
readonly $fault: "client";
|
|
40
41
|
|
|
41
|
-
|
|
42
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
export interface HashKeyRange {
|
|
@@ -390,17 +391,18 @@ export declare namespace EnableEnhancedMonitoringInput {
|
|
|
390
391
|
const filterSensitiveLog: (obj: EnableEnhancedMonitoringInput) => any;
|
|
391
392
|
}
|
|
392
393
|
|
|
393
|
-
export
|
|
394
|
-
name: "ExpiredIteratorException";
|
|
395
|
-
$fault: "client";
|
|
394
|
+
export declare class ExpiredIteratorException extends __BaseException {
|
|
395
|
+
readonly name: "ExpiredIteratorException";
|
|
396
|
+
readonly $fault: "client";
|
|
396
397
|
|
|
397
|
-
|
|
398
|
+
constructor(opts: __ExceptionOptionType<ExpiredIteratorException, __BaseException>);
|
|
398
399
|
}
|
|
399
400
|
|
|
400
|
-
export
|
|
401
|
-
name: "ExpiredNextTokenException";
|
|
402
|
-
$fault: "client";
|
|
403
|
-
|
|
401
|
+
export declare class ExpiredNextTokenException extends __BaseException {
|
|
402
|
+
readonly name: "ExpiredNextTokenException";
|
|
403
|
+
readonly $fault: "client";
|
|
404
|
+
|
|
405
|
+
constructor(opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>);
|
|
404
406
|
}
|
|
405
407
|
|
|
406
408
|
export interface GetRecordsInput {
|
|
@@ -446,53 +448,53 @@ export declare namespace GetRecordsOutput {
|
|
|
446
448
|
const filterSensitiveLog: (obj: GetRecordsOutput) => any;
|
|
447
449
|
}
|
|
448
450
|
|
|
449
|
-
export
|
|
450
|
-
name: "KMSAccessDeniedException";
|
|
451
|
-
$fault: "client";
|
|
451
|
+
export declare class KMSAccessDeniedException extends __BaseException {
|
|
452
|
+
readonly name: "KMSAccessDeniedException";
|
|
453
|
+
readonly $fault: "client";
|
|
452
454
|
|
|
453
|
-
|
|
455
|
+
constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
|
|
454
456
|
}
|
|
455
457
|
|
|
456
|
-
export
|
|
457
|
-
name: "KMSDisabledException";
|
|
458
|
-
$fault: "client";
|
|
458
|
+
export declare class KMSDisabledException extends __BaseException {
|
|
459
|
+
readonly name: "KMSDisabledException";
|
|
460
|
+
readonly $fault: "client";
|
|
459
461
|
|
|
460
|
-
|
|
462
|
+
constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
|
|
461
463
|
}
|
|
462
464
|
|
|
463
|
-
export
|
|
464
|
-
name: "KMSInvalidStateException";
|
|
465
|
-
$fault: "client";
|
|
465
|
+
export declare class KMSInvalidStateException extends __BaseException {
|
|
466
|
+
readonly name: "KMSInvalidStateException";
|
|
467
|
+
readonly $fault: "client";
|
|
466
468
|
|
|
467
|
-
|
|
469
|
+
constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
|
|
468
470
|
}
|
|
469
471
|
|
|
470
|
-
export
|
|
471
|
-
name: "KMSNotFoundException";
|
|
472
|
-
$fault: "client";
|
|
472
|
+
export declare class KMSNotFoundException extends __BaseException {
|
|
473
|
+
readonly name: "KMSNotFoundException";
|
|
474
|
+
readonly $fault: "client";
|
|
473
475
|
|
|
474
|
-
|
|
476
|
+
constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
|
|
475
477
|
}
|
|
476
478
|
|
|
477
|
-
export
|
|
478
|
-
name: "KMSOptInRequired";
|
|
479
|
-
$fault: "client";
|
|
479
|
+
export declare class KMSOptInRequired extends __BaseException {
|
|
480
|
+
readonly name: "KMSOptInRequired";
|
|
481
|
+
readonly $fault: "client";
|
|
480
482
|
|
|
481
|
-
|
|
483
|
+
constructor(opts: __ExceptionOptionType<KMSOptInRequired, __BaseException>);
|
|
482
484
|
}
|
|
483
485
|
|
|
484
|
-
export
|
|
485
|
-
name: "KMSThrottlingException";
|
|
486
|
-
$fault: "client";
|
|
486
|
+
export declare class KMSThrottlingException extends __BaseException {
|
|
487
|
+
readonly name: "KMSThrottlingException";
|
|
488
|
+
readonly $fault: "client";
|
|
487
489
|
|
|
488
|
-
|
|
490
|
+
constructor(opts: __ExceptionOptionType<KMSThrottlingException, __BaseException>);
|
|
489
491
|
}
|
|
490
492
|
|
|
491
|
-
export
|
|
492
|
-
name: "ProvisionedThroughputExceededException";
|
|
493
|
-
$fault: "client";
|
|
493
|
+
export declare class ProvisionedThroughputExceededException extends __BaseException {
|
|
494
|
+
readonly name: "ProvisionedThroughputExceededException";
|
|
495
|
+
readonly $fault: "client";
|
|
494
496
|
|
|
495
|
-
|
|
497
|
+
constructor(opts: __ExceptionOptionType<ProvisionedThroughputExceededException, __BaseException>);
|
|
496
498
|
}
|
|
497
499
|
export declare enum ShardIteratorType {
|
|
498
500
|
AFTER_SEQUENCE_NUMBER = "AFTER_SEQUENCE_NUMBER",
|
|
@@ -539,10 +541,11 @@ export declare namespace IncreaseStreamRetentionPeriodInput {
|
|
|
539
541
|
const filterSensitiveLog: (obj: IncreaseStreamRetentionPeriodInput) => any;
|
|
540
542
|
}
|
|
541
543
|
|
|
542
|
-
export
|
|
543
|
-
name: "InternalFailureException";
|
|
544
|
-
$fault: "server";
|
|
545
|
-
|
|
544
|
+
export declare class InternalFailureException extends __BaseException {
|
|
545
|
+
readonly name: "InternalFailureException";
|
|
546
|
+
readonly $fault: "server";
|
|
547
|
+
|
|
548
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
546
549
|
}
|
|
547
550
|
export declare enum ShardFilterType {
|
|
548
551
|
AFTER_SHARD_ID = "AFTER_SHARD_ID",
|
|
@@ -688,10 +691,11 @@ export declare namespace MergeShardsInput {
|
|
|
688
691
|
const filterSensitiveLog: (obj: MergeShardsInput) => any;
|
|
689
692
|
}
|
|
690
693
|
|
|
691
|
-
export
|
|
692
|
-
name: "ValidationException";
|
|
693
|
-
$fault: "client";
|
|
694
|
-
|
|
694
|
+
export declare class ValidationException extends __BaseException {
|
|
695
|
+
readonly name: "ValidationException";
|
|
696
|
+
readonly $fault: "client";
|
|
697
|
+
|
|
698
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
695
699
|
}
|
|
696
700
|
|
|
697
701
|
export interface PutRecordInput {
|
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.
|
|
4
|
+
"version": "3.53.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,40 +18,40 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/eventstream-serde-browser": "3.
|
|
25
|
-
"@aws-sdk/eventstream-serde-config-resolver": "3.
|
|
26
|
-
"@aws-sdk/eventstream-serde-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
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/eventstream-serde-browser": "3.53.0",
|
|
25
|
+
"@aws-sdk/eventstream-serde-config-resolver": "3.53.0",
|
|
26
|
+
"@aws-sdk/eventstream-serde-node": "3.53.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
42
|
+
"@aws-sdk/types": "3.53.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
54
|
-
"@aws-sdk/util-waiter": "3.
|
|
54
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
55
55
|
"tslib": "^2.3.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|