@aws-sdk/client-keyspacesstreams 3.838.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 (111) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +237 -0
  3. package/dist-cjs/KeyspacesStreams.js +19 -0
  4. package/dist-cjs/KeyspacesStreamsClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/GetRecordsCommand.js +26 -0
  8. package/dist-cjs/commands/GetShardIteratorCommand.js +26 -0
  9. package/dist-cjs/commands/GetStreamCommand.js +26 -0
  10. package/dist-cjs/commands/ListStreamsCommand.js +26 -0
  11. package/dist-cjs/commands/index.js +7 -0
  12. package/dist-cjs/endpoint/EndpointParameters.js +15 -0
  13. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  14. package/dist-cjs/endpoint/ruleset.js +7 -0
  15. package/dist-cjs/extensionConfiguration.js +2 -0
  16. package/dist-cjs/index.js +11 -0
  17. package/dist-cjs/models/KeyspacesStreamsServiceException.js +12 -0
  18. package/dist-cjs/models/index.js +4 -0
  19. package/dist-cjs/models/models_0.js +159 -0
  20. package/dist-cjs/pagination/GetStreamPaginator.js +7 -0
  21. package/dist-cjs/pagination/Interfaces.js +2 -0
  22. package/dist-cjs/pagination/ListStreamsPaginator.js +7 -0
  23. package/dist-cjs/pagination/index.js +6 -0
  24. package/dist-cjs/protocols/Aws_json1_0.js +392 -0
  25. package/dist-cjs/runtimeConfig.browser.js +39 -0
  26. package/dist-cjs/runtimeConfig.js +56 -0
  27. package/dist-cjs/runtimeConfig.native.js +15 -0
  28. package/dist-cjs/runtimeConfig.shared.js +34 -0
  29. package/dist-cjs/runtimeExtensions.js +13 -0
  30. package/dist-es/KeyspacesStreams.js +15 -0
  31. package/dist-es/KeyspacesStreamsClient.js +48 -0
  32. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  33. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  34. package/dist-es/commands/GetRecordsCommand.js +22 -0
  35. package/dist-es/commands/GetShardIteratorCommand.js +22 -0
  36. package/dist-es/commands/GetStreamCommand.js +22 -0
  37. package/dist-es/commands/ListStreamsCommand.js +22 -0
  38. package/dist-es/commands/index.js +4 -0
  39. package/dist-es/endpoint/EndpointParameters.js +11 -0
  40. package/dist-es/endpoint/endpointResolver.js +14 -0
  41. package/dist-es/endpoint/ruleset.js +4 -0
  42. package/dist-es/extensionConfiguration.js +1 -0
  43. package/dist-es/index.js +6 -0
  44. package/dist-es/models/KeyspacesStreamsServiceException.js +8 -0
  45. package/dist-es/models/index.js +1 -0
  46. package/dist-es/models/models_0.js +151 -0
  47. package/dist-es/pagination/GetStreamPaginator.js +4 -0
  48. package/dist-es/pagination/Interfaces.js +1 -0
  49. package/dist-es/pagination/ListStreamsPaginator.js +4 -0
  50. package/dist-es/pagination/index.js +3 -0
  51. package/dist-es/protocols/Aws_json1_0.js +381 -0
  52. package/dist-es/runtimeConfig.browser.js +34 -0
  53. package/dist-es/runtimeConfig.js +51 -0
  54. package/dist-es/runtimeConfig.native.js +11 -0
  55. package/dist-es/runtimeConfig.shared.js +30 -0
  56. package/dist-es/runtimeExtensions.js +9 -0
  57. package/dist-types/KeyspacesStreams.d.ts +39 -0
  58. package/dist-types/KeyspacesStreamsClient.d.ts +191 -0
  59. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  60. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  61. package/dist-types/commands/GetRecordsCommand.d.ts +228 -0
  62. package/dist-types/commands/GetShardIteratorCommand.d.ts +90 -0
  63. package/dist-types/commands/GetStreamCommand.d.ts +112 -0
  64. package/dist-types/commands/ListStreamsCommand.d.ts +98 -0
  65. package/dist-types/commands/index.d.ts +4 -0
  66. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  67. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  68. package/dist-types/endpoint/ruleset.d.ts +2 -0
  69. package/dist-types/extensionConfiguration.d.ts +9 -0
  70. package/dist-types/index.d.ts +14 -0
  71. package/dist-types/models/KeyspacesStreamsServiceException.d.ts +14 -0
  72. package/dist-types/models/index.d.ts +1 -0
  73. package/dist-types/models/models_0.d.ts +1396 -0
  74. package/dist-types/pagination/GetStreamPaginator.d.ts +7 -0
  75. package/dist-types/pagination/Interfaces.d.ts +8 -0
  76. package/dist-types/pagination/ListStreamsPaginator.d.ts +7 -0
  77. package/dist-types/pagination/index.d.ts +3 -0
  78. package/dist-types/protocols/Aws_json1_0.d.ts +38 -0
  79. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  80. package/dist-types/runtimeConfig.d.ts +50 -0
  81. package/dist-types/runtimeConfig.native.d.ts +49 -0
  82. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  83. package/dist-types/runtimeExtensions.d.ts +17 -0
  84. package/dist-types/ts3.4/KeyspacesStreams.d.ts +76 -0
  85. package/dist-types/ts3.4/KeyspacesStreamsClient.d.ts +146 -0
  86. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  87. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  88. package/dist-types/ts3.4/commands/GetRecordsCommand.d.ts +47 -0
  89. package/dist-types/ts3.4/commands/GetShardIteratorCommand.d.ts +50 -0
  90. package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +47 -0
  91. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +47 -0
  92. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  93. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  94. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  95. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  96. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  97. package/dist-types/ts3.4/index.d.ts +9 -0
  98. package/dist-types/ts3.4/models/KeyspacesStreamsServiceException.d.ts +9 -0
  99. package/dist-types/ts3.4/models/index.d.ts +1 -0
  100. package/dist-types/ts3.4/models/models_0.d.ts +957 -0
  101. package/dist-types/ts3.4/pagination/GetStreamPaginator.d.ts +11 -0
  102. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  103. package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +11 -0
  104. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  105. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +53 -0
  106. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  107. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  108. package/dist-types/ts3.4/runtimeConfig.native.d.ts +97 -0
  109. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  110. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  111. package/package.json +99 -0
