@effect-aws/client-sns 1.6.0 → 1.9.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 (68) hide show
  1. package/Errors/package.json +6 -0
  2. package/SNSClientInstance/package.json +6 -0
  3. package/SNSService/package.json +6 -0
  4. package/SNSServiceConfig/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 +42 -0
  8. package/dist/cjs/Errors.js.map +1 -0
  9. package/dist/cjs/SNSClientInstance.d.ts +24 -0
  10. package/dist/cjs/SNSClientInstance.d.ts.map +1 -0
  11. package/dist/cjs/SNSClientInstance.js +50 -0
  12. package/dist/cjs/SNSClientInstance.js.map +1 -0
  13. package/{lib → dist/cjs}/SNSService.d.ts +16 -38
  14. package/dist/cjs/SNSService.d.ts.map +1 -0
  15. package/dist/cjs/SNSService.js +98 -0
  16. package/dist/cjs/SNSService.js.map +1 -0
  17. package/dist/cjs/SNSServiceConfig.d.ts +25 -0
  18. package/dist/cjs/SNSServiceConfig.d.ts.map +1 -0
  19. package/dist/cjs/SNSServiceConfig.js +35 -0
  20. package/dist/cjs/SNSServiceConfig.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 +41 -0
  26. package/dist/dts/Errors.d.ts.map +1 -0
  27. package/dist/dts/SNSClientInstance.d.ts +24 -0
  28. package/dist/dts/SNSClientInstance.d.ts.map +1 -0
  29. package/dist/dts/SNSService.d.ts +253 -0
  30. package/dist/dts/SNSService.d.ts.map +1 -0
  31. package/dist/dts/SNSServiceConfig.d.ts +25 -0
  32. package/dist/dts/SNSServiceConfig.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 +39 -0
  36. package/dist/esm/Errors.js.map +1 -0
  37. package/dist/esm/SNSClientInstance.js +23 -0
  38. package/dist/esm/SNSClientInstance.js.map +1 -0
  39. package/dist/esm/SNSService.js +71 -0
  40. package/dist/esm/SNSService.js.map +1 -0
  41. package/dist/esm/SNSServiceConfig.js +31 -0
  42. package/dist/esm/SNSServiceConfig.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 +113 -0
  48. package/src/SNSClientInstance.ts +33 -0
  49. package/src/SNSService.ts +839 -0
  50. package/src/SNSServiceConfig.ts +51 -0
  51. package/src/index.ts +44 -0
  52. package/CHANGELOG.md +0 -113
  53. package/docgen.json +0 -8
  54. package/lib/Errors.js +0 -42
  55. package/lib/SNSClientInstance.d.ts +0 -31
  56. package/lib/SNSClientInstance.js +0 -57
  57. package/lib/SNSClientInstanceConfig.d.ts +0 -23
  58. package/lib/SNSClientInstanceConfig.js +0 -44
  59. package/lib/SNSService.js +0 -130
  60. package/lib/esm/Errors.js +0 -39
  61. package/lib/esm/SNSClientInstance.js +0 -30
  62. package/lib/esm/SNSClientInstanceConfig.js +0 -40
  63. package/lib/esm/SNSService.js +0 -126
  64. package/lib/esm/index.js +0 -5
  65. package/lib/index.d.ts +0 -4
  66. package/lib/index.js +0 -21
  67. package/project.json +0 -77
  68. package/vitest.config.ts +0 -3
