@aws-sdk/client-kinesis 3.130.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/AddTagsToStreamCommand.js +1 -1
- package/dist-cjs/commands/CreateStreamCommand.js +1 -1
- package/dist-cjs/commands/DecreaseStreamRetentionPeriodCommand.js +1 -1
- package/dist-cjs/commands/DeleteStreamCommand.js +1 -1
- package/dist-cjs/commands/DeregisterStreamConsumerCommand.js +1 -1
- package/dist-cjs/commands/DescribeLimitsCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/DescribeStreamSummaryCommand.js +2 -2
- package/dist-cjs/commands/DisableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/EnableEnhancedMonitoringCommand.js +2 -2
- package/dist-cjs/commands/GetRecordsCommand.js +2 -2
- package/dist-cjs/commands/GetShardIteratorCommand.js +2 -2
- package/dist-cjs/commands/IncreaseStreamRetentionPeriodCommand.js +1 -1
- package/dist-cjs/commands/ListShardsCommand.js +2 -2
- package/dist-cjs/commands/ListStreamConsumersCommand.js +2 -2
- package/dist-cjs/commands/ListStreamsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForStreamCommand.js +2 -2
- package/dist-cjs/commands/MergeShardsCommand.js +1 -1
- package/dist-cjs/commands/PutRecordCommand.js +2 -2
- package/dist-cjs/commands/PutRecordsCommand.js +2 -2
- package/dist-cjs/commands/RegisterStreamConsumerCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsFromStreamCommand.js +1 -1
- package/dist-cjs/commands/SplitShardCommand.js +1 -1
- package/dist-cjs/commands/StartStreamEncryptionCommand.js +1 -1
- package/dist-cjs/commands/StopStreamEncryptionCommand.js +1 -1
- package/dist-cjs/commands/SubscribeToShardCommand.js +2 -2
- package/dist-cjs/commands/UpdateShardCountCommand.js +2 -2
- package/dist-cjs/commands/UpdateStreamModeCommand.js +1 -1
- package/dist-cjs/models/models_0.js +276 -399
- package/dist-cjs/protocols/Aws_json1_1.js +134 -63
- package/dist-es/commands/AddTagsToStreamCommand.js +2 -2
- package/dist-es/commands/CreateStreamCommand.js +2 -2
- package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-es/commands/DeleteStreamCommand.js +2 -2
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +2 -2
- package/dist-es/commands/DescribeLimitsCommand.js +3 -3
- package/dist-es/commands/DescribeStreamCommand.js +3 -3
- package/dist-es/commands/DescribeStreamConsumerCommand.js +3 -3
- package/dist-es/commands/DescribeStreamSummaryCommand.js +3 -3
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +3 -3
- package/dist-es/commands/GetRecordsCommand.js +3 -3
- package/dist-es/commands/GetShardIteratorCommand.js +3 -3
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +2 -2
- package/dist-es/commands/ListShardsCommand.js +3 -3
- package/dist-es/commands/ListStreamConsumersCommand.js +3 -3
- package/dist-es/commands/ListStreamsCommand.js +3 -3
- package/dist-es/commands/ListTagsForStreamCommand.js +3 -3
- package/dist-es/commands/MergeShardsCommand.js +2 -2
- package/dist-es/commands/PutRecordCommand.js +3 -3
- package/dist-es/commands/PutRecordsCommand.js +3 -3
- package/dist-es/commands/RegisterStreamConsumerCommand.js +3 -3
- package/dist-es/commands/RemoveTagsFromStreamCommand.js +2 -2
- package/dist-es/commands/SplitShardCommand.js +2 -2
- package/dist-es/commands/StartStreamEncryptionCommand.js +2 -2
- package/dist-es/commands/StopStreamEncryptionCommand.js +2 -2
- package/dist-es/commands/SubscribeToShardCommand.js +3 -3
- package/dist-es/commands/UpdateShardCountCommand.js +3 -3
- package/dist-es/commands/UpdateStreamModeCommand.js +2 -2
- package/dist-es/models/models_0.js +87 -273
- package/dist-es/protocols/Aws_json1_1.js +236 -75
- package/dist-types/models/models_0.d.ts +252 -376
- package/dist-types/protocols/Aws_json1_1.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +126 -250
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +2 -2
- package/package.json +7 -7
|
@@ -1493,9 +1493,7 @@ const deserializeAws_json1_1SubscribeToShardCommand = async (output, context) =>
|
|
|
1493
1493
|
if (output.statusCode >= 300) {
|
|
1494
1494
|
return deserializeAws_json1_1SubscribeToShardCommandError(output, context);
|
|
1495
1495
|
}
|
|
1496
|
-
const
|
|
1497
|
-
let contents = {};
|
|
1498
|
-
contents = deserializeAws_json1_1SubscribeToShardOutput(data, context);
|
|
1496
|
+
const contents = { EventStream: deserializeAws_json1_1SubscribeToShardEventStream(output.body, context) };
|
|
1499
1497
|
const response = {
|
|
1500
1498
|
$metadata: deserializeMetadata(output),
|
|
1501
1499
|
...contents,
|
|
@@ -1753,6 +1751,139 @@ const deserializeAws_json1_1ValidationExceptionResponse = async (parsedOutput, c
|
|
|
1753
1751
|
});
|
|
1754
1752
|
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1755
1753
|
};
|
|
1754
|
+
const deserializeAws_json1_1SubscribeToShardEventStream = (output, context) => {
|
|
1755
|
+
return context.eventStreamMarshaller.deserialize(output, async (event) => {
|
|
1756
|
+
if (event["SubscribeToShardEvent"] != null) {
|
|
1757
|
+
return {
|
|
1758
|
+
SubscribeToShardEvent: await deserializeAws_json1_1SubscribeToShardEvent_event(event["SubscribeToShardEvent"], context),
|
|
1759
|
+
};
|
|
1760
|
+
}
|
|
1761
|
+
if (event["ResourceNotFoundException"] != null) {
|
|
1762
|
+
return {
|
|
1763
|
+
ResourceNotFoundException: await deserializeAws_json1_1ResourceNotFoundException_event(event["ResourceNotFoundException"], context),
|
|
1764
|
+
};
|
|
1765
|
+
}
|
|
1766
|
+
if (event["ResourceInUseException"] != null) {
|
|
1767
|
+
return {
|
|
1768
|
+
ResourceInUseException: await deserializeAws_json1_1ResourceInUseException_event(event["ResourceInUseException"], context),
|
|
1769
|
+
};
|
|
1770
|
+
}
|
|
1771
|
+
if (event["KMSDisabledException"] != null) {
|
|
1772
|
+
return {
|
|
1773
|
+
KMSDisabledException: await deserializeAws_json1_1KMSDisabledException_event(event["KMSDisabledException"], context),
|
|
1774
|
+
};
|
|
1775
|
+
}
|
|
1776
|
+
if (event["KMSInvalidStateException"] != null) {
|
|
1777
|
+
return {
|
|
1778
|
+
KMSInvalidStateException: await deserializeAws_json1_1KMSInvalidStateException_event(event["KMSInvalidStateException"], context),
|
|
1779
|
+
};
|
|
1780
|
+
}
|
|
1781
|
+
if (event["KMSAccessDeniedException"] != null) {
|
|
1782
|
+
return {
|
|
1783
|
+
KMSAccessDeniedException: await deserializeAws_json1_1KMSAccessDeniedException_event(event["KMSAccessDeniedException"], context),
|
|
1784
|
+
};
|
|
1785
|
+
}
|
|
1786
|
+
if (event["KMSNotFoundException"] != null) {
|
|
1787
|
+
return {
|
|
1788
|
+
KMSNotFoundException: await deserializeAws_json1_1KMSNotFoundException_event(event["KMSNotFoundException"], context),
|
|
1789
|
+
};
|
|
1790
|
+
}
|
|
1791
|
+
if (event["KMSOptInRequired"] != null) {
|
|
1792
|
+
return {
|
|
1793
|
+
KMSOptInRequired: await deserializeAws_json1_1KMSOptInRequired_event(event["KMSOptInRequired"], context),
|
|
1794
|
+
};
|
|
1795
|
+
}
|
|
1796
|
+
if (event["KMSThrottlingException"] != null) {
|
|
1797
|
+
return {
|
|
1798
|
+
KMSThrottlingException: await deserializeAws_json1_1KMSThrottlingException_event(event["KMSThrottlingException"], context),
|
|
1799
|
+
};
|
|
1800
|
+
}
|
|
1801
|
+
if (event["InternalFailureException"] != null) {
|
|
1802
|
+
return {
|
|
1803
|
+
InternalFailureException: await deserializeAws_json1_1InternalFailureException_event(event["InternalFailureException"], context),
|
|
1804
|
+
};
|
|
1805
|
+
}
|
|
1806
|
+
return { $unknown: output };
|
|
1807
|
+
});
|
|
1808
|
+
};
|
|
1809
|
+
const deserializeAws_json1_1InternalFailureException_event = async (output, context) => {
|
|
1810
|
+
const parsedOutput = {
|
|
1811
|
+
...output,
|
|
1812
|
+
body: await parseBody(output.body, context),
|
|
1813
|
+
};
|
|
1814
|
+
return deserializeAws_json1_1InternalFailureExceptionResponse(parsedOutput, context);
|
|
1815
|
+
};
|
|
1816
|
+
const deserializeAws_json1_1KMSAccessDeniedException_event = async (output, context) => {
|
|
1817
|
+
const parsedOutput = {
|
|
1818
|
+
...output,
|
|
1819
|
+
body: await parseBody(output.body, context),
|
|
1820
|
+
};
|
|
1821
|
+
return deserializeAws_json1_1KMSAccessDeniedExceptionResponse(parsedOutput, context);
|
|
1822
|
+
};
|
|
1823
|
+
const deserializeAws_json1_1KMSDisabledException_event = async (output, context) => {
|
|
1824
|
+
const parsedOutput = {
|
|
1825
|
+
...output,
|
|
1826
|
+
body: await parseBody(output.body, context),
|
|
1827
|
+
};
|
|
1828
|
+
return deserializeAws_json1_1KMSDisabledExceptionResponse(parsedOutput, context);
|
|
1829
|
+
};
|
|
1830
|
+
const deserializeAws_json1_1KMSInvalidStateException_event = async (output, context) => {
|
|
1831
|
+
const parsedOutput = {
|
|
1832
|
+
...output,
|
|
1833
|
+
body: await parseBody(output.body, context),
|
|
1834
|
+
};
|
|
1835
|
+
return deserializeAws_json1_1KMSInvalidStateExceptionResponse(parsedOutput, context);
|
|
1836
|
+
};
|
|
1837
|
+
const deserializeAws_json1_1KMSNotFoundException_event = async (output, context) => {
|
|
1838
|
+
const parsedOutput = {
|
|
1839
|
+
...output,
|
|
1840
|
+
body: await parseBody(output.body, context),
|
|
1841
|
+
};
|
|
1842
|
+
return deserializeAws_json1_1KMSNotFoundExceptionResponse(parsedOutput, context);
|
|
1843
|
+
};
|
|
1844
|
+
const deserializeAws_json1_1KMSOptInRequired_event = async (output, context) => {
|
|
1845
|
+
const parsedOutput = {
|
|
1846
|
+
...output,
|
|
1847
|
+
body: await parseBody(output.body, context),
|
|
1848
|
+
};
|
|
1849
|
+
return deserializeAws_json1_1KMSOptInRequiredResponse(parsedOutput, context);
|
|
1850
|
+
};
|
|
1851
|
+
const deserializeAws_json1_1KMSThrottlingException_event = async (output, context) => {
|
|
1852
|
+
const parsedOutput = {
|
|
1853
|
+
...output,
|
|
1854
|
+
body: await parseBody(output.body, context),
|
|
1855
|
+
};
|
|
1856
|
+
return deserializeAws_json1_1KMSThrottlingExceptionResponse(parsedOutput, context);
|
|
1857
|
+
};
|
|
1858
|
+
const deserializeAws_json1_1ResourceInUseException_event = async (output, context) => {
|
|
1859
|
+
const parsedOutput = {
|
|
1860
|
+
...output,
|
|
1861
|
+
body: await parseBody(output.body, context),
|
|
1862
|
+
};
|
|
1863
|
+
return deserializeAws_json1_1ResourceInUseExceptionResponse(parsedOutput, context);
|
|
1864
|
+
};
|
|
1865
|
+
const deserializeAws_json1_1ResourceNotFoundException_event = async (output, context) => {
|
|
1866
|
+
const parsedOutput = {
|
|
1867
|
+
...output,
|
|
1868
|
+
body: await parseBody(output.body, context),
|
|
1869
|
+
};
|
|
1870
|
+
return deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
1871
|
+
};
|
|
1872
|
+
const deserializeAws_json1_1SubscribeToShardEvent_event = async (output, context) => {
|
|
1873
|
+
const contents = {};
|
|
1874
|
+
const data = await parseBody(output.body, context);
|
|
1875
|
+
Object.assign(contents, deserializeAws_json1_1SubscribeToShardEvent(data, context));
|
|
1876
|
+
return contents;
|
|
1877
|
+
};
|
|
1878
|
+
const deserializeAws_json1_1InternalFailureExceptionResponse = async (parsedOutput, context) => {
|
|
1879
|
+
const body = parsedOutput.body;
|
|
1880
|
+
const deserialized = deserializeAws_json1_1InternalFailureException(body, context);
|
|
1881
|
+
const exception = new models_0_1.InternalFailureException({
|
|
1882
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
1883
|
+
...deserialized,
|
|
1884
|
+
});
|
|
1885
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
1886
|
+
};
|
|
1756
1887
|
const serializeAws_json1_1AddTagsToStreamInput = (input, context) => {
|
|
1757
1888
|
return {
|
|
1758
1889
|
...(input.StreamName != null && { StreamName: input.StreamName }),
|
|
@@ -2424,66 +2555,6 @@ const deserializeAws_json1_1SubscribeToShardEvent = (output, context) => {
|
|
|
2424
2555
|
Records: output.Records != null ? deserializeAws_json1_1RecordList(output.Records, context) : undefined,
|
|
2425
2556
|
};
|
|
2426
2557
|
};
|
|
2427
|
-
const deserializeAws_json1_1SubscribeToShardEventStream = (output, context) => {
|
|
2428
|
-
if (output.InternalFailureException !== undefined && output.InternalFailureException !== null) {
|
|
2429
|
-
return {
|
|
2430
|
-
InternalFailureException: deserializeAws_json1_1InternalFailureException(output.InternalFailureException, context),
|
|
2431
|
-
};
|
|
2432
|
-
}
|
|
2433
|
-
if (output.KMSAccessDeniedException !== undefined && output.KMSAccessDeniedException !== null) {
|
|
2434
|
-
return {
|
|
2435
|
-
KMSAccessDeniedException: deserializeAws_json1_1KMSAccessDeniedException(output.KMSAccessDeniedException, context),
|
|
2436
|
-
};
|
|
2437
|
-
}
|
|
2438
|
-
if (output.KMSDisabledException !== undefined && output.KMSDisabledException !== null) {
|
|
2439
|
-
return {
|
|
2440
|
-
KMSDisabledException: deserializeAws_json1_1KMSDisabledException(output.KMSDisabledException, context),
|
|
2441
|
-
};
|
|
2442
|
-
}
|
|
2443
|
-
if (output.KMSInvalidStateException !== undefined && output.KMSInvalidStateException !== null) {
|
|
2444
|
-
return {
|
|
2445
|
-
KMSInvalidStateException: deserializeAws_json1_1KMSInvalidStateException(output.KMSInvalidStateException, context),
|
|
2446
|
-
};
|
|
2447
|
-
}
|
|
2448
|
-
if (output.KMSNotFoundException !== undefined && output.KMSNotFoundException !== null) {
|
|
2449
|
-
return {
|
|
2450
|
-
KMSNotFoundException: deserializeAws_json1_1KMSNotFoundException(output.KMSNotFoundException, context),
|
|
2451
|
-
};
|
|
2452
|
-
}
|
|
2453
|
-
if (output.KMSOptInRequired !== undefined && output.KMSOptInRequired !== null) {
|
|
2454
|
-
return {
|
|
2455
|
-
KMSOptInRequired: deserializeAws_json1_1KMSOptInRequired(output.KMSOptInRequired, context),
|
|
2456
|
-
};
|
|
2457
|
-
}
|
|
2458
|
-
if (output.KMSThrottlingException !== undefined && output.KMSThrottlingException !== null) {
|
|
2459
|
-
return {
|
|
2460
|
-
KMSThrottlingException: deserializeAws_json1_1KMSThrottlingException(output.KMSThrottlingException, context),
|
|
2461
|
-
};
|
|
2462
|
-
}
|
|
2463
|
-
if (output.ResourceInUseException !== undefined && output.ResourceInUseException !== null) {
|
|
2464
|
-
return {
|
|
2465
|
-
ResourceInUseException: deserializeAws_json1_1ResourceInUseException(output.ResourceInUseException, context),
|
|
2466
|
-
};
|
|
2467
|
-
}
|
|
2468
|
-
if (output.ResourceNotFoundException !== undefined && output.ResourceNotFoundException !== null) {
|
|
2469
|
-
return {
|
|
2470
|
-
ResourceNotFoundException: deserializeAws_json1_1ResourceNotFoundException(output.ResourceNotFoundException, context),
|
|
2471
|
-
};
|
|
2472
|
-
}
|
|
2473
|
-
if (output.SubscribeToShardEvent !== undefined && output.SubscribeToShardEvent !== null) {
|
|
2474
|
-
return {
|
|
2475
|
-
SubscribeToShardEvent: deserializeAws_json1_1SubscribeToShardEvent(output.SubscribeToShardEvent, context),
|
|
2476
|
-
};
|
|
2477
|
-
}
|
|
2478
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2479
|
-
};
|
|
2480
|
-
const deserializeAws_json1_1SubscribeToShardOutput = (output, context) => {
|
|
2481
|
-
return {
|
|
2482
|
-
EventStream: output.EventStream != null
|
|
2483
|
-
? deserializeAws_json1_1SubscribeToShardEventStream((0, smithy_client_1.expectUnion)(output.EventStream), context)
|
|
2484
|
-
: undefined,
|
|
2485
|
-
};
|
|
2486
|
-
};
|
|
2487
2558
|
const deserializeAws_json1_1Tag = (output, context) => {
|
|
2488
2559
|
return {
|
|
2489
2560
|
Key: (0, smithy_client_1.expectString)(output.Key),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { AddTagsToStreamInputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1AddTagsToStreamCommand, serializeAws_json1_1AddTagsToStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var AddTagsToStreamCommand = (function (_super) {
|
|
7
7
|
__extends(AddTagsToStreamCommand, _super);
|
|
@@ -20,7 +20,7 @@ var AddTagsToStreamCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: AddTagsToStreamInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateStreamInputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateStreamCommand, serializeAws_json1_1CreateStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateStreamCommand = (function (_super) {
|
|
7
7
|
__extends(CreateStreamCommand, _super);
|
|
@@ -20,7 +20,7 @@ var CreateStreamCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateStreamInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DecreaseStreamRetentionPeriodInputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DecreaseStreamRetentionPeriodCommand, serializeAws_json1_1DecreaseStreamRetentionPeriodCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DecreaseStreamRetentionPeriodCommand = (function (_super) {
|
|
7
7
|
__extends(DecreaseStreamRetentionPeriodCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DecreaseStreamRetentionPeriodCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DecreaseStreamRetentionPeriodInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteStreamInputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteStreamCommand, serializeAws_json1_1DeleteStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteStreamCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteStreamCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteStreamCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteStreamInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeregisterStreamConsumerInputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeregisterStreamConsumerCommand, serializeAws_json1_1DeregisterStreamConsumerCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeregisterStreamConsumerCommand = (function (_super) {
|
|
7
7
|
__extends(DeregisterStreamConsumerCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeregisterStreamConsumerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeregisterStreamConsumerInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeLimitsInputFilterSensitiveLog, DescribeLimitsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeLimitsCommand, serializeAws_json1_1DescribeLimitsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeLimitsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeLimitsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeLimitsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeLimitsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeLimitsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeStreamInputFilterSensitiveLog, DescribeStreamOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeStreamCommand, serializeAws_json1_1DescribeStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeStreamCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeStreamCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeStreamCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeStreamInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeStreamOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeStreamConsumerInputFilterSensitiveLog, DescribeStreamConsumerOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeStreamConsumerCommand, serializeAws_json1_1DescribeStreamConsumerCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeStreamConsumerCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeStreamConsumerCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeStreamConsumerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeStreamConsumerInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeStreamConsumerOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeStreamSummaryInputFilterSensitiveLog, DescribeStreamSummaryOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeStreamSummaryCommand, serializeAws_json1_1DescribeStreamSummaryCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeStreamSummaryCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeStreamSummaryCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeStreamSummaryCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeStreamSummaryInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeStreamSummaryOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DisableEnhancedMonitoringInputFilterSensitiveLog, EnhancedMonitoringOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DisableEnhancedMonitoringCommand, serializeAws_json1_1DisableEnhancedMonitoringCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DisableEnhancedMonitoringCommand = (function (_super) {
|
|
7
7
|
__extends(DisableEnhancedMonitoringCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DisableEnhancedMonitoringCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DisableEnhancedMonitoringInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: EnhancedMonitoringOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { EnableEnhancedMonitoringInputFilterSensitiveLog, EnhancedMonitoringOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1EnableEnhancedMonitoringCommand, serializeAws_json1_1EnableEnhancedMonitoringCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var EnableEnhancedMonitoringCommand = (function (_super) {
|
|
7
7
|
__extends(EnableEnhancedMonitoringCommand, _super);
|
|
@@ -20,8 +20,8 @@ var EnableEnhancedMonitoringCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: EnableEnhancedMonitoringInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: EnhancedMonitoringOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetRecordsInputFilterSensitiveLog, GetRecordsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetRecordsCommand, serializeAws_json1_1GetRecordsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetRecordsCommand = (function (_super) {
|
|
7
7
|
__extends(GetRecordsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetRecordsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetRecordsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetRecordsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetShardIteratorInputFilterSensitiveLog, GetShardIteratorOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetShardIteratorCommand, serializeAws_json1_1GetShardIteratorCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetShardIteratorCommand = (function (_super) {
|
|
7
7
|
__extends(GetShardIteratorCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetShardIteratorCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetShardIteratorInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetShardIteratorOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { IncreaseStreamRetentionPeriodInputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1IncreaseStreamRetentionPeriodCommand, serializeAws_json1_1IncreaseStreamRetentionPeriodCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var IncreaseStreamRetentionPeriodCommand = (function (_super) {
|
|
7
7
|
__extends(IncreaseStreamRetentionPeriodCommand, _super);
|
|
@@ -20,7 +20,7 @@ var IncreaseStreamRetentionPeriodCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: IncreaseStreamRetentionPeriodInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListShardsInputFilterSensitiveLog, ListShardsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListShardsCommand, serializeAws_json1_1ListShardsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListShardsCommand = (function (_super) {
|
|
7
7
|
__extends(ListShardsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListShardsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListShardsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListShardsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListStreamConsumersInputFilterSensitiveLog, ListStreamConsumersOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListStreamConsumersCommand, serializeAws_json1_1ListStreamConsumersCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListStreamConsumersCommand = (function (_super) {
|
|
7
7
|
__extends(ListStreamConsumersCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListStreamConsumersCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListStreamConsumersInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListStreamConsumersOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListStreamsInputFilterSensitiveLog, ListStreamsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListStreamsCommand, serializeAws_json1_1ListStreamsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListStreamsCommand = (function (_super) {
|
|
7
7
|
__extends(ListStreamsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListStreamsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListStreamsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListStreamsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForStreamInputFilterSensitiveLog, ListTagsForStreamOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListTagsForStreamCommand, serializeAws_json1_1ListTagsForStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListTagsForStreamCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForStreamCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForStreamCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForStreamInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForStreamOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { MergeShardsInputFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1MergeShardsCommand, serializeAws_json1_1MergeShardsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var MergeShardsCommand = (function (_super) {
|
|
7
7
|
__extends(MergeShardsCommand, _super);
|
|
@@ -20,7 +20,7 @@ var MergeShardsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: MergeShardsInputFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PutRecordInputFilterSensitiveLog, PutRecordOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1PutRecordCommand, serializeAws_json1_1PutRecordCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var PutRecordCommand = (function (_super) {
|
|
7
7
|
__extends(PutRecordCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutRecordCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutRecordInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutRecordOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PutRecordsInputFilterSensitiveLog, PutRecordsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1PutRecordsCommand, serializeAws_json1_1PutRecordsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var PutRecordsCommand = (function (_super) {
|
|
7
7
|
__extends(PutRecordsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutRecordsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutRecordsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutRecordsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|