@aws-sdk/client-kinesis 3.288.0 → 3.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist-types/commands/AddTagsToStreamCommand.d.ts +21 -0
  2. package/dist-types/commands/CreateStreamCommand.d.ts +13 -0
  3. package/dist-types/commands/DecreaseStreamRetentionPeriodCommand.d.ts +21 -0
  4. package/dist-types/commands/DeleteStreamCommand.d.ts +21 -0
  5. package/dist-types/commands/DeregisterStreamConsumerCommand.d.ts +13 -0
  6. package/dist-types/commands/DescribeLimitsCommand.d.ts +5 -0
  7. package/dist-types/commands/DescribeStreamCommand.d.ts +17 -0
  8. package/dist-types/commands/DescribeStreamConsumerCommand.d.ts +13 -0
  9. package/dist-types/commands/DescribeStreamSummaryCommand.d.ts +17 -0
  10. package/dist-types/commands/DisableEnhancedMonitoringCommand.d.ts +21 -0
  11. package/dist-types/commands/EnableEnhancedMonitoringCommand.d.ts +21 -0
  12. package/dist-types/commands/GetRecordsCommand.d.ts +50 -0
  13. package/dist-types/commands/GetShardIteratorCommand.d.ts +20 -0
  14. package/dist-types/commands/IncreaseStreamRetentionPeriodCommand.d.ts +21 -0
  15. package/dist-types/commands/ListShardsCommand.d.ts +24 -0
  16. package/dist-types/commands/ListStreamConsumersCommand.d.ts +20 -0
  17. package/dist-types/commands/ListStreamsCommand.d.ts +12 -0
  18. package/dist-types/commands/ListTagsForStreamCommand.d.ts +17 -0
  19. package/dist-types/commands/MergeShardsCommand.d.ts +26 -0
  20. package/dist-types/commands/PutRecordCommand.d.ts +47 -0
  21. package/dist-types/commands/PutRecordsCommand.d.ts +47 -0
  22. package/dist-types/commands/RegisterStreamConsumerCommand.d.ts +17 -0
  23. package/dist-types/commands/RemoveTagsFromStreamCommand.d.ts +21 -0
  24. package/dist-types/commands/SplitShardCommand.d.ts +26 -0
  25. package/dist-types/commands/StartStreamEncryptionCommand.d.ts +48 -0
  26. package/dist-types/commands/StopStreamEncryptionCommand.d.ts +21 -0
  27. package/dist-types/commands/SubscribeToShardCommand.d.ts +21 -0
  28. package/dist-types/commands/UpdateShardCountCommand.d.ts +26 -0
  29. package/dist-types/commands/UpdateStreamModeCommand.d.ts +17 -0
  30. package/package.json +33 -33
@@ -39,6 +39,27 @@ export interface AddTagsToStreamCommandOutput extends __MetadataBearer {
39
39
  * @see {@link AddTagsToStreamCommandOutput} for command's `response` shape.
40
40
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessDeniedException} (client fault)
43
+ * <p>Specifies that you do not have the permissions required to perform this
44
+ * operation.</p>
45
+ *
46
+ * @throws {@link InvalidArgumentException} (client fault)
47
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
48
+ * For more information, see the returned message.</p>
49
+ *
50
+ * @throws {@link LimitExceededException} (client fault)
51
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
52
+ * stream requests exceeds the maximum number allowed. </p>
53
+ *
54
+ * @throws {@link ResourceInUseException} (client fault)
55
+ * <p>The resource is not available for this operation. For successful operation, the
56
+ * resource must be in the <code>ACTIVE</code> state.</p>
57
+ *
58
+ * @throws {@link ResourceNotFoundException} (client fault)
59
+ * <p>The requested resource could not be found. The stream might not be specified
60
+ * correctly.</p>
61
+ *
62
+ *
42
63
  */