@@ -0,0 +1,41 @@
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
2
+ import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
+ export const defaultKeyspacesStreamsHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
+ return {
5
+ operation: getSmithyContext(context).operation,
6
+ region: (await normalizeProvider(config.region)()) ||
7
+ (() => {
8
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
9
+ })(),
10
+ };
11
+ };
12
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
13
+ return {
14
+ schemeId: "aws.auth#sigv4",
15
+ signingProperties: {
16
+ name: "cassandra",
17
+ region: authParameters.region,
18
+ },
19
+ propertiesExtractor: (config, context) => ({
20
+ signingProperties: {
21
+ config,
22
+ context,
23
+ },
24
+ }),
25
+ };
26
+ }
27
+ export const defaultKeyspacesStreamsHttpAuthSchemeProvider = (authParameters) => {
28
+ const options = [];
29
+ switch (authParameters.operation) {
30
+ default: {
31
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
32
+ }
33
+ }
34
+ return options;
35
+ };
36
+ export const resolveHttpAuthSchemeConfig = (config) => {
37
+ const config_0 = resolveAwsSdkSigV4Config(config);
38
+ return Object.assign(config_0, {
39
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
40
+ });
41
+ };
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetRecordsCommand, se_GetRecordsCommand } from "../protocols/Aws_json1_0";
6
+ export { $Command };
7
+ export class GetRecordsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("KeyspacesStreams", "GetRecords", {})
17
+ .n("KeyspacesStreamsClient", "GetRecordsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetRecordsCommand)
20
+ .de(de_GetRecordsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetShardIteratorCommand, se_GetShardIteratorCommand } from "../protocols/Aws_json1_0";
6
+ export { $Command };
7
+ export class GetShardIteratorCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("KeyspacesStreams", "GetShardIterator", {})
17
+ .n("KeyspacesStreamsClient", "GetShardIteratorCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetShardIteratorCommand)
20
+ .de(de_GetShardIteratorCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetStreamCommand, se_GetStreamCommand } from "../protocols/Aws_json1_0";
6
+ export { $Command };
7
+ export class GetStreamCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("KeyspacesStreams", "GetStream", {})
17
+ .n("KeyspacesStreamsClient", "GetStreamCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetStreamCommand)
20
+ .de(de_GetStreamCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListStreamsCommand, se_ListStreamsCommand } from "../protocols/Aws_json1_0";
6
+ export { $Command };
7
+ export class ListStreamsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("KeyspacesStreams", "ListStreams", {})
17
+ .n("KeyspacesStreamsClient", "ListStreamsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListStreamsCommand)
20
+ .de(de_ListStreamsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./GetRecordsCommand";
2
+ export * from "./GetShardIteratorCommand";
3
+ export * from "./GetStreamCommand";
4
+ export * from "./ListStreamsCommand";
@@ -0,0 +1,11 @@
1
+ export const resolveClientEndpointParameters = (options) => {
2
+ return Object.assign(options, {
3
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
4
+ defaultSigningName: "cassandra",
5
+ });
6
+ };
7
+ export const commonParams = {
8
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
9
+ Endpoint: { type: "builtInParams", name: "endpoint" },
10
+ Region: { type: "builtInParams", name: "region" },
11
+ };
@@ -0,0 +1,14 @@
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
3
+ import { ruleSet } from "./ruleset";
4
+ const cache = new EndpointCache({
5
+ size: 50,
6
+ params: ["Endpoint", "Region", "UseFIPS"],
7
+ });
8
+ export const defaultEndpointResolver = (endpointParams, context = {}) => {
9
+ return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
10
+ endpointParams: endpointParams,
11
+ logger: context.logger,
12
+ }));
13
+ };
14
+ customEndpointFunctions.aws = awsEndpointFunctions;
@@ -0,0 +1,4 @@
1
+ const l = "ref";
2
+ const a = true, b = false, c = "isSet", d = "error", e = "endpoint", f = "tree", g = { "required": false, "type": "String" }, h = { [l]: "Endpoint" }, i = {}, j = [{ "fn": "booleanEquals", "argv": [{ [l]: "UseFIPS" }, true] }], k = [{ [l]: "Region" }];
3
+ const _data = { version: "1.0", parameters: { UseFIPS: { required: a, default: b, type: "Boolean" }, Endpoint: g, Region: g }, rules: [{ conditions: [{ fn: c, argv: [h] }], rules: [{ conditions: j, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { endpoint: { url: h, properties: i, headers: i }, type: e }], type: f }, { rules: [{ conditions: [{ fn: c, argv: k }], rules: [{ conditions: [{ fn: "aws.partition", argv: k, assign: "PartitionResult" }], rules: [{ conditions: j, endpoint: { url: "https://cassandra-streams-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }, { endpoint: { url: "https://cassandra-streams.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
4
+ export const ruleSet = _data;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export * from "./KeyspacesStreamsClient";
2
+ export * from "./KeyspacesStreams";
3
+ export * from "./commands";
4
+ export * from "./pagination";
5
+ export * from "./models";
6
+ export { KeyspacesStreamsServiceException } from "./models/KeyspacesStreamsServiceException";
@@ -0,0 +1,8 @@
1
+ import { ServiceException as __ServiceException, } from "@smithy/smithy-client";
2
+ export { __ServiceException };
3
+ export class KeyspacesStreamsServiceException extends __ServiceException {
4
+ constructor(options) {
5
+ super(options);
6
+ Object.setPrototypeOf(this, KeyspacesStreamsServiceException.prototype);
7
+ }
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,151 @@
1
+ import { KeyspacesStreamsServiceException as __BaseException } from "./KeyspacesStreamsServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export const OriginType = {
15
+ REPLICATION: "REPLICATION",
16
+ TTL: "TTL",
17
+ USER: "USER",
18
+ };
19
+ export class InternalServerException extends __BaseException {
20
+ name = "InternalServerException";
21
+ $fault = "server";
22
+ constructor(opts) {
23
+ super({
24
+ name: "InternalServerException",
25
+ $fault: "server",
26
+ ...opts,
27
+ });
28
+ Object.setPrototypeOf(this, InternalServerException.prototype);
29
+ }
30
+ }
31
+ export class ResourceNotFoundException extends __BaseException {
32
+ name = "ResourceNotFoundException";
33
+ $fault = "client";
34
+ constructor(opts) {
35
+ super({
36
+ name: "ResourceNotFoundException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
41
+ }
42
+ }
43
+ export class ThrottlingException extends __BaseException {
44
+ name = "ThrottlingException";
45
+ $fault = "client";
46
+ constructor(opts) {
47
+ super({
48
+ name: "ThrottlingException",
49
+ $fault: "client",
50
+ ...opts,
51
+ });
52
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
53
+ }
54
+ }
55
+ export const ValidationExceptionType = {
56
+ ExpiredIterator: "ExpiredIterator",
57
+ ExpiredNextToken: "ExpiredNextToken",
58
+ InvalidFormat: "InvalidFormat",
59
+ TrimmedDataAccess: "TrimmedDataAccess",
60
+ };
61
+ export class ValidationException extends __BaseException {
62
+ name = "ValidationException";
63
+ $fault = "client";
64
+ errorCode;
65
+ constructor(opts) {
66
+ super({
67
+ name: "ValidationException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, ValidationException.prototype);
72
+ this.errorCode = opts.errorCode;
73
+ }
74
+ }
75
+ export const ShardIteratorType = {
76
+ AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
77
+ AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
78
+ LATEST: "LATEST",
79
+ TRIM_HORIZON: "TRIM_HORIZON",
80
+ };
81
+ export const ShardFilterType = {
82
+ CHILD_SHARDS: "CHILD_SHARDS",
83
+ };
84
+ export const StreamStatus = {
85
+ DISABLED: "DISABLED",
86
+ DISABLING: "DISABLING",
87
+ ENABLED: "ENABLED",
88
+ ENABLING: "ENABLING",
89
+ };
90
+ export const StreamViewType = {
91
+ KEYS_ONLY: "KEYS_ONLY",
92
+ NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
93
+ NEW_IMAGE: "NEW_IMAGE",
94
+ OLD_IMAGE: "OLD_IMAGE",
95
+ };
96
+ export var KeyspacesCellValue;
97
+ (function (KeyspacesCellValue) {
98
+ KeyspacesCellValue.visit = (value, visitor) => {
99
+ if (value.asciiT !== undefined)
100
+ return visitor.asciiT(value.asciiT);
101
+ if (value.bigintT !== undefined)
102
+ return visitor.bigintT(value.bigintT);
103
+ if (value.blobT !== undefined)
104
+ return visitor.blobT(value.blobT);
105
+ if (value.boolT !== undefined)
106
+ return visitor.boolT(value.boolT);
107
+ if (value.counterT !== undefined)
108
+ return visitor.counterT(value.counterT);
109
+ if (value.dateT !== undefined)
110
+ return visitor.dateT(value.dateT);
111
+ if (value.decimalT !== undefined)
112
+ return visitor.decimalT(value.decimalT);
113
+ if (value.doubleT !== undefined)
114
+ return visitor.doubleT(value.doubleT);
115
+ if (value.floatT !== undefined)
116
+ return visitor.floatT(value.floatT);
117
+ if (value.inetT !== undefined)
118
+ return visitor.inetT(value.inetT);
119
+ if (value.intT !== undefined)
120
+ return visitor.intT(value.intT);
121
+ if (value.listT !== undefined)
122
+ return visitor.listT(value.listT);
123
+ if (value.mapT !== undefined)
124
+ return visitor.mapT(value.mapT);
125
+ if (value.setT !== undefined)
126
+ return visitor.setT(value.setT);
127
+ if (value.smallintT !== undefined)
128
+ return visitor.smallintT(value.smallintT);
129
+ if (value.textT !== undefined)
130
+ return visitor.textT(value.textT);
131
+ if (value.timeT !== undefined)
132
+ return visitor.timeT(value.timeT);
133
+ if (value.timestampT !== undefined)
134
+ return visitor.timestampT(value.timestampT);
135
+ if (value.timeuuidT !== undefined)
136
+ return visitor.timeuuidT(value.timeuuidT);
137
+ if (value.tinyintT !== undefined)
138
+ return visitor.tinyintT(value.tinyintT);
139
+ if (value.tupleT !== undefined)
140
+ return visitor.tupleT(value.tupleT);
141
+ if (value.uuidT !== undefined)
142
+ return visitor.uuidT(value.uuidT);
143
+ if (value.varcharT !== undefined)
144
+ return visitor.varcharT(value.varcharT);
145
+ if (value.varintT !== undefined)
146
+ return visitor.varintT(value.varintT);
147
+ if (value.udtT !== undefined)
148
+ return visitor.udtT(value.udtT);
149
+ return visitor._(value.$unknown[0], value.$unknown[1]);
150
+ };
151
+ })(KeyspacesCellValue || (KeyspacesCellValue = {}));
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { GetStreamCommand } from "../commands/GetStreamCommand";
3
+ import { KeyspacesStreamsClient } from "../KeyspacesStreamsClient";
4
+ export const paginateGetStream = createPaginator(KeyspacesStreamsClient, GetStreamCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListStreamsCommand } from "../commands/ListStreamsCommand";
3
+ import { KeyspacesStreamsClient } from "../KeyspacesStreamsClient";
4
+ export const paginateListStreams = createPaginator(KeyspacesStreamsClient, ListStreamsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,3 @@
1
+ export * from "./GetStreamPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListStreamsPaginator";