@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,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetStreamCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class GetStreamCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("KeyspacesStreams", "GetStream", {})
20
+ .n("KeyspacesStreamsClient", "GetStreamCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_json1_0_1.se_GetStreamCommand)
23
+ .de(Aws_json1_0_1.de_GetStreamCommand)
24
+ .build() {
25
+ }
26
+ exports.GetStreamCommand = GetStreamCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListStreamsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class ListStreamsCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("KeyspacesStreams", "ListStreams", {})
20
+ .n("KeyspacesStreamsClient", "ListStreamsCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_json1_0_1.se_ListStreamsCommand)
23
+ .de(Aws_json1_0_1.de_ListStreamsCommand)
24
+ .build() {
25
+ }
26
+ exports.ListStreamsCommand = ListStreamsCommand;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./GetRecordsCommand"), exports);
5
+ tslib_1.__exportStar(require("./GetShardIteratorCommand"), exports);
6
+ tslib_1.__exportStar(require("./GetStreamCommand"), exports);
7
+ tslib_1.__exportStar(require("./ListStreamsCommand"), exports);
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
+ const resolveClientEndpointParameters = (options) => {
5
+ return Object.assign(options, {
6
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
7
+ defaultSigningName: "cassandra",
8
+ });
9
+ };
10
+ exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
11
+ exports.commonParams = {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ };
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultEndpointResolver = void 0;
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
6
+ const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "Region", "UseFIPS"],
10
+ });
11
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
13
+ endpointParams: endpointParams,
14
+ logger: context.logger,
15
+ }));
16
+ };
17
+ exports.defaultEndpointResolver = defaultEndpointResolver;
18
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ruleSet = void 0;
4
+ const l = "ref";
5
+ 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" }];
6
+ 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 }] };
7
+ exports.ruleSet = _data;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KeyspacesStreamsServiceException = void 0;
4
+ const tslib_1 = require("tslib");
5
+ tslib_1.__exportStar(require("./KeyspacesStreamsClient"), exports);
6
+ tslib_1.__exportStar(require("./KeyspacesStreams"), exports);
7
+ tslib_1.__exportStar(require("./commands"), exports);
8
+ tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./models"), exports);
10
+ var KeyspacesStreamsServiceException_1 = require("./models/KeyspacesStreamsServiceException");
11
+ Object.defineProperty(exports, "KeyspacesStreamsServiceException", { enumerable: true, get: function () { return KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException; } });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KeyspacesStreamsServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class KeyspacesStreamsServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, KeyspacesStreamsServiceException.prototype);
10
+ }
11
+ }
12
+ exports.KeyspacesStreamsServiceException = KeyspacesStreamsServiceException;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./models_0"), exports);
@@ -0,0 +1,159 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KeyspacesCellValue = exports.StreamViewType = exports.StreamStatus = exports.ShardFilterType = exports.ShardIteratorType = exports.ValidationException = exports.ValidationExceptionType = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.OriginType = exports.AccessDeniedException = void 0;
4
+ const KeyspacesStreamsServiceException_1 = require("./KeyspacesStreamsServiceException");
5
+ class AccessDeniedException extends KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException {
6
+ name = "AccessDeniedException";
7
+ $fault = "client";
8
+ constructor(opts) {
9
+ super({
10
+ name: "AccessDeniedException",
11
+ $fault: "client",
12
+ ...opts,
13
+ });
14
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
+ }
16
+ }
17
+ exports.AccessDeniedException = AccessDeniedException;
18
+ exports.OriginType = {
19
+ REPLICATION: "REPLICATION",
20
+ TTL: "TTL",
21
+ USER: "USER",
22
+ };
23
+ class InternalServerException extends KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException {
24
+ name = "InternalServerException";
25
+ $fault = "server";
26
+ constructor(opts) {
27
+ super({
28
+ name: "InternalServerException",
29
+ $fault: "server",
30
+ ...opts,
31
+ });
32
+ Object.setPrototypeOf(this, InternalServerException.prototype);
33
+ }
34
+ }
35
+ exports.InternalServerException = InternalServerException;
36
+ class ResourceNotFoundException extends KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException {
37
+ name = "ResourceNotFoundException";
38
+ $fault = "client";
39
+ constructor(opts) {
40
+ super({
41
+ name: "ResourceNotFoundException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
46
+ }
47
+ }
48
+ exports.ResourceNotFoundException = ResourceNotFoundException;
49
+ class ThrottlingException extends KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException {
50
+ name = "ThrottlingException";
51
+ $fault = "client";
52
+ constructor(opts) {
53
+ super({
54
+ name: "ThrottlingException",
55
+ $fault: "client",
56
+ ...opts,
57
+ });
58
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
59
+ }
60
+ }
61
+ exports.ThrottlingException = ThrottlingException;
62
+ exports.ValidationExceptionType = {
63
+ ExpiredIterator: "ExpiredIterator",
64
+ ExpiredNextToken: "ExpiredNextToken",
65
+ InvalidFormat: "InvalidFormat",
66
+ TrimmedDataAccess: "TrimmedDataAccess",
67
+ };
68
+ class ValidationException extends KeyspacesStreamsServiceException_1.KeyspacesStreamsServiceException {
69
+ name = "ValidationException";
70
+ $fault = "client";
71
+ errorCode;
72
+ constructor(opts) {
73
+ super({
74
+ name: "ValidationException",
75
+ $fault: "client",
76
+ ...opts,
77
+ });
78
+ Object.setPrototypeOf(this, ValidationException.prototype);
79
+ this.errorCode = opts.errorCode;
80
+ }
81
+ }
82
+ exports.ValidationException = ValidationException;
83
+ exports.ShardIteratorType = {
84
+ AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
85
+ AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
86
+ LATEST: "LATEST",
87
+ TRIM_HORIZON: "TRIM_HORIZON",
88
+ };
89
+ exports.ShardFilterType = {
90
+ CHILD_SHARDS: "CHILD_SHARDS",
91
+ };
92
+ exports.StreamStatus = {
93
+ DISABLED: "DISABLED",
94
+ DISABLING: "DISABLING",
95
+ ENABLED: "ENABLED",
96
+ ENABLING: "ENABLING",
97
+ };
98
+ exports.StreamViewType = {
99
+ KEYS_ONLY: "KEYS_ONLY",
100
+ NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES",
101
+ NEW_IMAGE: "NEW_IMAGE",
102
+ OLD_IMAGE: "OLD_IMAGE",
103
+ };
104
+ var KeyspacesCellValue;
105
+ (function (KeyspacesCellValue) {
106
+ KeyspacesCellValue.visit = (value, visitor) => {
107
+ if (value.asciiT !== undefined)
108
+ return visitor.asciiT(value.asciiT);
109
+ if (value.bigintT !== undefined)
110
+ return visitor.bigintT(value.bigintT);
111
+ if (value.blobT !== undefined)
112
+ return visitor.blobT(value.blobT);
113
+ if (value.boolT !== undefined)
114
+ return visitor.boolT(value.boolT);
115
+ if (value.counterT !== undefined)
116
+ return visitor.counterT(value.counterT);
117
+ if (value.dateT !== undefined)
118
+ return visitor.dateT(value.dateT);
119
+ if (value.decimalT !== undefined)
120
+ return visitor.decimalT(value.decimalT);
121
+ if (value.doubleT !== undefined)
122
+ return visitor.doubleT(value.doubleT);
123
+ if (value.floatT !== undefined)
124
+ return visitor.floatT(value.floatT);
125
+ if (value.inetT !== undefined)
126
+ return visitor.inetT(value.inetT);
127
+ if (value.intT !== undefined)
128
+ return visitor.intT(value.intT);
129
+ if (value.listT !== undefined)
130
+ return visitor.listT(value.listT);
131
+ if (value.mapT !== undefined)
132
+ return visitor.mapT(value.mapT);
133
+ if (value.setT !== undefined)
134
+ return visitor.setT(value.setT);
135
+ if (value.smallintT !== undefined)
136
+ return visitor.smallintT(value.smallintT);
137
+ if (value.textT !== undefined)
138
+ return visitor.textT(value.textT);
139
+ if (value.timeT !== undefined)
140
+ return visitor.timeT(value.timeT);
141
+ if (value.timestampT !== undefined)
142
+ return visitor.timestampT(value.timestampT);
143
+ if (value.timeuuidT !== undefined)
144
+ return visitor.timeuuidT(value.timeuuidT);
145
+ if (value.tinyintT !== undefined)
146
+ return visitor.tinyintT(value.tinyintT);
147
+ if (value.tupleT !== undefined)
148
+ return visitor.tupleT(value.tupleT);
149
+ if (value.uuidT !== undefined)
150
+ return visitor.uuidT(value.uuidT);
151
+ if (value.varcharT !== undefined)
152
+ return visitor.varcharT(value.varcharT);
153
+ if (value.varintT !== undefined)
154
+ return visitor.varintT(value.varintT);
155
+ if (value.udtT !== undefined)
156
+ return visitor.udtT(value.udtT);
157
+ return visitor._(value.$unknown[0], value.$unknown[1]);
158
+ };
159
+ })(KeyspacesCellValue || (exports.KeyspacesCellValue = KeyspacesCellValue = {}));
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateGetStream = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const GetStreamCommand_1 = require("../commands/GetStreamCommand");
6
+ const KeyspacesStreamsClient_1 = require("../KeyspacesStreamsClient");
7
+ exports.paginateGetStream = (0, core_1.createPaginator)(KeyspacesStreamsClient_1.KeyspacesStreamsClient, GetStreamCommand_1.GetStreamCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListStreams = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListStreamsCommand_1 = require("../commands/ListStreamsCommand");
6
+ const KeyspacesStreamsClient_1 = require("../KeyspacesStreamsClient");
7
+ exports.paginateListStreams = (0, core_1.createPaginator)(KeyspacesStreamsClient_1.KeyspacesStreamsClient, ListStreamsCommand_1.ListStreamsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./GetStreamPaginator"), exports);
5
+ tslib_1.__exportStar(require("./Interfaces"), exports);
6
+ tslib_1.__exportStar(require("./ListStreamsPaginator"), exports);