@aws-sdk/client-kinesis 3.952.0 → 3.953.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 (59) hide show
  1. package/dist-cjs/index.js +478 -319
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddTagsToStreamCommand.js +2 -2
  4. package/dist-es/commands/CreateStreamCommand.js +2 -2
  5. package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +2 -2
  6. package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
  7. package/dist-es/commands/DeleteStreamCommand.js +2 -2
  8. package/dist-es/commands/DeregisterStreamConsumerCommand.js +2 -2
  9. package/dist-es/commands/DescribeAccountSettingsCommand.js +2 -2
  10. package/dist-es/commands/DescribeLimitsCommand.js +2 -2
  11. package/dist-es/commands/DescribeStreamCommand.js +2 -2
  12. package/dist-es/commands/DescribeStreamConsumerCommand.js +2 -2
  13. package/dist-es/commands/DescribeStreamSummaryCommand.js +2 -2
  14. package/dist-es/commands/DisableEnhancedMonitoringCommand.js +2 -2
  15. package/dist-es/commands/EnableEnhancedMonitoringCommand.js +2 -2
  16. package/dist-es/commands/GetRecordsCommand.js +2 -2
  17. package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
  18. package/dist-es/commands/GetShardIteratorCommand.js +2 -2
  19. package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +2 -2
  20. package/dist-es/commands/ListShardsCommand.js +2 -2
  21. package/dist-es/commands/ListStreamConsumersCommand.js +2 -2
  22. package/dist-es/commands/ListStreamsCommand.js +2 -2
  23. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  24. package/dist-es/commands/ListTagsForStreamCommand.js +2 -2
  25. package/dist-es/commands/MergeShardsCommand.js +2 -2
  26. package/dist-es/commands/PutRecordCommand.js +2 -2
  27. package/dist-es/commands/PutRecordsCommand.js +2 -2
  28. package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
  29. package/dist-es/commands/RegisterStreamConsumerCommand.js +2 -2
  30. package/dist-es/commands/RemoveTagsFromStreamCommand.js +2 -2
  31. package/dist-es/commands/SplitShardCommand.js +2 -2
  32. package/dist-es/commands/StartStreamEncryptionCommand.js +2 -2
  33. package/dist-es/commands/StopStreamEncryptionCommand.js +2 -2
  34. package/dist-es/commands/SubscribeToShardCommand.js +2 -2
  35. package/dist-es/commands/TagResourceCommand.js +2 -2
  36. package/dist-es/commands/UntagResourceCommand.js +2 -2
  37. package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
  38. package/dist-es/commands/UpdateMaxRecordSizeCommand.js +2 -2
  39. package/dist-es/commands/UpdateShardCountCommand.js +2 -2
  40. package/dist-es/commands/UpdateStreamModeCommand.js +2 -2
  41. package/dist-es/commands/UpdateStreamWarmThroughputCommand.js +2 -2
  42. package/dist-es/index.js +1 -0
  43. package/dist-es/runtimeConfig.shared.js +7 -6
  44. package/dist-es/schemas/schemas_0.js +261 -240
  45. package/dist-types/KinesisClient.d.ts +1 -10
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  48. package/dist-types/runtimeConfig.d.ts +6 -2
  49. package/dist-types/runtimeConfig.native.d.ts +6 -2
  50. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  51. package/dist-types/schemas/schemas_0.d.ts +139 -154
  52. package/dist-types/ts3.4/KinesisClient.d.ts +0 -4
  53. package/dist-types/ts3.4/index.d.ts +1 -0
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -154
  59. package/package.json +38 -38
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.kinesis",
32
- serviceTarget: "Kinesis_20131202",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.kinesis",
32
+ xmlNamespace: "http://kinesis.amazonaws.com/doc/2013-12-02",
33
+ version: "2013-12-02",
34
+ serviceTarget: "Kinesis_20131202",
35
+ },
35
36
  serviceId: config?.serviceId ?? "Kinesis",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddTagsToStream } from "../schemas/schemas_0";
4
+ import { AddTagsToStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddTagsToStreamCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class AddTagsToStreamCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "AddTagsToStream", {})
17
17
  .n("KinesisClient", "AddTagsToStreamCommand")
18
- .sc(AddTagsToStream)
18
+ .sc(AddTagsToStream$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateStream } from "../schemas/schemas_0";
4
+ import { CreateStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateStreamCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateStreamCommand extends $Command
11
11
  })
12
12
  .s("Kinesis_20131202", "CreateStream", {})
13
13
  .n("KinesisClient", "CreateStreamCommand")
14
- .sc(CreateStream)
14
+ .sc(CreateStream$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DecreaseStreamRetentionPeriod } from "../schemas/schemas_0";
4
+ import { DecreaseStreamRetentionPeriod$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DecreaseStreamRetentionPeriodCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DecreaseStreamRetentionPeriodCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DecreaseStreamRetentionPeriod", {})
17
17
  .n("KinesisClient", "DecreaseStreamRetentionPeriodCommand")
18
- .sc(DecreaseStreamRetentionPeriod)
18
+ .sc(DecreaseStreamRetentionPeriod$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteResourcePolicy } from "../schemas/schemas_0";
4
+ import { DeleteResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DeleteResourcePolicyCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DeleteResourcePolicy", {})
17
17
  .n("KinesisClient", "DeleteResourcePolicyCommand")
18
- .sc(DeleteResourcePolicy)
18
+ .sc(DeleteResourcePolicy$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteStream } from "../schemas/schemas_0";
4
+ import { DeleteStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteStreamCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DeleteStreamCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DeleteStream", {})
17
17
  .n("KinesisClient", "DeleteStreamCommand")
18
- .sc(DeleteStream)
18
+ .sc(DeleteStream$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeregisterStreamConsumer } from "../schemas/schemas_0";
4
+ import { DeregisterStreamConsumer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeregisterStreamConsumerCommand extends $Command
7
7
  .classBuilder()
@@ -16,6 +16,6 @@ export class DeregisterStreamConsumerCommand extends $Command
16
16
  })
17
17
  .s("Kinesis_20131202", "DeregisterStreamConsumer", {})
18
18
  .n("KinesisClient", "DeregisterStreamConsumerCommand")
19
- .sc(DeregisterStreamConsumer)
19
+ .sc(DeregisterStreamConsumer$)
20
20
  .build() {
21
21
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAccountSettings } from "../schemas/schemas_0";
4
+ import { DescribeAccountSettings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAccountSettingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAccountSettingsCommand extends $Command
11
11
  })
12
12
  .s("Kinesis_20131202", "DescribeAccountSettings", {})
13
13
  .n("KinesisClient", "DescribeAccountSettingsCommand")
14
- .sc(DescribeAccountSettings)
14
+ .sc(DescribeAccountSettings$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeLimits } from "../schemas/schemas_0";
4
+ import { DescribeLimits$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeLimitsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeLimitsCommand extends $Command
11
11
  })
12
12
  .s("Kinesis_20131202", "DescribeLimits", {})
13
13
  .n("KinesisClient", "DescribeLimitsCommand")
14
- .sc(DescribeLimits)
14
+ .sc(DescribeLimits$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStream } from "../schemas/schemas_0";
4
+ import { DescribeStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStreamCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DescribeStreamCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DescribeStream", {})
17
17
  .n("KinesisClient", "DescribeStreamCommand")
18
- .sc(DescribeStream)
18
+ .sc(DescribeStream$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStreamConsumer } from "../schemas/schemas_0";
4
+ import { DescribeStreamConsumer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStreamConsumerCommand extends $Command
7
7
  .classBuilder()
@@ -16,6 +16,6 @@ export class DescribeStreamConsumerCommand extends $Command
16
16
  })
17
17
  .s("Kinesis_20131202", "DescribeStreamConsumer", {})
18
18
  .n("KinesisClient", "DescribeStreamConsumerCommand")