43
64
  export declare class AddTagsToStreamCommand extends $Command<AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput, KinesisClientResolvedConfig> {
44
65
  readonly input: AddTagsToStreamCommandInput;
@@ -72,6 +72,19 @@ export interface CreateStreamCommandOutput extends __MetadataBearer {
72
72
  * @see {@link CreateStreamCommandOutput} for command's `response` shape.
73
73
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
74
74
  *
75
+ * @throws {@link InvalidArgumentException} (client fault)
76
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
77
+ * For more information, see the returned message.</p>
78
+ *
79
+ * @throws {@link LimitExceededException} (client fault)
80
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
81
+ * stream requests exceeds the maximum number allowed. </p>
82
+ *
83
+ * @throws {@link ResourceInUseException} (client fault)
84
+ * <p>The resource is not available for this operation. For successful operation, the
85
+ * resource must be in the <code>ACTIVE</code> state.</p>
86
+ *
87
+ *
75
88
  */
76
89
  export declare class CreateStreamCommand extends $Command<CreateStreamCommandInput, CreateStreamCommandOutput, KinesisClientResolvedConfig> {
77
90
  readonly input: CreateStreamCommandInput;
@@ -38,6 +38,27 @@ export interface DecreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
38
38
  * @see {@link DecreaseStreamRetentionPeriodCommandOutput} for command's `response` shape.
39
39
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
40
40
  *
41
+ * @throws {@link AccessDeniedException} (client fault)
42
+ * <p>Specifies that you do not have the permissions required to perform this
43
+ * operation.</p>
44
+ *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
47
+ * For more information, see the returned message.</p>
48
+ *
49
+ * @throws {@link LimitExceededException} (client fault)
50
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
51
+ * stream requests exceeds the maximum number allowed. </p>
52
+ *
53
+ * @throws {@link ResourceInUseException} (client fault)
54
+ * <p>The resource is not available for this operation. For successful operation, the
55
+ * resource must be in the <code>ACTIVE</code> state.</p>
56
+ *
57
+ * @throws {@link ResourceNotFoundException} (client fault)
58
+ * <p>The requested resource could not be found. The stream might not be specified
59
+ * correctly.</p>
60
+ *
61
+ *
41
62
  */
42
63
  export declare class DecreaseStreamRetentionPeriodCommand extends $Command<DecreaseStreamRetentionPeriodCommandInput, DecreaseStreamRetentionPeriodCommandOutput, KinesisClientResolvedConfig> {
43
64
  readonly input: DecreaseStreamRetentionPeriodCommandInput;
@@ -51,6 +51,27 @@ export interface DeleteStreamCommandOutput extends __MetadataBearer {
51
51
  * @see {@link DeleteStreamCommandOutput} for command's `response` shape.
52
52
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
53
53
  *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>Specifies that you do not have the permissions required to perform this
56
+ * operation.</p>
57
+ *
58
+ * @throws {@link InvalidArgumentException} (client fault)
59
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
60
+ * For more information, see the returned message.</p>
61
+ *
62
+ * @throws {@link LimitExceededException} (client fault)
63
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
64
+ * stream requests exceeds the maximum number allowed. </p>
65
+ *
66
+ * @throws {@link ResourceInUseException} (client fault)
67
+ * <p>The resource is not available for this operation. For successful operation, the
68
+ * resource must be in the <code>ACTIVE</code> state.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The requested resource could not be found. The stream might not be specified
72
+ * correctly.</p>
73
+ *
74
+ *
54
75
  */
55
76
  export declare class DeleteStreamCommand extends $Command<DeleteStreamCommandInput, DeleteStreamCommandOutput, KinesisClientResolvedConfig> {
56
77
  readonly input: DeleteStreamCommandInput;
@@ -36,6 +36,19 @@ export interface DeregisterStreamConsumerCommandOutput extends __MetadataBearer
36
36
  * @see {@link DeregisterStreamConsumerCommandOutput} for command's `response` shape.
37
37
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
38
38
  *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
41
+ * For more information, see the returned message.</p>
42
+ *
43
+ * @throws {@link LimitExceededException} (client fault)
44
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
45
+ * stream requests exceeds the maximum number allowed. </p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>The requested resource could not be found. The stream might not be specified
49
+ * correctly.</p>
50
+ *
51
+ *
39
52
  */
40
53
  export declare class DeregisterStreamConsumerCommand extends $Command<DeregisterStreamConsumerCommandInput, DeregisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
41
54
  readonly input: DeregisterStreamConsumerCommandInput;
@@ -32,6 +32,11 @@ export interface DescribeLimitsCommandOutput extends DescribeLimitsOutput, __Met
32
32
  * @see {@link DescribeLimitsCommandOutput} for command's `response` shape.
33
33
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
34
34
  *
35
+ * @throws {@link LimitExceededException} (client fault)
36
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
37
+ * stream requests exceeds the maximum number allowed. </p>
38
+ *
39
+ *
35
40
  */
36
41
  export declare class DescribeLimitsCommand extends $Command<DescribeLimitsCommandInput, DescribeLimitsCommandOutput, KinesisClientResolvedConfig> {
37
42
  readonly input: DescribeLimitsCommandInput;
@@ -52,6 +52,23 @@ export interface DescribeStreamCommandOutput extends DescribeStreamOutput, __Met
52
52
  * @see {@link DescribeStreamCommandOutput} for command's `response` shape.
53
53
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
54
54
  *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>Specifies that you do not have the permissions required to perform this
57
+ * operation.</p>
58
+ *
59
+ * @throws {@link InvalidArgumentException} (client fault)
60
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
61
+ * For more information, see the returned message.</p>
62
+ *
63
+ * @throws {@link LimitExceededException} (client fault)
64
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
65
+ * stream requests exceeds the maximum number allowed. </p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The requested resource could not be found. The stream might not be specified
69
+ * correctly.</p>
70
+ *
71
+ *
55
72
  */
56
73
  export declare class DescribeStreamCommand extends $Command<DescribeStreamCommandInput, DescribeStreamCommandOutput, KinesisClientResolvedConfig> {
57
74
  readonly input: DescribeStreamCommandInput;
@@ -36,6 +36,19 @@ export interface DescribeStreamConsumerCommandOutput extends DescribeStreamConsu
36
36
  * @see {@link DescribeStreamConsumerCommandOutput} for command's `response` shape.
37
37
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
38
38
  *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
41
+ * For more information, see the returned message.</p>
42
+ *
43
+ * @throws {@link LimitExceededException} (client fault)
44
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
45
+ * stream requests exceeds the maximum number allowed. </p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>The requested resource could not be found. The stream might not be specified
49
+ * correctly.</p>
50
+ *
51
+ *
39
52
  */
40
53
  export declare class DescribeStreamConsumerCommand extends $Command<DescribeStreamConsumerCommandInput, DescribeStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
41
54
  readonly input: DescribeStreamConsumerCommandInput;
@@ -40,6 +40,23 @@ export interface DescribeStreamSummaryCommandOutput extends DescribeStreamSummar
40
40
  * @see {@link DescribeStreamSummaryCommandOutput} for command's `response` shape.
41
41
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
42
42
  *
43
+ * @throws {@link AccessDeniedException} (client fault)
44
+ * <p>Specifies that you do not have the permissions required to perform this
45
+ * operation.</p>
46
+ *
47
+ * @throws {@link InvalidArgumentException} (client fault)
48
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
49
+ * For more information, see the returned message.</p>
50
+ *
51
+ * @throws {@link LimitExceededException} (client fault)
52
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
53
+ * stream requests exceeds the maximum number allowed. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The requested resource could not be found. The stream might not be specified
57
+ * correctly.</p>
58
+ *
59
+ *
43
60
  */
44
61
  export declare class DescribeStreamSummaryCommand extends $Command<DescribeStreamSummaryCommandInput, DescribeStreamSummaryCommandOutput, KinesisClientResolvedConfig> {
45
62
  readonly input: DescribeStreamSummaryCommandInput;
@@ -33,6 +33,27 @@ export interface DisableEnhancedMonitoringCommandOutput extends EnhancedMonitori
33
33
  * @see {@link DisableEnhancedMonitoringCommandOutput} for command's `response` shape.
34
34
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>Specifies that you do not have the permissions required to perform this
38
+ * operation.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
42
+ * For more information, see the returned message.</p>
43
+ *
44
+ * @throws {@link LimitExceededException} (client fault)
45
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
46
+ * stream requests exceeds the maximum number allowed. </p>
47
+ *
48
+ * @throws {@link ResourceInUseException} (client fault)
49
+ * <p>The resource is not available for this operation. For successful operation, the
50
+ * resource must be in the <code>ACTIVE</code> state.</p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The requested resource could not be found. The stream might not be specified
54
+ * correctly.</p>
55
+ *
56
+ *
36
57
  */
37
58
  export declare class DisableEnhancedMonitoringCommand extends $Command<DisableEnhancedMonitoringCommandInput, DisableEnhancedMonitoringCommandOutput, KinesisClientResolvedConfig> {
38
59
  readonly input: DisableEnhancedMonitoringCommandInput;
@@ -33,6 +33,27 @@ export interface EnableEnhancedMonitoringCommandOutput extends EnhancedMonitorin
33
33
  * @see {@link EnableEnhancedMonitoringCommandOutput} for command's `response` shape.
34
34
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>Specifies that you do not have the permissions required to perform this
38
+ * operation.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
42
+ * For more information, see the returned message.</p>
43
+ *
44
+ * @throws {@link LimitExceededException} (client fault)
45
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
46
+ * stream requests exceeds the maximum number allowed. </p>
47
+ *
48
+ * @throws {@link ResourceInUseException} (client fault)
49
+ * <p>The resource is not available for this operation. For successful operation, the
50
+ * resource must be in the <code>ACTIVE</code> state.</p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The requested resource could not be found. The stream might not be specified
54
+ * correctly.</p>
55
+ *
56
+ *
36
57
  */
37
58
  export declare class EnableEnhancedMonitoringCommand extends $Command<EnableEnhancedMonitoringCommandInput, EnableEnhancedMonitoringCommandOutput, KinesisClientResolvedConfig> {
38
59
  readonly input: EnableEnhancedMonitoringCommandInput;
@@ -80,6 +80,56 @@ export interface GetRecordsCommandOutput extends GetRecordsOutput, __MetadataBea
80
80
  * @see {@link GetRecordsCommandOutput} for command's `response` shape.
81
81
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
82
82
  *
83
+ * @throws {@link AccessDeniedException} (client fault)
84
+ * <p>Specifies that you do not have the permissions required to perform this
85
+ * operation.</p>
86
+ *
87
+ * @throws {@link ExpiredIteratorException} (client fault)
88
+ * <p>The provided iterator exceeds the maximum age allowed.</p>
89
+ *
90
+ * @throws {@link InvalidArgumentException} (client fault)
91
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
92
+ * For more information, see the returned message.</p>
93
+ *
94
+ * @throws {@link KMSAccessDeniedException} (client fault)
95
+ * <p>The ciphertext references a key that doesn't exist or that you don't have access
96
+ * to.</p>
97
+ *
98
+ * @throws {@link KMSDisabledException} (client fault)
99
+ * <p>The request was rejected because the specified customer master key (CMK) isn't
100
+ * enabled.</p>
101
+ *
102
+ * @throws {@link KMSInvalidStateException} (client fault)
103
+ * <p>The request was rejected because the state of the specified resource isn't valid for
104
+ * this request. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">How Key State Affects Use of a
105
+ * Customer Master Key</a> in the <i>Amazon Web Services Key Management
106
+ * Service Developer Guide</i>.</p>
107
+ *
108
+ * @throws {@link KMSNotFoundException} (client fault)
109
+ * <p>The request was rejected because the specified entity or resource can't be
110
+ * found.</p>
111
+ *
112
+ * @throws {@link KMSOptInRequired} (client fault)
113
+ * <p>The Amazon Web Services access key ID needs a subscription for the service.</p>
114
+ *
115
+ * @throws {@link KMSThrottlingException} (client fault)
116
+ * <p>The request was denied due to request throttling. For more information about
117
+ * throttling, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/limits.html#requests-per-second">Limits</a> in
118
+ * the <i>Amazon Web Services Key Management Service Developer
119
+ * Guide</i>.</p>
120
+ *
121
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
122
+ * <p>The request rate for the stream is too high, or the requested data is too large for
123
+ * the available throughput. Reduce the frequency or size of your requests. For more
124
+ * information, see <a href="https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html">Streams Limits</a> in the
125
+ * <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
126
+ * Exponential Backoff in Amazon Web Services</a> in the <i>Amazon Web Services General Reference</i>.</p>
127
+ *
128
+ * @throws {@link ResourceNotFoundException} (client fault)
129
+ * <p>The requested resource could not be found. The stream might not be specified
130
+ * correctly.</p>
131
+ *
132
+ *
83
133
  */
84
134
  export declare class GetRecordsCommand extends $Command<GetRecordsCommandInput, GetRecordsCommandOutput, KinesisClientResolvedConfig> {
85
135
  readonly input: GetRecordsCommandInput;
@@ -66,6 +66,26 @@ export interface GetShardIteratorCommandOutput extends GetShardIteratorOutput, _
66
66
  * @see {@link GetShardIteratorCommandOutput} for command's `response` shape.
67
67
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
68
68
  *
69
+ * @throws {@link AccessDeniedException} (client fault)
70
+ * <p>Specifies that you do not have the permissions required to perform this
71
+ * operation.</p>
72
+ *
73
+ * @throws {@link InvalidArgumentException} (client fault)
74
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
75
+ * For more information, see the returned message.</p>
76
+ *
77
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
78
+ * <p>The request rate for the stream is too high, or the requested data is too large for
79
+ * the available throughput. Reduce the frequency or size of your requests. For more
80
+ * information, see <a href="https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html">Streams Limits</a> in the
81
+ * <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
82
+ * Exponential Backoff in Amazon Web Services</a> in the <i>Amazon Web Services General Reference</i>.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The requested resource could not be found. The stream might not be specified
86
+ * correctly.</p>
87
+ *
88
+ *
69
89
  */
70
90
  export declare class GetShardIteratorCommand extends $Command<GetShardIteratorCommandInput, GetShardIteratorCommandOutput, KinesisClientResolvedConfig> {
71
91
  readonly input: GetShardIteratorCommandInput;
@@ -41,6 +41,27 @@ export interface IncreaseStreamRetentionPeriodCommandOutput extends __MetadataBe
41
41
  * @see {@link IncreaseStreamRetentionPeriodCommandOutput} for command's `response` shape.
42
42
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
43
43
  *
44
+ * @throws {@link AccessDeniedException} (client fault)
45
+ * <p>Specifies that you do not have the permissions required to perform this
46
+ * operation.</p>
47
+ *
48
+ * @throws {@link InvalidArgumentException} (client fault)
49
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
50
+ * For more information, see the returned message.</p>
51
+ *
52
+ * @throws {@link LimitExceededException} (client fault)
53
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
54
+ * stream requests exceeds the maximum number allowed. </p>
55
+ *
56
+ * @throws {@link ResourceInUseException} (client fault)
57
+ * <p>The resource is not available for this operation. For successful operation, the
58
+ * resource must be in the <code>ACTIVE</code> state.</p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>The requested resource could not be found. The stream might not be specified
62
+ * correctly.</p>
63
+ *
64
+ *
44
65
  */
45
66
  export declare class IncreaseStreamRetentionPeriodCommand extends $Command<IncreaseStreamRetentionPeriodCommandInput, IncreaseStreamRetentionPeriodCommandOutput, KinesisClientResolvedConfig> {
46
67
  readonly input: IncreaseStreamRetentionPeriodCommandInput;
@@ -43,6 +43,30 @@ export interface ListShardsCommandOutput extends ListShardsOutput, __MetadataBea
43
43
  * @see {@link ListShardsCommandOutput} for command's `response` shape.
44
44
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
45
45
  *
46
+ * @throws {@link AccessDeniedException} (client fault)
47
+ * <p>Specifies that you do not have the permissions required to perform this
48
+ * operation.</p>
49
+ *
50
+ * @throws {@link ExpiredNextTokenException} (client fault)
51
+ * <p>The pagination token passed to the operation is expired.</p>
52
+ *
53
+ * @throws {@link InvalidArgumentException} (client fault)
54
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
55
+ * For more information, see the returned message.</p>
56
+ *
57
+ * @throws {@link LimitExceededException} (client fault)
58
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
59
+ * stream requests exceeds the maximum number allowed. </p>
60
+ *
61
+ * @throws {@link ResourceInUseException} (client fault)
62
+ * <p>The resource is not available for this operation. For successful operation, the
63
+ * resource must be in the <code>ACTIVE</code> state.</p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>The requested resource could not be found. The stream might not be specified
67
+ * correctly.</p>
68
+ *
69
+ *
46
70
  */
47
71
  export declare class ListShardsCommand extends $Command<ListShardsCommandInput, ListShardsCommandOutput, KinesisClientResolvedConfig> {
48
72
  readonly input: ListShardsCommandInput;
@@ -31,6 +31,26 @@ export interface ListStreamConsumersCommandOutput extends ListStreamConsumersOut
31
31
  * @see {@link ListStreamConsumersCommandOutput} for command's `response` shape.
32
32
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
33
33
  *
34
+ * @throws {@link ExpiredNextTokenException} (client fault)
35
+ * <p>The pagination token passed to the operation is expired.</p>
36
+ *
37
+ * @throws {@link InvalidArgumentException} (client fault)
38
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
39
+ * For more information, see the returned message.</p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
43
+ * stream requests exceeds the maximum number allowed. </p>
44
+ *
45
+ * @throws {@link ResourceInUseException} (client fault)
46
+ * <p>The resource is not available for this operation. For successful operation, the
47
+ * resource must be in the <code>ACTIVE</code> state.</p>
48
+ *
49
+ * @throws {@link ResourceNotFoundException} (client fault)
50
+ * <p>The requested resource could not be found. The stream might not be specified
51
+ * correctly.</p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class ListStreamConsumersCommand extends $Command<ListStreamConsumersCommandInput, ListStreamConsumersCommandOutput, KinesisClientResolvedConfig> {
36
56
  readonly input: ListStreamConsumersCommandInput;
@@ -44,6 +44,18 @@ export interface ListStreamsCommandOutput extends ListStreamsOutput, __MetadataB
44
44
  * @see {@link ListStreamsCommandOutput} for command's `response` shape.
45
45
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
46
46
  *
47
+ * @throws {@link ExpiredNextTokenException} (client fault)
48
+ * <p>The pagination token passed to the operation is expired.</p>
49
+ *
50
+ * @throws {@link InvalidArgumentException} (client fault)
51
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
52
+ * For more information, see the returned message.</p>
53
+ *
54
+ * @throws {@link LimitExceededException} (client fault)
55
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
56
+ * stream requests exceeds the maximum number allowed. </p>
57
+ *
58
+ *
47
59
  */
48
60
  export declare class ListStreamsCommand extends $Command<ListStreamsCommandInput, ListStreamsCommandOutput, KinesisClientResolvedConfig> {
49
61
  readonly input: ListStreamsCommandInput;
@@ -34,6 +34,23 @@ export interface ListTagsForStreamCommandOutput extends ListTagsForStreamOutput,
34
34
  * @see {@link ListTagsForStreamCommandOutput} for command's `response` shape.
35
35
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>Specifies that you do not have the permissions required to perform this
39
+ * operation.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
43
+ * For more information, see the returned message.</p>
44
+ *
45
+ * @throws {@link LimitExceededException} (client fault)
46
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
47
+ * stream requests exceeds the maximum number allowed. </p>
48
+ *
49
+ * @throws {@link ResourceNotFoundException} (client fault)
50
+ * <p>The requested resource could not be found. The stream might not be specified
51
+ * correctly.</p>
52
+ *
53
+ *
37
54
  */
38
55
  export declare class ListTagsForStreamCommand extends $Command<ListTagsForStreamCommandInput, ListTagsForStreamCommandOutput, KinesisClientResolvedConfig> {
39
56
  readonly input: ListTagsForStreamCommandInput;
@@ -69,6 +69,32 @@ export interface MergeShardsCommandOutput extends __MetadataBearer {
69
69
  * @see {@link MergeShardsCommandOutput} for command's `response` shape.
70
70
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
71
71
  *
72
+ * @throws {@link AccessDeniedException} (client fault)
73
+ * <p>Specifies that you do not have the permissions required to perform this
74
+ * operation.</p>
75
+ *
76
+ * @throws {@link InvalidArgumentException} (client fault)
77
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
78
+ * For more information, see the returned message.</p>
79
+ *
80
+ * @throws {@link LimitExceededException} (client fault)
81
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
82
+ * stream requests exceeds the maximum number allowed. </p>
83
+ *
84
+ * @throws {@link ResourceInUseException} (client fault)
85
+ * <p>The resource is not available for this operation. For successful operation, the
86
+ * resource must be in the <code>ACTIVE</code> state.</p>
87
+ *
88
+ * @throws {@link ResourceNotFoundException} (client fault)
89
+ * <p>The requested resource could not be found. The stream might not be specified
90
+ * correctly.</p>
91
+ *
92
+ * @throws {@link ValidationException} (client fault)
93
+ * <p>Specifies that you tried to invoke this API for a data stream with the on-demand
94
+ * capacity mode. This API is only supported for data streams with the provisioned capacity
95
+ * mode. </p>
96
+ *
97
+ *
72
98
  */
73
99
  export declare class MergeShardsCommand extends $Command<MergeShardsCommandInput, MergeShardsCommandOutput, KinesisClientResolvedConfig> {
74
100
  readonly input: MergeShardsCommandInput;
@@ -68,6 +68,53 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
68
68
  * @see {@link PutRecordCommandOutput} for command's `response` shape.
69
69
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
70
70
  *
71
+ * @throws {@link AccessDeniedException} (client fault)
72
+ * <p>Specifies that you do not have the permissions required to perform this
73
+ * operation.</p>
74
+ *
75
+ * @throws {@link InvalidArgumentException} (client fault)
76
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
77
+ * For more information, see the returned message.</p>
78
+ *
79
+ * @throws {@link KMSAccessDeniedException} (client fault)
80
+ * <p>The ciphertext references a key that doesn't exist or that you don't have access
81
+ * to.</p>
82
+ *
83
+ * @throws {@link KMSDisabledException} (client fault)
84
+ * <p>The request was rejected because the specified customer master key (CMK) isn't
85
+ * enabled.</p>
86
+ *
87
+ * @throws {@link KMSInvalidStateException} (client fault)
88
+ * <p>The request was rejected because the state of the specified resource isn't valid for
89
+ * this request. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">How Key State Affects Use of a
90
+ * Customer Master Key</a> in the <i>Amazon Web Services Key Management
91
+ * Service Developer Guide</i>.</p>
92
+ *
93
+ * @throws {@link KMSNotFoundException} (client fault)
94
+ * <p>The request was rejected because the specified entity or resource can't be
95
+ * found.</p>
96
+ *
97
+ * @throws {@link KMSOptInRequired} (client fault)
98
+ * <p>The Amazon Web Services access key ID needs a subscription for the service.</p>
99
+ *
100
+ * @throws {@link KMSThrottlingException} (client fault)
101
+ * <p>The request was denied due to request throttling. For more information about
102
+ * throttling, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/limits.html#requests-per-second">Limits</a> in
103
+ * the <i>Amazon Web Services Key Management Service Developer
104
+ * Guide</i>.</p>
105
+ *
106
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
107
+ * <p>The request rate for the stream is too high, or the requested data is too large for
108
+ * the available throughput. Reduce the frequency or size of your requests. For more
109
+ * information, see <a href="https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html">Streams Limits</a> in the
110
+ * <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
111
+ * Exponential Backoff in Amazon Web Services</a> in the <i>Amazon Web Services General Reference</i>.</p>
112
+ *
113
+ * @throws {@link ResourceNotFoundException} (client fault)
114
+ * <p>The requested resource could not be found. The stream might not be specified
115
+ * correctly.</p>
116
+ *
117
+ *
71
118
  */
72
119
  export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, KinesisClientResolvedConfig> {
73
120
  readonly input: PutRecordCommandInput;
@@ -88,6 +88,53 @@ export interface PutRecordsCommandOutput extends PutRecordsOutput, __MetadataBea
88
88
  * @see {@link PutRecordsCommandOutput} for command's `response` shape.
89
89
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
90
90
  *
91
+ * @throws {@link AccessDeniedException} (client fault)
92
+ * <p>Specifies that you do not have the permissions required to perform this
93
+ * operation.</p>
94
+ *
95
+ * @throws {@link InvalidArgumentException} (client fault)
96
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
97
+ * For more information, see the returned message.</p>
98
+ *
99
+ * @throws {@link KMSAccessDeniedException} (client fault)
100
+ * <p>The ciphertext references a key that doesn't exist or that you don't have access
101
+ * to.</p>
102
+ *
103
+ * @throws {@link KMSDisabledException} (client fault)
104
+ * <p>The request was rejected because the specified customer master key (CMK) isn't
105
+ * enabled.</p>
106
+ *
107
+ * @throws {@link KMSInvalidStateException} (client fault)
108
+ * <p>The request was rejected because the state of the specified resource isn't valid for
109
+ * this request. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">How Key State Affects Use of a
110
+ * Customer Master Key</a> in the <i>Amazon Web Services Key Management
111
+ * Service Developer Guide</i>.</p>
112
+ *
113
+ * @throws {@link KMSNotFoundException} (client fault)
114
+ * <p>The request was rejected because the specified entity or resource can't be
115
+ * found.</p>
116
+ *
117
+ * @throws {@link KMSOptInRequired} (client fault)
118
+ * <p>The Amazon Web Services access key ID needs a subscription for the service.</p>
119
+ *
120
+ * @throws {@link KMSThrottlingException} (client fault)
121
+ * <p>The request was denied due to request throttling. For more information about
122
+ * throttling, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/limits.html#requests-per-second">Limits</a> in
123
+ * the <i>Amazon Web Services Key Management Service Developer
124
+ * Guide</i>.</p>
125
+ *
126
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
127
+ * <p>The request rate for the stream is too high, or the requested data is too large for
128
+ * the available throughput. Reduce the frequency or size of your requests. For more
129
+ * information, see <a href="https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html">Streams Limits</a> in the
130
+ * <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
131
+ * Exponential Backoff in Amazon Web Services</a> in the <i>Amazon Web Services General Reference</i>.</p>
132
+ *
133
+ * @throws {@link ResourceNotFoundException} (client fault)
134
+ * <p>The requested resource could not be found. The stream might not be specified
135
+ * correctly.</p>
136
+ *
137
+ *
91
138
  */
92
139
  export declare class PutRecordsCommand extends $Command<PutRecordsCommandInput, PutRecordsCommandOutput, KinesisClientResolvedConfig> {
93
140
  readonly input: PutRecordsCommandInput;
@@ -42,6 +42,23 @@ export interface RegisterStreamConsumerCommandOutput extends RegisterStreamConsu
42
42
  * @see {@link RegisterStreamConsumerCommandOutput} for command's `response` shape.
43
43
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
44
44
  *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
47
+ * For more information, see the returned message.</p>
48
+ *
49
+ * @throws {@link LimitExceededException} (client fault)
50
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
51
+ * stream requests exceeds the maximum number allowed. </p>
52
+ *
53
+ * @throws {@link ResourceInUseException} (client fault)
54
+ * <p>The resource is not available for this operation. For successful operation, the
55
+ * resource must be in the <code>ACTIVE</code> state.</p>
56
+ *
57
+ * @throws {@link ResourceNotFoundException} (client fault)
58
+ * <p>The requested resource could not be found. The stream might not be specified
59
+ * correctly.</p>
60
+ *
61
+ *
45
62
  */
46
63
  export declare class RegisterStreamConsumerCommand extends $Command<RegisterStreamConsumerCommandInput, RegisterStreamConsumerCommandOutput, KinesisClientResolvedConfig> {
47
64
  readonly input: RegisterStreamConsumerCommandInput;
@@ -38,6 +38,27 @@ export interface RemoveTagsFromStreamCommandOutput extends __MetadataBearer {
38
38
  * @see {@link RemoveTagsFromStreamCommandOutput} for command's `response` shape.
39
39
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
40
40
  *
41
+ * @throws {@link AccessDeniedException} (client fault)
42
+ * <p>Specifies that you do not have the permissions required to perform this
43
+ * operation.</p>
44
+ *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
47
+ * For more information, see the returned message.</p>
48
+ *
49
+ * @throws {@link LimitExceededException} (client fault)
50
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
51
+ * stream requests exceeds the maximum number allowed. </p>
52
+ *
53
+ * @throws {@link ResourceInUseException} (client fault)
54
+ * <p>The resource is not available for this operation. For successful operation, the
55
+ * resource must be in the <code>ACTIVE</code> state.</p>
56
+ *
57
+ * @throws {@link ResourceNotFoundException} (client fault)
58
+ * <p>The requested resource could not be found. The stream might not be specified
59
+ * correctly.</p>
60
+ *
61
+ *
41
62
  */
42
63
  export declare class RemoveTagsFromStreamCommand extends $Command<RemoveTagsFromStreamCommandInput, RemoveTagsFromStreamCommandOutput, KinesisClientResolvedConfig> {
43
64
  readonly input: RemoveTagsFromStreamCommandInput;
@@ -73,6 +73,32 @@ export interface SplitShardCommandOutput extends __MetadataBearer {
73
73
  * @see {@link SplitShardCommandOutput} for command's `response` shape.
74
74
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
75
75
  *
76
+ * @throws {@link AccessDeniedException} (client fault)
77
+ * <p>Specifies that you do not have the permissions required to perform this
78
+ * operation.</p>
79
+ *
80
+ * @throws {@link InvalidArgumentException} (client fault)
81
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
82
+ * For more information, see the returned message.</p>
83
+ *
84
+ * @throws {@link LimitExceededException} (client fault)
85
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
86
+ * stream requests exceeds the maximum number allowed. </p>
87
+ *
88
+ * @throws {@link ResourceInUseException} (client fault)
89
+ * <p>The resource is not available for this operation. For successful operation, the
90
+ * resource must be in the <code>ACTIVE</code> state.</p>
91
+ *
92
+ * @throws {@link ResourceNotFoundException} (client fault)
93
+ * <p>The requested resource could not be found. The stream might not be specified
94
+ * correctly.</p>
95
+ *
96
+ * @throws {@link ValidationException} (client fault)
97
+ * <p>Specifies that you tried to invoke this API for a data stream with the on-demand
98
+ * capacity mode. This API is only supported for data streams with the provisioned capacity
99
+ * mode. </p>
100
+ *
101
+ *
76
102
  */
77
103
  export declare class SplitShardCommand extends $Command<SplitShardCommandInput, SplitShardCommandOutput, KinesisClientResolvedConfig> {
78
104
  readonly input: SplitShardCommandInput;
@@ -48,6 +48,54 @@ export interface StartStreamEncryptionCommandOutput extends __MetadataBearer {
48
48
  * @see {@link StartStreamEncryptionCommandOutput} for command's `response` shape.
49
49
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
50
50
  *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>Specifies that you do not have the permissions required to perform this
53
+ * operation.</p>
54
+ *
55
+ * @throws {@link InvalidArgumentException} (client fault)
56
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
57
+ * For more information, see the returned message.</p>
58
+ *
59
+ * @throws {@link KMSAccessDeniedException} (client fault)
60
+ * <p>The ciphertext references a key that doesn't exist or that you don't have access
61
+ * to.</p>
62
+ *
63
+ * @throws {@link KMSDisabledException} (client fault)
64
+ * <p>The request was rejected because the specified customer master key (CMK) isn't
65
+ * enabled.</p>
66
+ *
67
+ * @throws {@link KMSInvalidStateException} (client fault)
68
+ * <p>The request was rejected because the state of the specified resource isn't valid for
69
+ * this request. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html">How Key State Affects Use of a
70
+ * Customer Master Key</a> in the <i>Amazon Web Services Key Management
71
+ * Service Developer Guide</i>.</p>
72
+ *
73
+ * @throws {@link KMSNotFoundException} (client fault)
74
+ * <p>The request was rejected because the specified entity or resource can't be
75
+ * found.</p>
76
+ *
77
+ * @throws {@link KMSOptInRequired} (client fault)
78
+ * <p>The Amazon Web Services access key ID needs a subscription for the service.</p>
79
+ *
80
+ * @throws {@link KMSThrottlingException} (client fault)
81
+ * <p>The request was denied due to request throttling. For more information about
82
+ * throttling, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/limits.html#requests-per-second">Limits</a> in
83
+ * the <i>Amazon Web Services Key Management Service Developer
84
+ * Guide</i>.</p>
85
+ *
86
+ * @throws {@link LimitExceededException} (client fault)
87
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
88
+ * stream requests exceeds the maximum number allowed. </p>
89
+ *
90
+ * @throws {@link ResourceInUseException} (client fault)
91
+ * <p>The resource is not available for this operation. For successful operation, the
92
+ * resource must be in the <code>ACTIVE</code> state.</p>
93
+ *
94
+ * @throws {@link ResourceNotFoundException} (client fault)
95
+ * <p>The requested resource could not be found. The stream might not be specified
96
+ * correctly.</p>
97
+ *
98
+ *
51
99
  */
52
100
  export declare class StartStreamEncryptionCommand extends $Command<StartStreamEncryptionCommandInput, StartStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
53
101
  readonly input: StartStreamEncryptionCommandInput;
@@ -47,6 +47,27 @@ export interface StopStreamEncryptionCommandOutput extends __MetadataBearer {
47
47
  * @see {@link StopStreamEncryptionCommandOutput} for command's `response` shape.
48
48
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
49
49
  *
50
+ * @throws {@link AccessDeniedException} (client fault)
51
+ * <p>Specifies that you do not have the permissions required to perform this
52
+ * operation.</p>
53
+ *
54
+ * @throws {@link InvalidArgumentException} (client fault)
55
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
56
+ * For more information, see the returned message.</p>
57
+ *
58
+ * @throws {@link LimitExceededException} (client fault)
59
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
60
+ * stream requests exceeds the maximum number allowed. </p>
61
+ *
62
+ * @throws {@link ResourceInUseException} (client fault)
63
+ * <p>The resource is not available for this operation. For successful operation, the
64
+ * resource must be in the <code>ACTIVE</code> state.</p>
65
+ *
66
+ * @throws {@link ResourceNotFoundException} (client fault)
67
+ * <p>The requested resource could not be found. The stream might not be specified
68
+ * correctly.</p>
69
+ *
70
+ *
50
71
  */
51
72
  export declare class StopStreamEncryptionCommand extends $Command<StopStreamEncryptionCommandInput, StopStreamEncryptionCommandOutput, KinesisClientResolvedConfig> {
52
73
  readonly input: StopStreamEncryptionCommandInput;
@@ -51,6 +51,27 @@ export interface SubscribeToShardCommandOutput extends SubscribeToShardOutput, _
51
51
  * @see {@link SubscribeToShardCommandOutput} for command's `response` shape.
52
52
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
53
53
  *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>Specifies that you do not have the permissions required to perform this
56
+ * operation.</p>
57
+ *
58
+ * @throws {@link InvalidArgumentException} (client fault)
59
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
60
+ * For more information, see the returned message.</p>
61
+ *
62
+ * @throws {@link LimitExceededException} (client fault)
63
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
64
+ * stream requests exceeds the maximum number allowed. </p>
65
+ *
66
+ * @throws {@link ResourceInUseException} (client fault)
67
+ * <p>The resource is not available for this operation. For successful operation, the
68
+ * resource must be in the <code>ACTIVE</code> state.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The requested resource could not be found. The stream might not be specified
72
+ * correctly.</p>
73
+ *
74
+ *
54
75
  */
55
76
  export declare class SubscribeToShardCommand extends $Command<SubscribeToShardCommandInput, SubscribeToShardCommandOutput, KinesisClientResolvedConfig> {
56
77
  readonly input: SubscribeToShardCommandInput;
@@ -76,6 +76,32 @@ export interface UpdateShardCountCommandOutput extends UpdateShardCountOutput, _
76
76
  * @see {@link UpdateShardCountCommandOutput} for command's `response` shape.
77
77
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
78
78
  *
79
+ * @throws {@link AccessDeniedException} (client fault)
80
+ * <p>Specifies that you do not have the permissions required to perform this
81
+ * operation.</p>
82
+ *
83
+ * @throws {@link InvalidArgumentException} (client fault)
84
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
85
+ * For more information, see the returned message.</p>
86
+ *
87
+ * @throws {@link LimitExceededException} (client fault)
88
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
89
+ * stream requests exceeds the maximum number allowed. </p>
90
+ *
91
+ * @throws {@link ResourceInUseException} (client fault)
92
+ * <p>The resource is not available for this operation. For successful operation, the
93
+ * resource must be in the <code>ACTIVE</code> state.</p>
94
+ *
95
+ * @throws {@link ResourceNotFoundException} (client fault)
96
+ * <p>The requested resource could not be found. The stream might not be specified
97
+ * correctly.</p>
98
+ *
99
+ * @throws {@link ValidationException} (client fault)
100
+ * <p>Specifies that you tried to invoke this API for a data stream with the on-demand
101
+ * capacity mode. This API is only supported for data streams with the provisioned capacity
102
+ * mode. </p>
103
+ *
104
+ *
79
105
  */
80
106
  export declare class UpdateShardCountCommand extends $Command<UpdateShardCountCommandInput, UpdateShardCountCommandOutput, KinesisClientResolvedConfig> {
81
107
  readonly input: UpdateShardCountCommandInput;
@@ -32,6 +32,23 @@ export interface UpdateStreamModeCommandOutput extends __MetadataBearer {
32
32
  * @see {@link UpdateStreamModeCommandOutput} for command's `response` shape.
33
33
  * @see {@link KinesisClientResolvedConfig | config} for KinesisClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>A specified parameter exceeds its restrictions, is not supported, or can't be used.
37
+ * For more information, see the returned message.</p>
38
+ *
39
+ * @throws {@link LimitExceededException} (client fault)
40
+ * <p>The requested resource exceeds the maximum number allowed, or the number of concurrent
41
+ * stream requests exceeds the maximum number allowed. </p>
42
+ *
43
+ * @throws {@link ResourceInUseException} (client fault)
44
+ * <p>The resource is not available for this operation. For successful operation, the
45
+ * resource must be in the <code>ACTIVE</code> state.</p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>The requested resource could not be found. The stream might not be specified
49
+ * correctly.</p>
50
+ *
51
+ *
35
52
  */
36
53
  export declare class UpdateStreamModeCommand extends $Command<UpdateStreamModeCommandInput, UpdateStreamModeCommandOutput, KinesisClientResolvedConfig> {
37
54
  readonly input: UpdateStreamModeCommandInput;
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.288.0",
4
+ "version": "3.290.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",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/eventstream-serde-browser": "3.272.0",
27
- "@aws-sdk/eventstream-serde-config-resolver": "3.272.0",
28
- "@aws-sdk/eventstream-serde-node": "3.272.0",
29
- "@aws-sdk/fetch-http-handler": "3.282.0",
30
- "@aws-sdk/hash-node": "3.272.0",
31
- "@aws-sdk/invalid-dependency": "3.272.0",
32
- "@aws-sdk/middleware-content-length": "3.282.0",
33
- "@aws-sdk/middleware-endpoint": "3.282.0",
34
- "@aws-sdk/middleware-host-header": "3.282.0",
35
- "@aws-sdk/middleware-logger": "3.288.0",
36
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
37
- "@aws-sdk/middleware-retry": "3.287.0",
38
- "@aws-sdk/middleware-serde": "3.272.0",
39
- "@aws-sdk/middleware-signing": "3.282.0",
40
- "@aws-sdk/middleware-stack": "3.272.0",
41
- "@aws-sdk/middleware-user-agent": "3.282.0",
42
- "@aws-sdk/node-config-provider": "3.287.0",
43
- "@aws-sdk/node-http-handler": "3.282.0",
44
- "@aws-sdk/protocol-http": "3.282.0",
45
- "@aws-sdk/smithy-client": "3.279.0",
46
- "@aws-sdk/types": "3.272.0",
47
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/eventstream-serde-browser": "3.290.0",
27
+ "@aws-sdk/eventstream-serde-config-resolver": "3.290.0",
28
+ "@aws-sdk/eventstream-serde-node": "3.290.0",
29
+ "@aws-sdk/fetch-http-handler": "3.290.0",
30
+ "@aws-sdk/hash-node": "3.290.0",
31
+ "@aws-sdk/invalid-dependency": "3.290.0",
32
+ "@aws-sdk/middleware-content-length": "3.290.0",
33
+ "@aws-sdk/middleware-endpoint": "3.290.0",
34
+ "@aws-sdk/middleware-host-header": "3.290.0",
35
+ "@aws-sdk/middleware-logger": "3.290.0",
36
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
37
+ "@aws-sdk/middleware-retry": "3.290.0",
38
+ "@aws-sdk/middleware-serde": "3.290.0",
39
+ "@aws-sdk/middleware-signing": "3.290.0",
40
+ "@aws-sdk/middleware-stack": "3.290.0",
41
+ "@aws-sdk/middleware-user-agent": "3.290.0",
42
+ "@aws-sdk/node-config-provider": "3.290.0",
43
+ "@aws-sdk/node-http-handler": "3.290.0",
44
+ "@aws-sdk/protocol-http": "3.290.0",
45
+ "@aws-sdk/smithy-client": "3.290.0",
46
+ "@aws-sdk/types": "3.290.0",
47
+ "@aws-sdk/url-parser": "3.290.0",
48
48
  "@aws-sdk/util-base64": "3.208.0",
49
49
  "@aws-sdk/util-body-length-browser": "3.188.0",
50
50
  "@aws-sdk/util-body-length-node": "3.208.0",
51
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
52
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
53
- "@aws-sdk/util-endpoints": "3.272.0",
54
- "@aws-sdk/util-retry": "3.272.0",
55
- "@aws-sdk/util-user-agent-browser": "3.282.0",
56
- "@aws-sdk/util-user-agent-node": "3.287.0",
51
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
52
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
53
+ "@aws-sdk/util-endpoints": "3.290.0",
54
+ "@aws-sdk/util-retry": "3.290.0",
55
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
56
+ "@aws-sdk/util-user-agent-node": "3.290.0",
57
57
  "@aws-sdk/util-utf8": "3.254.0",
58
- "@aws-sdk/util-waiter": "3.272.0",
58
+ "@aws-sdk/util-waiter": "3.290.0",
59
59
  "tslib": "^2.3.1"
60
60
  },
61
61
  "devDependencies": {