@effect-aws/client-kinesis 1.2.0 → 1.9.3

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 (69) hide show
  1. package/Errors/package.json +6 -0
  2. package/KinesisClientInstance/package.json +6 -0
  3. package/KinesisService/package.json +6 -0
  4. package/KinesisServiceConfig/package.json +6 -0
  5. package/{lib → dist/cjs}/Errors.d.ts +6 -11
  6. package/dist/cjs/Errors.d.ts.map +1 -0
  7. package/dist/cjs/Errors.js +24 -0
  8. package/dist/cjs/Errors.js.map +1 -0
  9. package/dist/cjs/KinesisClientInstance.d.ts +24 -0
  10. package/dist/cjs/KinesisClientInstance.d.ts.map +1 -0
  11. package/dist/cjs/KinesisClientInstance.js +50 -0
  12. package/dist/cjs/KinesisClientInstance.js.map +1 -0
  13. package/dist/cjs/KinesisService.d.ts +169 -0
  14. package/dist/cjs/KinesisService.d.ts.map +1 -0
  15. package/dist/cjs/KinesisService.js +91 -0
  16. package/dist/cjs/KinesisService.js.map +1 -0
  17. package/dist/cjs/KinesisServiceConfig.d.ts +25 -0
  18. package/dist/cjs/KinesisServiceConfig.d.ts.map +1 -0
  19. package/dist/cjs/KinesisServiceConfig.js +35 -0
  20. package/dist/cjs/KinesisServiceConfig.js.map +1 -0
  21. package/dist/cjs/index.d.ts +39 -0
  22. package/dist/cjs/index.d.ts.map +1 -0
  23. package/dist/cjs/index.js +56 -0
  24. package/dist/cjs/index.js.map +1 -0
  25. package/dist/dts/Errors.d.ts +23 -0
  26. package/dist/dts/Errors.d.ts.map +1 -0
  27. package/dist/dts/KinesisClientInstance.d.ts +24 -0
  28. package/dist/dts/KinesisClientInstance.d.ts.map +1 -0
  29. package/dist/dts/KinesisService.d.ts +169 -0
  30. package/dist/dts/KinesisService.d.ts.map +1 -0
  31. package/dist/dts/KinesisServiceConfig.d.ts +25 -0
  32. package/dist/dts/KinesisServiceConfig.d.ts.map +1 -0
  33. package/dist/dts/index.d.ts +39 -0
  34. package/dist/dts/index.d.ts.map +1 -0
  35. package/dist/esm/Errors.js +21 -0
  36. package/dist/esm/Errors.js.map +1 -0
  37. package/dist/esm/KinesisClientInstance.js +23 -0
  38. package/dist/esm/KinesisClientInstance.js.map +1 -0
  39. package/dist/esm/KinesisService.js +64 -0
  40. package/dist/esm/KinesisService.js.map +1 -0
  41. package/dist/esm/KinesisServiceConfig.js +31 -0
  42. package/dist/esm/KinesisServiceConfig.js.map +1 -0
  43. package/dist/esm/index.js +27 -0
  44. package/dist/esm/index.js.map +1 -0
  45. package/dist/esm/package.json +4 -0
  46. package/package.json +60 -43
  47. package/src/Errors.ts +59 -0
  48. package/src/KinesisClientInstance.ts +33 -0
  49. package/src/KinesisService.ts +704 -0
  50. package/src/KinesisServiceConfig.ts +52 -0
  51. package/src/index.ts +44 -0
  52. package/CHANGELOG.md +0 -25
  53. package/docgen.json +0 -8
  54. package/lib/Errors.js +0 -24
  55. package/lib/KinesisClientInstance.d.ts +0 -31
  56. package/lib/KinesisClientInstance.js +0 -57
  57. package/lib/KinesisClientInstanceConfig.d.ts +0 -23
  58. package/lib/KinesisClientInstanceConfig.js +0 -44
  59. package/lib/KinesisService.d.ts +0 -225
  60. package/lib/KinesisService.js +0 -120
  61. package/lib/esm/Errors.js +0 -21
  62. package/lib/esm/KinesisClientInstance.js +0 -30
  63. package/lib/esm/KinesisClientInstanceConfig.js +0 -40
  64. package/lib/esm/KinesisService.js +0 -116
  65. package/lib/esm/index.js +0 -5
  66. package/lib/index.d.ts +0 -4
  67. package/lib/index.js +0 -21
  68. package/project.json +0 -77
  69. package/vitest.config.ts +0 -3
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
19
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
20
+ };
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.Kinesis = exports.KinesisServiceConfig = exports.KinesisClientInstance = void 0;
30
+ /**
31
+ * @since 1.0.0
32
+ */
33
+ const KinesisService_js_1 = require("./KinesisService.js");
34
+ /**
35
+ * @since 1.0.0
36
+ */
37
+ __exportStar(require("./Errors.js"), exports);
38
+ /**
39
+ * @since 1.0.0
40
+ */
41
+ exports.KinesisClientInstance = __importStar(require("./KinesisClientInstance.js"));
42
+ /**
43
+ * @since 1.0.0
44
+ */
45
+ exports.KinesisServiceConfig = __importStar(require("./KinesisServiceConfig.js"));
46
+ /**
47
+ * @since 1.0.0
48
+ */
49
+ __exportStar(require("./KinesisService.js"), exports);
50
+ /**
51
+ * @since 1.0.0
52
+ * @category exports
53
+ * @alias KinesisService
54
+ */
55
+ exports.Kinesis = KinesisService_js_1.KinesisService;
56
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,2DAAqD;AAErD;;GAEG;AACH,8CAA4B;AAE5B;;GAEG;AACH,oFAAoE;AAEpE;;GAEG;AACH,kFAAkE;AAElE;;GAEG;AACH,sDAAoC;AAepC;;;;GAIG;AACU,QAAA,OAAO,GAAG,kCAAc,CAAC"}
@@ -0,0 +1,23 @@
1
+ import type { AccessDeniedException, ExpiredIteratorException, ExpiredNextTokenException, InternalFailureException, InvalidArgumentException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, LimitExceededException, ProvisionedThroughputExceededException, ResourceInUseException, ResourceNotFoundException, ValidationException } from "@aws-sdk/client-kinesis";
2
+ import type { TaggedException } from "@effect-aws/commons";
3
+ import { SdkError as CommonSdkError } from "@effect-aws/commons";
4
+ export declare const AllServiceErrors: readonly ["AccessDeniedException", "ExpiredIteratorException", "ExpiredNextTokenException", "InternalFailureException", "InvalidArgumentException", "KMSAccessDeniedException", "KMSDisabledException", "KMSInvalidStateException", "KMSNotFoundException", "KMSOptInRequired", "KMSThrottlingException", "LimitExceededException", "ProvisionedThroughputExceededException", "ResourceInUseException", "ResourceNotFoundException", "ValidationException"];
5
+ export type AccessDeniedError = TaggedException<AccessDeniedException>;
6
+ export type ExpiredIteratorError = TaggedException<ExpiredIteratorException>;
7
+ export type ExpiredNextTokenError = TaggedException<ExpiredNextTokenException>;
8
+ export type InternalFailureError = TaggedException<InternalFailureException>;
9
+ export type InvalidArgumentError = TaggedException<InvalidArgumentException>;
10
+ export type KMSAccessDeniedError = TaggedException<KMSAccessDeniedException>;
11
+ export type KMSDisabledError = TaggedException<KMSDisabledException>;
12
+ export type KMSInvalidStateError = TaggedException<KMSInvalidStateException>;
13
+ export type KMSNotFoundError = TaggedException<KMSNotFoundException>;
14
+ export type KMSOptInRequiredError = TaggedException<KMSOptInRequired>;
15
+ export type KMSThrottlingError = TaggedException<KMSThrottlingException>;
16
+ export type LimitExceededError = TaggedException<LimitExceededException>;
17
+ export type ProvisionedThroughputExceededError = TaggedException<ProvisionedThroughputExceededException>;
18
+ export type ResourceInUseError = TaggedException<ResourceInUseException>;
19
+ export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
20
+ export type ValidationError = TaggedException<ValidationException>;
21
+ export type SdkError = CommonSdkError;
22
+ export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
23
+ //# sourceMappingURL=Errors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,wBAAwB,EACxB,yBAAyB,EACzB,wBAAwB,EACxB,wBAAwB,EACxB,wBAAwB,EACxB,oBAAoB,EACpB,wBAAwB,EACxB,oBAAoB,EACpB,gBAAgB,EAChB,sBAAsB,EACtB,sBAAsB,EACtB,sCAAsC,EACtC,sBAAsB,EACtB,yBAAyB,EACzB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,eAAO,MAAM,gBAAgB,6bAiBnB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,wBAAwB,CAAC,CAAC;AAC7E,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,kCAAkC,GAAG,eAAe,CAAC,sCAAsC,CAAC,CAAC;AACzG,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AAEnE,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,gEAAiB,CAAC"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { KinesisClient } from "@aws-sdk/client-kinesis";
5
+ import { Context, Effect, Layer } from "effect";
6
+ declare const KinesisClientInstance_base: Context.TagClass<KinesisClientInstance, "@effect-aws/client-kinesis/KinesisClientInstance", KinesisClient>;
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export declare class KinesisClientInstance extends KinesisClientInstance_base {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export declare const make: Effect.Effect<KinesisClient, never, import("effect/Scope").Scope>;
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export declare const layer: Layer.Layer<KinesisClientInstance, never, never>;
23
+ export {};
24
+ //# sourceMappingURL=KinesisClientInstance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisClientInstance.d.ts","sourceRoot":"","sources":["../../src/KinesisClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,qBAAsB,SAAQ,0BAEF;CAAG;AAE5C;;;GAGG;AACH,eAAO,MAAM,IAAI,mEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,kDAA4C,CAAC"}
@@ -0,0 +1,169 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { type AddTagsToStreamCommandInput, type AddTagsToStreamCommandOutput, type CreateStreamCommandInput, type CreateStreamCommandOutput, type DecreaseStreamRetentionPeriodCommandInput, type DecreaseStreamRetentionPeriodCommandOutput, type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput, type DeleteStreamCommandInput, type DeleteStreamCommandOutput, type DeregisterStreamConsumerCommandInput, type DeregisterStreamConsumerCommandOutput, type DescribeLimitsCommandInput, type DescribeLimitsCommandOutput, type DescribeStreamCommandInput, type DescribeStreamCommandOutput, type DescribeStreamConsumerCommandInput, type DescribeStreamConsumerCommandOutput, type DescribeStreamSummaryCommandInput, type DescribeStreamSummaryCommandOutput, type DisableEnhancedMonitoringCommandInput, type DisableEnhancedMonitoringCommandOutput, type EnableEnhancedMonitoringCommandInput, type EnableEnhancedMonitoringCommandOutput, type GetRecordsCommandInput, type GetRecordsCommandOutput, type GetResourcePolicyCommandInput, type GetResourcePolicyCommandOutput, type GetShardIteratorCommandInput, type GetShardIteratorCommandOutput, type IncreaseStreamRetentionPeriodCommandInput, type IncreaseStreamRetentionPeriodCommandOutput, type KinesisClient, type KinesisClientConfig, type ListShardsCommandInput, type ListShardsCommandOutput, type ListStreamConsumersCommandInput, type ListStreamConsumersCommandOutput, type ListStreamsCommandInput, type ListStreamsCommandOutput, type ListTagsForStreamCommandInput, type ListTagsForStreamCommandOutput, type MergeShardsCommandInput, type MergeShardsCommandOutput, type PutRecordCommandInput, type PutRecordCommandOutput, type PutRecordsCommandInput, type PutRecordsCommandOutput, type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput, type RegisterStreamConsumerCommandInput, type RegisterStreamConsumerCommandOutput, type RemoveTagsFromStreamCommandInput, type RemoveTagsFromStreamCommandOutput, type SplitShardCommandInput, type SplitShardCommandOutput, type StartStreamEncryptionCommandInput, type StartStreamEncryptionCommandOutput, type StopStreamEncryptionCommandInput, type StopStreamEncryptionCommandOutput, type SubscribeToShardCommandInput, type SubscribeToShardCommandOutput, type UpdateShardCountCommandInput, type UpdateShardCountCommandOutput, type UpdateStreamModeCommandInput, type UpdateStreamModeCommandOutput } from "@aws-sdk/client-kinesis";
5
+ import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
6
+ import { Effect, Layer } from "effect";
7
+ import type { AccessDeniedError, ExpiredIteratorError, ExpiredNextTokenError, InvalidArgumentError, KMSAccessDeniedError, KMSDisabledError, KMSInvalidStateError, KMSNotFoundError, KMSOptInRequiredError, KMSThrottlingError, LimitExceededError, ProvisionedThroughputExceededError, ResourceInUseError, ResourceNotFoundError, ValidationError } from "./Errors.js";
8
+ import * as Instance from "./KinesisClientInstance.js";
9
+ interface KinesisService$ {
10
+ readonly _: unique symbol;
11
+ /**
12
+ * @see {@link AddTagsToStreamCommand}
13
+ */
14
+ addTagsToStream(args: AddTagsToStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddTagsToStreamCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
15
+ /**
16
+ * @see {@link CreateStreamCommand}
17
+ */
18
+ createStream(args: CreateStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStreamCommandOutput, SdkError | InvalidArgumentError | LimitExceededError | ResourceInUseError>;
19
+ /**
20
+ * @see {@link DecreaseStreamRetentionPeriodCommand}
21
+ */
22
+ decreaseStreamRetentionPeriod(args: DecreaseStreamRetentionPeriodCommandInput, options?: HttpHandlerOptions): Effect.Effect<DecreaseStreamRetentionPeriodCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
23
+ /**
24
+ * @see {@link DeleteResourcePolicyCommand}
25
+ */
26
+ deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteResourcePolicyCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
27
+ /**
28
+ * @see {@link DeleteStreamCommand}
29
+ */
30
+ deleteStream(args: DeleteStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStreamCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
31
+ /**
32
+ * @see {@link DeregisterStreamConsumerCommand}
33
+ */
34
+ deregisterStreamConsumer(args: DeregisterStreamConsumerCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeregisterStreamConsumerCommandOutput, SdkError | InvalidArgumentError | LimitExceededError | ResourceNotFoundError>;
35
+ /**
36
+ * @see {@link DescribeLimitsCommand}
37
+ */
38
+ describeLimits(args: DescribeLimitsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeLimitsCommandOutput, SdkError | LimitExceededError>;
39
+ /**
40
+ * @see {@link DescribeStreamCommand}
41
+ */
42
+ describeStream(args: DescribeStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStreamCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceNotFoundError>;
43
+ /**
44
+ * @see {@link DescribeStreamConsumerCommand}
45
+ */
46
+ describeStreamConsumer(args: DescribeStreamConsumerCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStreamConsumerCommandOutput, SdkError | InvalidArgumentError | LimitExceededError | ResourceNotFoundError>;
47
+ /**
48
+ * @see {@link DescribeStreamSummaryCommand}
49
+ */
50
+ describeStreamSummary(args: DescribeStreamSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStreamSummaryCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceNotFoundError>;
51
+ /**
52
+ * @see {@link DisableEnhancedMonitoringCommand}
53
+ */
54
+ disableEnhancedMonitoring(args: DisableEnhancedMonitoringCommandInput, options?: HttpHandlerOptions): Effect.Effect<DisableEnhancedMonitoringCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
55
+ /**
56
+ * @see {@link EnableEnhancedMonitoringCommand}
57
+ */
58
+ enableEnhancedMonitoring(args: EnableEnhancedMonitoringCommandInput, options?: HttpHandlerOptions): Effect.Effect<EnableEnhancedMonitoringCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
59
+ /**
60
+ * @see {@link GetRecordsCommand}
61
+ */
62
+ getRecords(args: GetRecordsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRecordsCommandOutput, SdkError | AccessDeniedError | ExpiredIteratorError | InvalidArgumentError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | ProvisionedThroughputExceededError | ResourceNotFoundError>;
63
+ /**
64
+ * @see {@link GetResourcePolicyCommand}
65
+ */
66
+ getResourcePolicy(args: GetResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetResourcePolicyCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
67
+ /**
68
+ * @see {@link GetShardIteratorCommand}
69
+ */
70
+ getShardIterator(args: GetShardIteratorCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetShardIteratorCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | ProvisionedThroughputExceededError | ResourceNotFoundError>;
71
+ /**
72
+ * @see {@link IncreaseStreamRetentionPeriodCommand}
73
+ */
74
+ increaseStreamRetentionPeriod(args: IncreaseStreamRetentionPeriodCommandInput, options?: HttpHandlerOptions): Effect.Effect<IncreaseStreamRetentionPeriodCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
75
+ /**
76
+ * @see {@link ListShardsCommand}
77
+ */
78
+ listShards(args: ListShardsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListShardsCommandOutput, SdkError | AccessDeniedError | ExpiredNextTokenError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
79
+ /**
80
+ * @see {@link ListStreamConsumersCommand}
81
+ */
82
+ listStreamConsumers(args: ListStreamConsumersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStreamConsumersCommandOutput, SdkError | ExpiredNextTokenError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
83
+ /**
84
+ * @see {@link ListStreamsCommand}
85
+ */
86
+ listStreams(args: ListStreamsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStreamsCommandOutput, SdkError | ExpiredNextTokenError | InvalidArgumentError | LimitExceededError>;
87
+ /**
88
+ * @see {@link ListTagsForStreamCommand}
89
+ */
90
+ listTagsForStream(args: ListTagsForStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForStreamCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceNotFoundError>;
91
+ /**
92
+ * @see {@link MergeShardsCommand}
93
+ */
94
+ mergeShards(args: MergeShardsCommandInput, options?: HttpHandlerOptions): Effect.Effect<MergeShardsCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError | ValidationError>;
95
+ /**
96
+ * @see {@link PutRecordCommand}
97
+ */
98
+ putRecord(args: PutRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutRecordCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | ProvisionedThroughputExceededError | ResourceNotFoundError>;
99
+ /**
100
+ * @see {@link PutRecordsCommand}
101
+ */
102
+ putRecords(args: PutRecordsCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutRecordsCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | ProvisionedThroughputExceededError | ResourceNotFoundError>;
103
+ /**
104
+ * @see {@link PutResourcePolicyCommand}
105
+ */
106
+ putResourcePolicy(args: PutResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutResourcePolicyCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
107
+ /**
108
+ * @see {@link RegisterStreamConsumerCommand}
109
+ */
110
+ registerStreamConsumer(args: RegisterStreamConsumerCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterStreamConsumerCommandOutput, SdkError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
111
+ /**
112
+ * @see {@link RemoveTagsFromStreamCommand}
113
+ */
114
+ removeTagsFromStream(args: RemoveTagsFromStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemoveTagsFromStreamCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
115
+ /**
116
+ * @see {@link SplitShardCommand}
117
+ */
118
+ splitShard(args: SplitShardCommandInput, options?: HttpHandlerOptions): Effect.Effect<SplitShardCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError | ValidationError>;
119
+ /**
120
+ * @see {@link StartStreamEncryptionCommand}
121
+ */
122
+ startStreamEncryption(args: StartStreamEncryptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartStreamEncryptionCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
123
+ /**
124
+ * @see {@link StopStreamEncryptionCommand}
125
+ */
126
+ stopStreamEncryption(args: StopStreamEncryptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopStreamEncryptionCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
127
+ /**
128
+ * @see {@link SubscribeToShardCommand}
129
+ */
130
+ subscribeToShard(args: SubscribeToShardCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeToShardCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
131
+ /**
132
+ * @see {@link UpdateShardCountCommand}
133
+ */
134
+ updateShardCount(args: UpdateShardCountCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateShardCountCommandOutput, SdkError | AccessDeniedError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError | ValidationError>;
135
+ /**
136
+ * @see {@link UpdateStreamModeCommand}
137
+ */
138
+ updateStreamMode(args: UpdateStreamModeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStreamModeCommandOutput, SdkError | InvalidArgumentError | LimitExceededError | ResourceInUseError | ResourceNotFoundError>;
139
+ }
140
+ /**
141
+ * @since 1.0.0
142
+ * @category constructors
143
+ */
144
+ export declare const makeKinesisService: Effect.Effect<KinesisService$, never, Instance.KinesisClientInstance>;
145
+ declare const KinesisService_base: import("effect/Context").TagClass<KinesisService, "@effect-aws/client-kinesis/KinesisService", KinesisService$> & Effect.Tag.Proxy<KinesisService, KinesisService$> & {
146
+ use: <X>(body: (_: KinesisService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, KinesisService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, import("effect/Cause").UnknownException, KinesisService> : Effect.Effect<X, never, KinesisService>;
147
+ };
148
+ /**
149
+ * @since 1.0.0
150
+ * @category models
151
+ */
152
+ export declare class KinesisService extends KinesisService_base {
153
+ static readonly defaultLayer: Layer.Layer<KinesisService, never, never>;
154
+ static readonly layer: (config: KinesisService.Config) => Layer.Layer<KinesisService, never, never>;
155
+ static readonly baseLayer: (evaluate: (defaultConfig: KinesisClientConfig) => KinesisClient) => Layer.Layer<KinesisService, never, never>;
156
+ }
157
+ /**
158
+ * @since 1.0.0
159
+ */
160
+ export declare namespace KinesisService {
161
+ /**
162
+ * @since 1.0.0
163
+ */
164
+ interface Config extends Omit<KinesisClientConfig, "logger"> {
165
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
166
+ }
167
+ }
168
+ export {};
169
+ //# sourceMappingURL=KinesisService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisService.d.ts","sourceRoot":"","sources":["../../src/KinesisService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import type { KinesisClientConfig } from "@aws-sdk/client-kinesis";
5
+ import { Effect, Layer } from "effect";
6
+ import type { KinesisService } from "./KinesisService.js";
7
+ /**
8
+ * @since 1.0.0
9
+ * @category kinesis service config
10
+ */
11
+ export declare const withKinesisServiceConfig: {
12
+ (config: KinesisService.Config): <A, E, R>(effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>;
13
+ <A, E, R>(effect: Effect.Effect<A, E, R>, config: KinesisService.Config): Effect.Effect<A, E, R>;
14
+ };
15
+ /**
16
+ * @since 1.0.0
17
+ * @category kinesis service config
18
+ */
19
+ export declare const setKinesisServiceConfig: (config: KinesisService.Config) => Layer.Layer<never, never, never>;
20
+ /**
21
+ * @since 1.0.0
22
+ * @category adapters
23
+ */
24
+ export declare const toKinesisClientConfig: Effect.Effect<KinesisClientConfig>;
25
+ //# sourceMappingURL=KinesisServiceConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisServiceConfig.d.ts","sourceRoot":"","sources":["../../src/KinesisServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAEnE,OAAO,EAAE,MAAM,EAAY,KAAK,EAAE,MAAM,QAAQ,CAAC;AAGjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAW1D;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE;IACrC,CAAC,MAAM,EAAE,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IACrG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,cAAc,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAKlG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,WAAY,eAAe,MAAM,qCACX,CAAC;AAE3D;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,mBAAmB,CAQnE,CAAC"}
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { KinesisService } from "./KinesisService.js";
5
+ /**
6
+ * @since 1.0.0
7
+ */
8
+ export * from "./Errors.js";
9
+ /**
10
+ * @since 1.0.0
11
+ */
12
+ export * as KinesisClientInstance from "./KinesisClientInstance.js";
13
+ /**
14
+ * @since 1.0.0
15
+ */
16
+ export * as KinesisServiceConfig from "./KinesisServiceConfig.js";
17
+ /**
18
+ * @since 1.0.0
19
+ */
20
+ export * from "./KinesisService.js";
21
+ /**
22
+ * @since 1.0.0
23
+ * @category exports
24
+ * @alias KinesisService
25
+ */
26
+ export declare namespace Kinesis {
27
+ /**
28
+ * @since 1.0.0
29
+ * @alias KinesisService.Config
30
+ */
31
+ type Config = KinesisService.Config;
32
+ }
33
+ /**
34
+ * @since 1.0.0
35
+ * @category exports
36
+ * @alias KinesisService
37
+ */
38
+ export declare const Kinesis: typeof KinesisService;
39
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAErD;;GAEG;AACH,cAAc,aAAa,CAAC;AAE5B;;GAEG;AACH,OAAO,KAAK,qBAAqB,MAAM,4BAA4B,CAAC;AAEpE;;GAEG;AACH,OAAO,KAAK,oBAAoB,MAAM,2BAA2B,CAAC;AAElE;;GAEG;AACH,cAAc,qBAAqB,CAAC;AAEpC;;;;GAIG;AACH,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B;;;OAGG;IACH,KAAY,MAAM,GAAG,cAAc,CAAC,MAAM,CAAC;CAC5C;AAED;;;;GAIG;AACH,eAAO,MAAM,OAAO,uBAAiB,CAAC"}
@@ -0,0 +1,21 @@
1
+ import { SdkError as CommonSdkError } from "@effect-aws/commons";
2
+ export const AllServiceErrors = [
3
+ "AccessDeniedException",
4
+ "ExpiredIteratorException",
5
+ "ExpiredNextTokenException",
6
+ "InternalFailureException",
7
+ "InvalidArgumentException",
8
+ "KMSAccessDeniedException",
9
+ "KMSDisabledException",
10
+ "KMSInvalidStateException",
11
+ "KMSNotFoundException",
12
+ "KMSOptInRequired",
13
+ "KMSThrottlingException",
14
+ "LimitExceededException",
15
+ "ProvisionedThroughputExceededException",
16
+ "ResourceInUseException",
17
+ "ResourceNotFoundException",
18
+ "ValidationException",
19
+ ];
20
+ export const SdkError = CommonSdkError;
21
+ //# sourceMappingURL=Errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,uBAAuB;IACvB,0BAA0B;IAC1B,2BAA2B;IAC3B,0BAA0B;IAC1B,0BAA0B;IAC1B,0BAA0B;IAC1B,sBAAsB;IACtB,0BAA0B;IAC1B,sBAAsB;IACtB,kBAAkB;IAClB,wBAAwB;IACxB,wBAAwB;IACxB,wCAAwC;IACxC,wBAAwB;IACxB,2BAA2B;IAC3B,qBAAqB;CACb,CAAC;AAoBX,MAAM,CAAC,MAAM,QAAQ,GAAG,cAAc,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { KinesisClient } from "@aws-sdk/client-kinesis";
5
+ import { Context, Effect, Layer } from "effect";
6
+ import * as KinesisServiceConfig from "./KinesisServiceConfig.js";
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export class KinesisClientInstance extends Context.Tag("@effect-aws/client-kinesis/KinesisClientInstance")() {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export const make = Effect.flatMap(KinesisServiceConfig.toKinesisClientConfig, (config) => Effect.acquireRelease(Effect.sync(() => new KinesisClient(config)), (client) => Effect.sync(() => client.destroy())));
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export const layer = Layer.scoped(KinesisClientInstance, make);
23
+ //# sourceMappingURL=KinesisClientInstance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisClientInstance.js","sourceRoot":"","sources":["../../src/KinesisClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AAChD,OAAO,KAAK,oBAAoB,MAAM,2BAA2B,CAAC;AAElE;;;GAGG;AACH,MAAM,OAAO,qBAAsB,SAAQ,OAAO,CAAC,GAAG,CACpD,kDAAkD,CACnD,EAAwC;CAAG;AAE5C;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAChC,oBAAoB,CAAC,qBAAqB,EAC1C,CAAC,MAAM,EAAE,EAAE,CACT,MAAM,CAAC,cAAc,CACnB,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,CAAC,EAC5C,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC"}
@@ -0,0 +1,64 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { AddTagsToStreamCommand, CreateStreamCommand, DecreaseStreamRetentionPeriodCommand, DeleteResourcePolicyCommand, DeleteStreamCommand, DeregisterStreamConsumerCommand, DescribeLimitsCommand, DescribeStreamCommand, DescribeStreamConsumerCommand, DescribeStreamSummaryCommand, DisableEnhancedMonitoringCommand, EnableEnhancedMonitoringCommand, GetRecordsCommand, GetResourcePolicyCommand, GetShardIteratorCommand, IncreaseStreamRetentionPeriodCommand, ListShardsCommand, ListStreamConsumersCommand, ListStreamsCommand, ListTagsForStreamCommand, MergeShardsCommand, PutRecordCommand, PutRecordsCommand, PutResourcePolicyCommand, RegisterStreamConsumerCommand, RemoveTagsFromStreamCommand, SplitShardCommand, StartStreamEncryptionCommand, StopStreamEncryptionCommand, SubscribeToShardCommand, UpdateShardCountCommand, UpdateStreamModeCommand, } from "@aws-sdk/client-kinesis";
5
+ import { Service } from "@effect-aws/commons";
6
+ import { Effect, Layer } from "effect";
7
+ import { AllServiceErrors } from "./Errors.js";
8
+ import * as Instance from "./KinesisClientInstance.js";
9
+ import * as KinesisServiceConfig from "./KinesisServiceConfig.js";
10
+ const commands = {
11
+ AddTagsToStreamCommand,
12
+ CreateStreamCommand,
13
+ DecreaseStreamRetentionPeriodCommand,
14
+ DeleteResourcePolicyCommand,
15
+ DeleteStreamCommand,
16
+ DeregisterStreamConsumerCommand,
17
+ DescribeLimitsCommand,
18
+ DescribeStreamCommand,
19
+ DescribeStreamConsumerCommand,
20
+ DescribeStreamSummaryCommand,
21
+ DisableEnhancedMonitoringCommand,
22
+ EnableEnhancedMonitoringCommand,
23
+ GetRecordsCommand,
24
+ GetResourcePolicyCommand,
25
+ GetShardIteratorCommand,
26
+ IncreaseStreamRetentionPeriodCommand,
27
+ ListShardsCommand,
28
+ ListStreamConsumersCommand,
29
+ ListStreamsCommand,
30
+ ListTagsForStreamCommand,
31
+ MergeShardsCommand,
32
+ PutRecordCommand,
33
+ PutRecordsCommand,
34
+ PutResourcePolicyCommand,
35
+ RegisterStreamConsumerCommand,
36
+ RemoveTagsFromStreamCommand,
37
+ SplitShardCommand,
38
+ StartStreamEncryptionCommand,
39
+ StopStreamEncryptionCommand,
40
+ SubscribeToShardCommand,
41
+ UpdateShardCountCommand,
42
+ UpdateStreamModeCommand,
43
+ };
44
+ /**
45
+ * @since 1.0.0
46
+ * @category constructors
47
+ */
48
+ export const makeKinesisService = Effect.gen(function* () {
49
+ const client = yield* Instance.KinesisClientInstance;
50
+ return Service.fromClientAndCommands(client, commands, {
51
+ errorTags: AllServiceErrors,
52
+ resolveClientConfig: KinesisServiceConfig.toKinesisClientConfig,
53
+ });
54
+ });
55
+ /**
56
+ * @since 1.0.0
57
+ * @category models
58
+ */
59
+ export class KinesisService extends Effect.Tag("@effect-aws/client-kinesis/KinesisService")() {
60
+ static defaultLayer = Layer.effect(this, makeKinesisService).pipe(Layer.provide(Instance.layer));
61
+ static layer = (config) => Layer.effect(this, makeKinesisService).pipe(Layer.provide(Instance.layer), Layer.provide(KinesisServiceConfig.setKinesisServiceConfig(config)));
62
+ static baseLayer = (evaluate) => Layer.effect(this, makeKinesisService).pipe(Layer.provide(Layer.effect(Instance.KinesisClientInstance, Effect.map(KinesisServiceConfig.toKinesisClientConfig, evaluate))));
63
+ }
64
+ //# sourceMappingURL=KinesisService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisService.js","sourceRoot":"","sources":["../../src/KinesisService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,31 @@
1
+ import { ServiceLogger } from "@effect-aws/commons";
2
+ import { Effect, FiberRef, Layer } from "effect";
3
+ import { dual } from "effect/Function";
4
+ import { globalValue } from "effect/GlobalValue";
5
+ /**
6
+ * @since 1.0.0
7
+ * @category kinesis service config
8
+ */
9
+ const currentKinesisServiceConfig = globalValue("@effect-aws/client-kinesis/currentKinesisServiceConfig", () => FiberRef.unsafeMake({}));
10
+ /**
11
+ * @since 1.0.0
12
+ * @category kinesis service config
13
+ */
14
+ export const withKinesisServiceConfig = dual(2, (effect, config) => Effect.locally(effect, currentKinesisServiceConfig, config));
15
+ /**
16
+ * @since 1.0.0
17
+ * @category kinesis service config
18
+ */
19
+ export const setKinesisServiceConfig = (config) => Layer.locallyScoped(currentKinesisServiceConfig, config);
20
+ /**
21
+ * @since 1.0.0
22
+ * @category adapters
23
+ */
24
+ export const toKinesisClientConfig = Effect.gen(function* () {
25
+ const { logger: serviceLogger, ...config } = yield* FiberRef.get(currentKinesisServiceConfig);
26
+ const logger = serviceLogger === true
27
+ ? yield* ServiceLogger.toClientLogger(ServiceLogger.defaultServiceLogger)
28
+ : (serviceLogger ? yield* ServiceLogger.toClientLogger(ServiceLogger.make(serviceLogger)) : undefined);
29
+ return { logger, ...config };
30
+ });
31
+ //# sourceMappingURL=KinesisServiceConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KinesisServiceConfig.js","sourceRoot":"","sources":["../../src/KinesisServiceConfig.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD;;;GAGG;AACH,MAAM,2BAA2B,GAAG,WAAW,CAC7C,wDAAwD,EACxD,GAAG,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAwB,EAAE,CAAC,CACrD,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAGjC,IAAI,CACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAA6B,EAA0B,EAAE,CACjG,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,2BAA2B,EAAE,MAAM,CAAC,CAC9D,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,MAA6B,EAAE,EAAE,CACvE,KAAK,CAAC,aAAa,CAAC,2BAA2B,EAAE,MAAM,CAAC,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAuC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IAC3F,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;IAE9F,MAAM,MAAM,GAAG,aAAa,KAAK,IAAI;QACnC,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,aAAa,CAAC,oBAAoB,CAAC;QACzE,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAEzG,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAC/B,CAAC,CAAC,CAAC"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { KinesisService } from "./KinesisService.js";
5
+ /**
6
+ * @since 1.0.0
7
+ */
8
+ export * from "./Errors.js";
9
+ /**
10
+ * @since 1.0.0
11
+ */
12
+ export * as KinesisClientInstance from "./KinesisClientInstance.js";
13
+ /**
14
+ * @since 1.0.0
15
+ */
16
+ export * as KinesisServiceConfig from "./KinesisServiceConfig.js";
17
+ /**
18
+ * @since 1.0.0
19
+ */
20
+ export * from "./KinesisService.js";
21
+ /**
22
+ * @since 1.0.0
23
+ * @category exports
24
+ * @alias KinesisService
25
+ */
26
+ export const Kinesis = KinesisService;
27
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAErD;;GAEG;AACH,cAAc,aAAa,CAAC;AAE5B;;GAEG;AACH,OAAO,KAAK,qBAAqB,MAAM,4BAA4B,CAAC;AAEpE;;GAEG;AACH,OAAO,KAAK,oBAAoB,MAAM,2BAA2B,CAAC;AAElE;;GAEG;AACH,cAAc,qBAAqB,CAAC;AAepC;;;;GAIG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAC"}
@@ -0,0 +1,4 @@
1
+ {
2
+ "type": "module",
3
+ "sideEffects": []
4
+ }