19
- .sc(DescribeStreamConsumer)
19
+ .sc(DescribeStreamConsumer$)
20
20
  .build() {
21
21
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStreamSummary } from "../schemas/schemas_0";
4
+ import { DescribeStreamSummary$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStreamSummaryCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DescribeStreamSummaryCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DescribeStreamSummary", {})
17
17
  .n("KinesisClient", "DescribeStreamSummaryCommand")
18
- .sc(DescribeStreamSummary)
18
+ .sc(DescribeStreamSummary$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisableEnhancedMonitoring } from "../schemas/schemas_0";
4
+ import { DisableEnhancedMonitoring$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisableEnhancedMonitoringCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class DisableEnhancedMonitoringCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "DisableEnhancedMonitoring", {})
17
17
  .n("KinesisClient", "DisableEnhancedMonitoringCommand")
18
- .sc(DisableEnhancedMonitoring)
18
+ .sc(DisableEnhancedMonitoring$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { EnableEnhancedMonitoring } from "../schemas/schemas_0";
4
+ import { EnableEnhancedMonitoring$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EnableEnhancedMonitoringCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class EnableEnhancedMonitoringCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "EnableEnhancedMonitoring", {})
17
17
  .n("KinesisClient", "EnableEnhancedMonitoringCommand")
18
- .sc(EnableEnhancedMonitoring)
18
+ .sc(EnableEnhancedMonitoring$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetRecords } from "../schemas/schemas_0";
4
+ import { GetRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class GetRecordsCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "GetRecords", {})
17
17
  .n("KinesisClient", "GetRecordsCommand")
18
- .sc(GetRecords)
18
+ .sc(GetRecords$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetResourcePolicy } from "../schemas/schemas_0";
4
+ import { GetResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class GetResourcePolicyCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "GetResourcePolicy", {})
17
17
  .n("KinesisClient", "GetResourcePolicyCommand")
18
- .sc(GetResourcePolicy)
18
+ .sc(GetResourcePolicy$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetShardIterator } from "../schemas/schemas_0";
4
+ import { GetShardIterator$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetShardIteratorCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class GetShardIteratorCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "GetShardIterator", {})
17
17
  .n("KinesisClient", "GetShardIteratorCommand")
18
- .sc(GetShardIterator)
18
+ .sc(GetShardIterator$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { IncreaseStreamRetentionPeriod } from "../schemas/schemas_0";
4
+ import { IncreaseStreamRetentionPeriod$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class IncreaseStreamRetentionPeriodCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class IncreaseStreamRetentionPeriodCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "IncreaseStreamRetentionPeriod", {})
17
17
  .n("KinesisClient", "IncreaseStreamRetentionPeriodCommand")
18
- .sc(IncreaseStreamRetentionPeriod)
18
+ .sc(IncreaseStreamRetentionPeriod$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListShards } from "../schemas/schemas_0";
4
+ import { ListShards$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListShardsCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class ListShardsCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "ListShards", {})
17
17
  .n("KinesisClient", "ListShardsCommand")
18
- .sc(ListShards)
18
+ .sc(ListShards$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStreamConsumers } from "../schemas/schemas_0";
4
+ import { ListStreamConsumers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamConsumersCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class ListStreamConsumersCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "ListStreamConsumers", {})
17
17
  .n("KinesisClient", "ListStreamConsumersCommand")
18
- .sc(ListStreamConsumers)
18
+ .sc(ListStreamConsumers$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStreams } from "../schemas/schemas_0";
4
+ import { ListStreams$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStreamsCommand extends $Command
11
11
  })
12
12
  .s("Kinesis_20131202", "ListStreams", {})
13
13
  .n("KinesisClient", "ListStreamsCommand")
14
- .sc(ListStreams)
14
+ .sc(ListStreams$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class ListTagsForResourceCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "ListTagsForResource", {})
17
17
  .n("KinesisClient", "ListTagsForResourceCommand")
18
- .sc(ListTagsForResource)
18
+ .sc(ListTagsForResource$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForStream } from "../schemas/schemas_0";
4
+ import { ListTagsForStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForStreamCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class ListTagsForStreamCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "ListTagsForStream", {})
17
17
  .n("KinesisClient", "ListTagsForStreamCommand")
18
- .sc(ListTagsForStream)
18
+ .sc(ListTagsForStream$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { MergeShards } from "../schemas/schemas_0";
4
+ import { MergeShards$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class MergeShardsCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class MergeShardsCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "MergeShards", {})
17
17
  .n("KinesisClient", "MergeShardsCommand")
18
- .sc(MergeShards)
18
+ .sc(MergeShards$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutRecord } from "../schemas/schemas_0";
4
+ import { PutRecord$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutRecordCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class PutRecordCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "PutRecord", {})
17
17
  .n("KinesisClient", "PutRecordCommand")
18
- .sc(PutRecord)
18
+ .sc(PutRecord$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutRecords } from "../schemas/schemas_0";
4
+ import { PutRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class PutRecordsCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "PutRecords", {})
17
17
  .n("KinesisClient", "PutRecordsCommand")
18
- .sc(PutRecords)
18
+ .sc(PutRecords$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutResourcePolicy } from "../schemas/schemas_0";
4
+ import { PutResourcePolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutResourcePolicyCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class PutResourcePolicyCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "PutResourcePolicy", {})
17
17
  .n("KinesisClient", "PutResourcePolicyCommand")
18
- .sc(PutResourcePolicy)
18
+ .sc(PutResourcePolicy$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterStreamConsumer } from "../schemas/schemas_0";
4
+ import { RegisterStreamConsumer$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterStreamConsumerCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class RegisterStreamConsumerCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "RegisterStreamConsumer", {})
17
17
  .n("KinesisClient", "RegisterStreamConsumerCommand")
18
- .sc(RegisterStreamConsumer)
18
+ .sc(RegisterStreamConsumer$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemoveTagsFromStream } from "../schemas/schemas_0";
4
+ import { RemoveTagsFromStream$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemoveTagsFromStreamCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class RemoveTagsFromStreamCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "RemoveTagsFromStream", {})
17
17
  .n("KinesisClient", "RemoveTagsFromStreamCommand")
18
- .sc(RemoveTagsFromStream)
18
+ .sc(RemoveTagsFromStream$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SplitShard } from "../schemas/schemas_0";
4
+ import { SplitShard$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SplitShardCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class SplitShardCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "SplitShard", {})
17
17
  .n("KinesisClient", "SplitShardCommand")
18
- .sc(SplitShard)
18
+ .sc(SplitShard$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartStreamEncryption } from "../schemas/schemas_0";
4
+ import { StartStreamEncryption$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartStreamEncryptionCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class StartStreamEncryptionCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "StartStreamEncryption", {})
17
17
  .n("KinesisClient", "StartStreamEncryptionCommand")
18
- .sc(StartStreamEncryption)
18
+ .sc(StartStreamEncryption$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopStreamEncryption } from "../schemas/schemas_0";
4
+ import { StopStreamEncryption$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopStreamEncryptionCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class StopStreamEncryptionCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "StopStreamEncryption", {})
17
17
  .n("KinesisClient", "StopStreamEncryptionCommand")
18
- .sc(StopStreamEncryption)
18
+ .sc(StopStreamEncryption$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SubscribeToShard } from "../schemas/schemas_0";
4
+ import { SubscribeToShard$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SubscribeToShardCommand extends $Command
7
7
  .classBuilder()
@@ -19,6 +19,6 @@ export class SubscribeToShardCommand extends $Command
19
19
  },
20
20
  })
21
21
  .n("KinesisClient", "SubscribeToShardCommand")
22
- .sc(SubscribeToShard)
22
+ .sc(SubscribeToShard$)
23
23
  .build() {
24
24
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class TagResourceCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "TagResource", {})
17
17
  .n("KinesisClient", "TagResourceCommand")
18
- .sc(TagResource)
18
+ .sc(TagResource$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -15,6 +15,6 @@ export class UntagResourceCommand extends $Command
15
15
  })
16
16
  .s("Kinesis_20131202", "UntagResource", {})
17
17
  .n("KinesisClient", "UntagResourceCommand")
18
- .sc(UntagResource)
18
+ .sc(UntagResource$)
19
19
  .build() {
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateAccountSettings } from "../schemas/schemas_0";
4
+ import { UpdateAccountSettings$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAccountSettingsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAccountSettingsCommand extends $Command
11
11
  })
12
12
  .s("Kinesis_20131202", "UpdateAccountSettings", {})
13
13
  .n("KinesisClient", "UpdateAccountSettingsCommand")
14
- .sc(UpdateAccountSettings)
14
+ .sc(UpdateAccountSettings$)
15
15
  .build() {
16
16
  }