@@ -0,0 +1,41 @@
1
+ import type { AuthorizationErrorException, BatchEntryIdsNotDistinctException, BatchRequestTooLongException, ConcurrentAccessException, EmptyBatchRequestException, EndpointDisabledException, FilterPolicyLimitExceededException, InternalErrorException, InvalidBatchEntryIdException, InvalidParameterException, InvalidParameterValueException, InvalidSecurityException, InvalidStateException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, KMSOptInRequired, KMSThrottlingException, NotFoundException, OptedOutException, PlatformApplicationDisabledException, ReplayLimitExceededException, ResourceNotFoundException, StaleTagException, SubscriptionLimitExceededException, TagLimitExceededException, TagPolicyException, ThrottledException, TooManyEntriesInBatchRequestException, TopicLimitExceededException, UserErrorException, ValidationException, VerificationException } from "@aws-sdk/client-sns";
2
+ import type { TaggedException } from "@effect-aws/commons";
3
+ import { SdkError as CommonSdkError } from "@effect-aws/commons";
4
+ export declare const AllServiceErrors: readonly ["AuthorizationErrorException", "BatchEntryIdsNotDistinctException", "BatchRequestTooLongException", "ConcurrentAccessException", "EmptyBatchRequestException", "EndpointDisabledException", "FilterPolicyLimitExceededException", "InternalErrorException", "InvalidBatchEntryIdException", "InvalidParameterException", "InvalidParameterValueException", "InvalidSecurityException", "InvalidStateException", "KMSAccessDeniedException", "KMSDisabledException", "KMSInvalidStateException", "KMSNotFoundException", "KMSOptInRequired", "KMSThrottlingException", "NotFoundException", "OptedOutException", "PlatformApplicationDisabledException", "ReplayLimitExceededException", "ResourceNotFoundException", "StaleTagException", "SubscriptionLimitExceededException", "TagLimitExceededException", "TagPolicyException", "ThrottledException", "TooManyEntriesInBatchRequestException", "TopicLimitExceededException", "UserErrorException", "ValidationException", "VerificationException"];
5
+ export type AuthorizationError = TaggedException<AuthorizationErrorException>;
6
+ export type BatchEntryIdsNotDistinctError = TaggedException<BatchEntryIdsNotDistinctException>;
7
+ export type BatchRequestTooLongError = TaggedException<BatchRequestTooLongException>;
8
+ export type ConcurrentAccessError = TaggedException<ConcurrentAccessException>;
9
+ export type EmptyBatchRequestError = TaggedException<EmptyBatchRequestException>;
10
+ export type EndpointDisabledError = TaggedException<EndpointDisabledException>;
11
+ export type FilterPolicyLimitExceededError = TaggedException<FilterPolicyLimitExceededException>;
12
+ export type InternalError = TaggedException<InternalErrorException>;
13
+ export type InvalidBatchEntryIdError = TaggedException<InvalidBatchEntryIdException>;
14
+ export type InvalidParameterError = TaggedException<InvalidParameterException>;
15
+ export type InvalidParameterValueError = TaggedException<InvalidParameterValueException>;
16
+ export type InvalidSecurityError = TaggedException<InvalidSecurityException>;
17
+ export type InvalidStateError = TaggedException<InvalidStateException>;
18
+ export type KMSAccessDeniedError = TaggedException<KMSAccessDeniedException>;
19
+ export type KMSDisabledError = TaggedException<KMSDisabledException>;
20
+ export type KMSInvalidStateError = TaggedException<KMSInvalidStateException>;
21
+ export type KMSNotFoundError = TaggedException<KMSNotFoundException>;
22
+ export type KMSOptInRequiredError = TaggedException<KMSOptInRequired>;
23
+ export type KMSThrottlingError = TaggedException<KMSThrottlingException>;
24
+ export type NotFoundError = TaggedException<NotFoundException>;
25
+ export type OptedOutError = TaggedException<OptedOutException>;
26
+ export type PlatformApplicationDisabledError = TaggedException<PlatformApplicationDisabledException>;
27
+ export type ReplayLimitExceededError = TaggedException<ReplayLimitExceededException>;
28
+ export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
29
+ export type StaleTagError = TaggedException<StaleTagException>;
30
+ export type SubscriptionLimitExceededError = TaggedException<SubscriptionLimitExceededException>;
31
+ export type TagLimitExceededError = TaggedException<TagLimitExceededException>;
32
+ export type TagPolicyError = TaggedException<TagPolicyException>;
33
+ export type ThrottledError = TaggedException<ThrottledException>;
34
+ export type TooManyEntriesInBatchRequestError = TaggedException<TooManyEntriesInBatchRequestException>;
35
+ export type TopicLimitExceededError = TaggedException<TopicLimitExceededException>;
36
+ export type UserError = TaggedException<UserErrorException>;
37
+ export type ValidationError = TaggedException<ValidationException>;
38
+ export type VerificationError = TaggedException<VerificationException>;
39
+ export type SdkError = CommonSdkError;
40
+ export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
41
+ //# sourceMappingURL=Errors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { SNSClient } from "@aws-sdk/client-sns";
5
+ import { Context, Effect, Layer } from "effect";
6
+ declare const SNSClientInstance_base: Context.TagClass<SNSClientInstance, "@effect-aws/client-sns/SNSClientInstance", SNSClient>;
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export declare class SNSClientInstance extends SNSClientInstance_base {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export declare const make: Effect.Effect<SNSClient, never, import("effect/Scope").Scope>;
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export declare const layer: Layer.Layer<SNSClientInstance, never, never>;
23
+ export {};
24
+ //# sourceMappingURL=SNSClientInstance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SNSClientInstance.d.ts","sourceRoot":"","sources":["../../src/SNSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,iBAAkB,SAAQ,sBAEN;CAAG;AAEpC;;;GAGG;AACH,eAAO,MAAM,IAAI,+DAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,8CAAwC,CAAC"}
@@ -0,0 +1,253 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { type AddPermissionCommandInput, type AddPermissionCommandOutput, type CheckIfPhoneNumberIsOptedOutCommandInput, type CheckIfPhoneNumberIsOptedOutCommandOutput, type ConfirmSubscriptionCommandInput, type ConfirmSubscriptionCommandOutput, type CreatePlatformApplicationCommandInput, type CreatePlatformApplicationCommandOutput, type CreatePlatformEndpointCommandInput, type CreatePlatformEndpointCommandOutput, type CreateSMSSandboxPhoneNumberCommandInput, type CreateSMSSandboxPhoneNumberCommandOutput, type CreateTopicCommandInput, type CreateTopicCommandOutput, type DeleteEndpointCommandInput, type DeleteEndpointCommandOutput, type DeletePlatformApplicationCommandInput, type DeletePlatformApplicationCommandOutput, type DeleteSMSSandboxPhoneNumberCommandInput, type DeleteSMSSandboxPhoneNumberCommandOutput, type DeleteTopicCommandInput, type DeleteTopicCommandOutput, type GetDataProtectionPolicyCommandInput, type GetDataProtectionPolicyCommandOutput, type GetEndpointAttributesCommandInput, type GetEndpointAttributesCommandOutput, type GetPlatformApplicationAttributesCommandInput, type GetPlatformApplicationAttributesCommandOutput, type GetSMSAttributesCommandInput, type GetSMSAttributesCommandOutput, type GetSMSSandboxAccountStatusCommandInput, type GetSMSSandboxAccountStatusCommandOutput, type GetSubscriptionAttributesCommandInput, type GetSubscriptionAttributesCommandOutput, type GetTopicAttributesCommandInput, type GetTopicAttributesCommandOutput, type ListEndpointsByPlatformApplicationCommandInput, type ListEndpointsByPlatformApplicationCommandOutput, type ListOriginationNumbersCommandInput, type ListOriginationNumbersCommandOutput, type ListPhoneNumbersOptedOutCommandInput, type ListPhoneNumbersOptedOutCommandOutput, type ListPlatformApplicationsCommandInput, type ListPlatformApplicationsCommandOutput, type ListSMSSandboxPhoneNumbersCommandInput, type ListSMSSandboxPhoneNumbersCommandOutput, type ListSubscriptionsByTopicCommandInput, type ListSubscriptionsByTopicCommandOutput, type ListSubscriptionsCommandInput, type ListSubscriptionsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListTopicsCommandInput, type ListTopicsCommandOutput, type OptInPhoneNumberCommandInput, type OptInPhoneNumberCommandOutput, type PublishBatchCommandInput, type PublishBatchCommandOutput, type PublishCommandInput, type PublishCommandOutput, type PutDataProtectionPolicyCommandInput, type PutDataProtectionPolicyCommandOutput, type RemovePermissionCommandInput, type RemovePermissionCommandOutput, type SetEndpointAttributesCommandInput, type SetEndpointAttributesCommandOutput, type SetPlatformApplicationAttributesCommandInput, type SetPlatformApplicationAttributesCommandOutput, type SetSMSAttributesCommandInput, type SetSMSAttributesCommandOutput, type SetSubscriptionAttributesCommandInput, type SetSubscriptionAttributesCommandOutput, type SetTopicAttributesCommandInput, type SetTopicAttributesCommandOutput, type SNSClient, type SNSClientConfig, type SubscribeCommandInput, type SubscribeCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UnsubscribeCommandInput, type UnsubscribeCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type VerifySMSSandboxPhoneNumberCommandInput, type VerifySMSSandboxPhoneNumberCommandOutput } from "@aws-sdk/client-sns";
5
+ import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
6
+ import { Effect, Layer } from "effect";
7
+ import type { AuthorizationError, BatchEntryIdsNotDistinctError, BatchRequestTooLongError, ConcurrentAccessError, EmptyBatchRequestError, EndpointDisabledError, FilterPolicyLimitExceededError, InternalError, InvalidBatchEntryIdError, InvalidParameterError, InvalidParameterValueError, InvalidSecurityError, InvalidStateError, KMSAccessDeniedError, KMSDisabledError, KMSInvalidStateError, KMSNotFoundError, KMSOptInRequiredError, KMSThrottlingError, NotFoundError, OptedOutError, PlatformApplicationDisabledError, ReplayLimitExceededError, ResourceNotFoundError, StaleTagError, SubscriptionLimitExceededError, TagLimitExceededError, TagPolicyError, ThrottledError, TooManyEntriesInBatchRequestError, TopicLimitExceededError, UserError, ValidationError, VerificationError } from "./Errors.js";
8
+ import * as Instance from "./SNSClientInstance.js";
9
+ interface SNSService$ {
10
+ readonly _: unique symbol;
11
+ /**
12
+ * @see {@link AddPermissionCommand}
13
+ */
14
+ addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
15
+ /**
16
+ * @see {@link CheckIfPhoneNumberIsOptedOutCommand}
17
+ */
18
+ checkIfPhoneNumberIsOptedOut(args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
19
+ /**
20
+ * @see {@link ConfirmSubscriptionCommand}
21
+ */
22
+ confirmSubscription(args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConfirmSubscriptionCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
23
+ /**
24
+ * @see {@link CreatePlatformApplicationCommand}
25
+ */
26
+ createPlatformApplication(args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
27
+ /**
28
+ * @see {@link CreatePlatformEndpointCommand}
29
+ */
30
+ createPlatformEndpoint(args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
31
+ /**
32
+ * @see {@link CreateSMSSandboxPhoneNumberCommand}
33
+ */
34
+ createSMSSandboxPhoneNumber(args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError>;
35
+ /**
36
+ * @see {@link CreateTopicCommand}
37
+ */
38
+ createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError>;
39
+ /**
40
+ * @see {@link DeleteEndpointCommand}
41
+ */
42
+ deleteEndpoint(args: DeleteEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
43
+ /**
44
+ * @see {@link DeletePlatformApplicationCommand}
45
+ */
46
+ deletePlatformApplication(args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
47
+ /**
48
+ * @see {@link DeleteSMSSandboxPhoneNumberCommand}
49
+ */
50
+ deleteSMSSandboxPhoneNumber(args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError>;
51
+ /**
52
+ * @see {@link DeleteTopicCommand}
53
+ */
54
+ deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError>;
55
+ /**
56
+ * @see {@link GetDataProtectionPolicyCommand}
57
+ */
58
+ getDataProtectionPolicy(args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
59
+ /**
60
+ * @see {@link GetEndpointAttributesCommand}
61
+ */
62
+ getEndpointAttributes(args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
63
+ /**
64
+ * @see {@link GetPlatformApplicationAttributesCommand}
65
+ */
66
+ getPlatformApplicationAttributes(args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
67
+ /**
68
+ * @see {@link GetSMSAttributesCommand}
69
+ */
70
+ getSMSAttributes(args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
71
+ /**
72
+ * @see {@link GetSMSSandboxAccountStatusCommand}
73
+ */
74
+ getSMSSandboxAccountStatus(args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, SdkError | AuthorizationError | InternalError | ThrottledError>;
75
+ /**
76
+ * @see {@link GetSubscriptionAttributesCommand}
77
+ */
78
+ getSubscriptionAttributes(args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
79
+ /**
80
+ * @see {@link GetTopicAttributesCommand}
81
+ */
82
+ getTopicAttributes(args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
83
+ /**
84
+ * @see {@link ListEndpointsByPlatformApplicationCommand}
85
+ */
86
+ listEndpointsByPlatformApplication(args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
87
+ /**
88
+ * @see {@link ListOriginationNumbersCommand}
89
+ */
90
+ listOriginationNumbers(args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOriginationNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError>;
91
+ /**
92
+ * @see {@link ListPhoneNumbersOptedOutCommand}
93
+ */
94
+ listPhoneNumbersOptedOut(args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
95
+ /**
96
+ * @see {@link ListPlatformApplicationsCommand}
97
+ */
98
+ listPlatformApplications(args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPlatformApplicationsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
99
+ /**
100
+ * @see {@link ListSMSSandboxPhoneNumbersCommand}
101
+ */
102
+ listSMSSandboxPhoneNumbers(args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError>;
103
+ /**
104
+ * @see {@link ListSubscriptionsCommand}
105
+ */
106
+ listSubscriptions(args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
107
+ /**
108
+ * @see {@link ListSubscriptionsByTopicCommand}
109
+ */
110
+ listSubscriptionsByTopic(args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsByTopicCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
111
+ /**
112
+ * @see {@link ListTagsForResourceCommand}
113
+ */
114
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError>;
115
+ /**
116
+ * @see {@link ListTopicsCommand}
117
+ */
118
+ listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
119
+ /**
120
+ * @see {@link OptInPhoneNumberCommand}
121
+ */
122
+ optInPhoneNumber(args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<OptInPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
123
+ /**
124
+ * @see {@link PublishCommand}
125
+ */
126
+ publish(args: PublishCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishCommandOutput, SdkError | AuthorizationError | EndpointDisabledError | InternalError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | ValidationError>;
127
+ /**
128
+ * @see {@link PublishBatchCommand}
129
+ */
130
+ publishBatch(args: PublishBatchCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishBatchCommandOutput, SdkError | AuthorizationError | BatchEntryIdsNotDistinctError | BatchRequestTooLongError | EmptyBatchRequestError | EndpointDisabledError | InternalError | InvalidBatchEntryIdError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | TooManyEntriesInBatchRequestError | ValidationError>;
131
+ /**
132
+ * @see {@link PutDataProtectionPolicyCommand}
133
+ */
134
+ putDataProtectionPolicy(args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
135
+ /**
136
+ * @see {@link RemovePermissionCommand}
137
+ */
138
+ removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
139
+ /**
140
+ * @see {@link SetEndpointAttributesCommand}
141
+ */
142
+ setEndpointAttributes(args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
143
+ /**
144
+ * @see {@link SetPlatformApplicationAttributesCommand}
145
+ */
146
+ setPlatformApplicationAttributes(args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
147
+ /**
148
+ * @see {@link SetSMSAttributesCommand}
149
+ */
150
+ setSMSAttributes(args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
151
+ /**
152
+ * @see {@link SetSubscriptionAttributesCommand}
153
+ */
154
+ setSubscriptionAttributes(args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError>;
155
+ /**
156
+ * @see {@link SetTopicAttributesCommand}
157
+ */
158
+ setTopicAttributes(args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
159
+ /**
160
+ * @see {@link SubscribeCommand}
161
+ */
162
+ subscribe(args: SubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
163
+ /**
164
+ * @see {@link TagResourceCommand}
165
+ */
166
+ tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
167
+ /**
168
+ * @see {@link UnsubscribeCommand}
169
+ */
170
+ unsubscribe(args: UnsubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UnsubscribeCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
171
+ /**
172
+ * @see {@link UntagResourceCommand}
173
+ */
174
+ untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
175
+ /**
176
+ * @see {@link VerifySMSSandboxPhoneNumberCommand}
177
+ */
178
+ verifySMSSandboxPhoneNumber(args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError>;
179
+ }
180
+ /**
181
+ * @since 1.0.0
182
+ * @category constructors
183
+ */
184
+ export declare const makeSNSService: Effect.Effect<SNSService$, never, Instance.SNSClientInstance>;
185
+ declare const SNSService_base: import("effect/Context").TagClass<SNSService, "@effect-aws/client-sns/SNSService", SNSService$> & {
186
+ readonly _: Effect.Effect<SNSService$["_"], never, SNSService>;
187
+ addPermission: (args: AddPermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AddPermissionCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
188
+ checkIfPhoneNumberIsOptedOut: (args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | SdkError, SNSService>;
189
+ confirmSubscription: (args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ConfirmSubscriptionCommandOutput, AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError | SdkError, SNSService>;
190
+ createPlatformApplication: (args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreatePlatformApplicationCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
191
+ createPlatformEndpoint: (args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreatePlatformEndpointCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
192
+ createSMSSandboxPhoneNumber: (args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError | SdkError, SNSService>;
193
+ createTopic: (args: CreateTopicCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateTopicCommandOutput, AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError | SdkError, SNSService>;
194
+ deleteEndpoint: (args: DeleteEndpointCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteEndpointCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
195
+ deletePlatformApplication: (args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeletePlatformApplicationCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
196
+ deleteSMSSandboxPhoneNumber: (args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError | SdkError, SNSService>;
197
+ deleteTopic: (args: DeleteTopicCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteTopicCommandOutput, AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError | SdkError, SNSService>;
198
+ getDataProtectionPolicy: (args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetDataProtectionPolicyCommandOutput, AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | SdkError, SNSService>;
199
+ getEndpointAttributes: (args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetEndpointAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
200
+ getPlatformApplicationAttributes: (args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetPlatformApplicationAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
201
+ getSMSAttributes: (args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetSMSAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | SdkError, SNSService>;
202
+ getSMSSandboxAccountStatus: (args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, AuthorizationError | InternalError | ThrottledError | SdkError, SNSService>;
203
+ getSubscriptionAttributes: (args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetSubscriptionAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
204
+ getTopicAttributes: (args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetTopicAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | SdkError, SNSService>;
205
+ listEndpointsByPlatformApplication: (args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
206
+ listOriginationNumbers: (args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListOriginationNumbersCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError | SdkError, SNSService>;
207
+ listPhoneNumbersOptedOut: (args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | SdkError, SNSService>;
208
+ listPlatformApplications: (args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListPlatformApplicationsCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
209
+ listSMSSandboxPhoneNumbers: (args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | SdkError, SNSService>;
210
+ listSubscriptions: (args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListSubscriptionsCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
211
+ listSubscriptionsByTopic: (args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListSubscriptionsByTopicCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
212
+ listTagsForResource: (args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTagsForResourceCommandOutput, AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError | SdkError, SNSService>;
213
+ listTopics: (args: ListTopicsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTopicsCommandOutput, AuthorizationError | InternalError | InvalidParameterError | SdkError, SNSService>;
214
+ optInPhoneNumber: (args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<OptInPhoneNumberCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | SdkError, SNSService>;
215
+ publish: (args: PublishCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PublishCommandOutput, AuthorizationError | EndpointDisabledError | InternalError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | ValidationError | SdkError, SNSService>;
216
+ publishBatch: (args: PublishBatchCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PublishBatchCommandOutput, AuthorizationError | BatchEntryIdsNotDistinctError | BatchRequestTooLongError | EmptyBatchRequestError | EndpointDisabledError | InternalError | InvalidBatchEntryIdError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | TooManyEntriesInBatchRequestError | ValidationError | SdkError, SNSService>;
217
+ putDataProtectionPolicy: (args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutDataProtectionPolicyCommandOutput, AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | SdkError, SNSService>;
218
+ removePermission: (args: RemovePermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<RemovePermissionCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
219
+ setEndpointAttributes: (args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetEndpointAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
220
+ setPlatformApplicationAttributes: (args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetPlatformApplicationAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | NotFoundError | SdkError, SNSService>;
221
+ setSMSAttributes: (args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetSMSAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ThrottledError | SdkError, SNSService>;
222
+ setSubscriptionAttributes: (args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetSubscriptionAttributesCommandOutput, AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SdkError, SNSService>;
223
+ setTopicAttributes: (args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetTopicAttributesCommandOutput, AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | SdkError, SNSService>;
224
+ subscribe: (args: SubscribeCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SubscribeCommandOutput, AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError | SdkError, SNSService>;
225
+ tagResource: (args: TagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TagResourceCommandOutput, AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError | SdkError, SNSService>;
226
+ unsubscribe: (args: UnsubscribeCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UnsubscribeCommandOutput, AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | SdkError, SNSService>;
227
+ untagResource: (args: UntagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UntagResourceCommandOutput, AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError | SdkError, SNSService>;
228
+ verifySMSSandboxPhoneNumber: (args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError | SdkError, SNSService>;
229
+ } & {
230
+ use: <X>(body: (_: SNSService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, SNSService | R> : Effect.Effect<X, never, SNSService>;
231
+ };
232
+ /**
233
+ * @since 1.0.0
234
+ * @category models
235
+ */
236
+ export declare class SNSService extends SNSService_base {
237
+ static readonly defaultLayer: Layer.Layer<SNSService, never, never>;
238
+ static readonly layer: (config: SNSService.Config) => Layer.Layer<SNSService, never, never>;
239
+ static readonly baseLayer: (evaluate: (defaultConfig: SNSClientConfig) => SNSClient) => Layer.Layer<SNSService, never, never>;
240
+ }
241
+ /**
242
+ * @since 1.0.0
243
+ */
244
+ export declare namespace SNSService {
245
+ /**
246
+ * @since 1.0.0
247
+ */
248
+ interface Config extends Omit<SNSClientConfig, "logger"> {
249
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
250
+ }
251
+ }
252
+ export {};
253
+ //# sourceMappingURL=SNSService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SNSService.d.ts","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import type { SNSClientConfig } from "@aws-sdk/client-sns";
5
+ import { Effect, Layer } from "effect";
6
+ import type { SNSService } from "./SNSService.js";
7
+ /**
8
+ * @since 1.0.0
9
+ * @category sns service config
10
+ */
11
+ export declare const withSNSServiceConfig: {
12
+ (config: SNSService.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: SNSService.Config): Effect.Effect<A, E, R>;
14
+ };
15
+ /**
16
+ * @since 1.0.0
17
+ * @category sns service config
18
+ */
19
+ export declare const setSNSServiceConfig: (config: SNSService.Config) => Layer.Layer<never, never, never>;
20
+ /**
21
+ * @since 1.0.0
22
+ * @category adapters
23
+ */
24
+ export declare const toSNSClientConfig: Effect.Effect<SNSClientConfig>;
25
+ //# sourceMappingURL=SNSServiceConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SNSServiceConfig.d.ts","sourceRoot":"","sources":["../../src/SNSServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,OAAO,EAAE,MAAM,EAAY,KAAK,EAAE,MAAM,QAAQ,CAAC;AAGjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAWlD;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE;IACjC,CAAC,MAAM,EAAE,UAAU,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;IACjG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAK9F,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,WAAY,WAAW,MAAM,qCAAyD,CAAC;AAEvH;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,eAAe,CAQ3D,CAAC"}
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { SNSService } from "./SNSService.js";
5
+ /**
6
+ * @since 1.0.0
7
+ */
8
+ export * from "./Errors.js";
9
+ /**
10
+ * @since 1.0.0
11
+ */
12
+ export * as SNSClientInstance from "./SNSClientInstance.js";
13
+ /**
14
+ * @since 1.0.0
15
+ */
16
+ export * as SNSServiceConfig from "./SNSServiceConfig.js";
17
+ /**
18
+ * @since 1.0.0
19
+ */
20
+ export * from "./SNSService.js";
21
+ /**
22
+ * @since 1.0.0
23
+ * @category exports
24
+ * @alias SNSService
25
+ */
26
+ export declare namespace SNS {
27
+ /**
28
+ * @since 1.0.0
29
+ * @alias SNSService.Config
30
+ */
31
+ type Config = SNSService.Config;
32
+ }
33
+ /**
34
+ * @since 1.0.0
35
+ * @category exports
36
+ * @alias SNSService
37
+ */
38
+ export declare const SNS: typeof SNSService;
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,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C;;GAEG;AACH,cAAc,aAAa,CAAC;AAE5B;;GAEG;AACH,OAAO,KAAK,iBAAiB,MAAM,wBAAwB,CAAC;AAE5D;;GAEG;AACH,OAAO,KAAK,gBAAgB,MAAM,uBAAuB,CAAC;AAE1D;;GAEG;AACH,cAAc,iBAAiB,CAAC;AAEhC;;;;GAIG;AACH,MAAM,CAAC,OAAO,WAAW,GAAG,CAAC;IAC3B;;;OAGG;IACH,KAAY,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;CACxC;AAED;;;;GAIG;AACH,eAAO,MAAM,GAAG,mBAAa,CAAC"}
@@ -0,0 +1,39 @@
1
+ import { SdkError as CommonSdkError } from "@effect-aws/commons";
2
+ export const AllServiceErrors = [
3
+ "AuthorizationErrorException",
4
+ "BatchEntryIdsNotDistinctException",
5
+ "BatchRequestTooLongException",
6
+ "ConcurrentAccessException",
7
+ "EmptyBatchRequestException",
8
+ "EndpointDisabledException",
9
+ "FilterPolicyLimitExceededException",
10
+ "InternalErrorException",
11
+ "InvalidBatchEntryIdException",
12
+ "InvalidParameterException",
13
+ "InvalidParameterValueException",
14
+ "InvalidSecurityException",
15
+ "InvalidStateException",
16
+ "KMSAccessDeniedException",
17
+ "KMSDisabledException",
18
+ "KMSInvalidStateException",
19
+ "KMSNotFoundException",
20
+ "KMSOptInRequired",
21
+ "KMSThrottlingException",
22
+ "NotFoundException",
23
+ "OptedOutException",
24
+ "PlatformApplicationDisabledException",
25
+ "ReplayLimitExceededException",
26
+ "ResourceNotFoundException",
27
+ "StaleTagException",
28
+ "SubscriptionLimitExceededException",
29
+ "TagLimitExceededException",
30
+ "TagPolicyException",
31
+ "ThrottledException",
32
+ "TooManyEntriesInBatchRequestException",
33
+ "TopicLimitExceededException",
34
+ "UserErrorException",
35
+ "ValidationException",
36
+ "VerificationException",
37
+ ];
38
+ export const SdkError = CommonSdkError;
39
+ //# sourceMappingURL=Errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAqCA,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,6BAA6B;IAC7B,mCAAmC;IACnC,8BAA8B;IAC9B,2BAA2B;IAC3B,4BAA4B;IAC5B,2BAA2B;IAC3B,oCAAoC;IACpC,wBAAwB;IACxB,8BAA8B;IAC9B,2BAA2B;IAC3B,gCAAgC;IAChC,0BAA0B;IAC1B,uBAAuB;IACvB,0BAA0B;IAC1B,sBAAsB;IACtB,0BAA0B;IAC1B,sBAAsB;IACtB,kBAAkB;IAClB,wBAAwB;IACxB,mBAAmB;IACnB,mBAAmB;IACnB,sCAAsC;IACtC,8BAA8B;IAC9B,2BAA2B;IAC3B,mBAAmB;IACnB,oCAAoC;IACpC,2BAA2B;IAC3B,oBAAoB;IACpB,oBAAoB;IACpB,uCAAuC;IACvC,6BAA6B;IAC7B,oBAAoB;IACpB,qBAAqB;IACrB,uBAAuB;CACf,CAAC;AAsCX,MAAM,CAAC,MAAM,QAAQ,GAAG,cAAc,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { SNSClient } from "@aws-sdk/client-sns";
5
+ import { Context, Effect, Layer } from "effect";
6
+ import * as SNSServiceConfig from "./SNSServiceConfig.js";
7
+ /**
8
+ * @since 1.0.0
9
+ * @category tags
10
+ */
11
+ export class SNSClientInstance extends Context.Tag("@effect-aws/client-sns/SNSClientInstance")() {
12
+ }
13
+ /**
14
+ * @since 1.0.0
15
+ * @category constructors
16
+ */
17
+ export const make = Effect.flatMap(SNSServiceConfig.toSNSClientConfig, (config) => Effect.acquireRelease(Effect.sync(() => new SNSClient(config)), (client) => Effect.sync(() => client.destroy())));
18
+ /**
19
+ * @since 1.0.0
20
+ * @category layers
21
+ */
22
+ export const layer = Layer.scoped(SNSClientInstance, make);
23
+ //# sourceMappingURL=SNSClientInstance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SNSClientInstance.js","sourceRoot":"","sources":["../../src/SNSClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AAChD,OAAO,KAAK,gBAAgB,MAAM,uBAAuB,CAAC;AAE1D;;;GAGG;AACH,MAAM,OAAO,iBAAkB,SAAQ,OAAO,CAAC,GAAG,CAChD,0CAA0C,CAC3C,EAAgC;CAAG;AAEpC;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,CAChC,gBAAgB,CAAC,iBAAiB,EAClC,CAAC,MAAM,EAAE,EAAE,CACT,MAAM,CAAC,cAAc,CACnB,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,EACxC,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,iBAAiB,EAAE,IAAI,CAAC,CAAC"}
@@ -0,0 +1,71 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { AddPermissionCommand, CheckIfPhoneNumberIsOptedOutCommand, ConfirmSubscriptionCommand, CreatePlatformApplicationCommand, CreatePlatformEndpointCommand, CreateSMSSandboxPhoneNumberCommand, CreateTopicCommand, DeleteEndpointCommand, DeletePlatformApplicationCommand, DeleteSMSSandboxPhoneNumberCommand, DeleteTopicCommand, GetDataProtectionPolicyCommand, GetEndpointAttributesCommand, GetPlatformApplicationAttributesCommand, GetSMSAttributesCommand, GetSMSSandboxAccountStatusCommand, GetSubscriptionAttributesCommand, GetTopicAttributesCommand, ListEndpointsByPlatformApplicationCommand, ListOriginationNumbersCommand, ListPhoneNumbersOptedOutCommand, ListPlatformApplicationsCommand, ListSMSSandboxPhoneNumbersCommand, ListSubscriptionsByTopicCommand, ListSubscriptionsCommand, ListTagsForResourceCommand, ListTopicsCommand, OptInPhoneNumberCommand, PublishBatchCommand, PublishCommand, PutDataProtectionPolicyCommand, RemovePermissionCommand, SetEndpointAttributesCommand, SetPlatformApplicationAttributesCommand, SetSMSAttributesCommand, SetSubscriptionAttributesCommand, SetTopicAttributesCommand, SubscribeCommand, TagResourceCommand, UnsubscribeCommand, UntagResourceCommand, VerifySMSSandboxPhoneNumberCommand, } from "@aws-sdk/client-sns";
5
+ import { Service } from "@effect-aws/commons";
6
+ import { Effect, Layer } from "effect";
7
+ import { AllServiceErrors } from "./Errors.js";
8
+ import * as Instance from "./SNSClientInstance.js";
9
+ import * as SNSServiceConfig from "./SNSServiceConfig.js";
10
+ const commands = {
11
+ AddPermissionCommand,
12
+ CheckIfPhoneNumberIsOptedOutCommand,
13
+ ConfirmSubscriptionCommand,
14
+ CreatePlatformApplicationCommand,
15
+ CreatePlatformEndpointCommand,
16
+ CreateSMSSandboxPhoneNumberCommand,
17
+ CreateTopicCommand,
18
+ DeleteEndpointCommand,
19
+ DeletePlatformApplicationCommand,
20
+ DeleteSMSSandboxPhoneNumberCommand,
21
+ DeleteTopicCommand,
22
+ GetDataProtectionPolicyCommand,
23
+ GetEndpointAttributesCommand,
24
+ GetPlatformApplicationAttributesCommand,
25
+ GetSMSAttributesCommand,
26
+ GetSMSSandboxAccountStatusCommand,
27
+ GetSubscriptionAttributesCommand,
28
+ GetTopicAttributesCommand,
29
+ ListEndpointsByPlatformApplicationCommand,
30
+ ListOriginationNumbersCommand,
31
+ ListPhoneNumbersOptedOutCommand,
32
+ ListPlatformApplicationsCommand,
33
+ ListSMSSandboxPhoneNumbersCommand,
34
+ ListSubscriptionsCommand,
35
+ ListSubscriptionsByTopicCommand,
36
+ ListTagsForResourceCommand,
37
+ ListTopicsCommand,
38
+ OptInPhoneNumberCommand,
39
+ PublishCommand,
40
+ PublishBatchCommand,
41
+ PutDataProtectionPolicyCommand,
42
+ RemovePermissionCommand,
43
+ SetEndpointAttributesCommand,
44
+ SetPlatformApplicationAttributesCommand,
45
+ SetSMSAttributesCommand,
46
+ SetSubscriptionAttributesCommand,
47
+ SetTopicAttributesCommand,
48
+ SubscribeCommand,
49
+ TagResourceCommand,
50
+ UnsubscribeCommand,
51
+ UntagResourceCommand,
52
+ VerifySMSSandboxPhoneNumberCommand,
53
+ };
54
+ /**
55
+ * @since 1.0.0
56
+ * @category constructors
57
+ */
58
+ export const makeSNSService = Effect.gen(function* () {
59
+ const client = yield* Instance.SNSClientInstance;
60
+ return Service.fromClientAndCommands(client, commands, AllServiceErrors);
61
+ });
62
+ /**
63
+ * @since 1.0.0
64
+ * @category models
65
+ */
66
+ export class SNSService extends Effect.Tag("@effect-aws/client-sns/SNSService")() {
67
+ static defaultLayer = Layer.effect(this, makeSNSService).pipe(Layer.provide(Instance.layer));
68
+ static layer = (config) => Layer.effect(this, makeSNSService).pipe(Layer.provide(Instance.layer), Layer.provide(SNSServiceConfig.setSNSServiceConfig(config)));
69
+ static baseLayer = (evaluate) => Layer.effect(this, makeSNSService).pipe(Layer.provide(Layer.effect(Instance.SNSClientInstance, Effect.map(SNSServiceConfig.toSNSClientConfig, evaluate))));
70
+ }
71
+ //# sourceMappingURL=SNSService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SNSService.js","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}