@effect-aws/client-sns 1.9.5 → 1.10.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.
- package/dist/cjs/SNSService.d.ts +44 -43
- package/dist/cjs/SNSService.d.ts.map +1 -1
- package/dist/cjs/SNSService.js +1 -1
- package/dist/cjs/SNSService.js.map +1 -1
- package/dist/dts/SNSService.d.ts +44 -43
- package/dist/dts/SNSService.d.ts.map +1 -1
- package/dist/esm/SNSService.js +1 -1
- package/dist/esm/SNSService.js.map +1 -1
- package/package.json +2 -2
- package/src/SNSService.ts +93 -31
package/dist/cjs/SNSService.d.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
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
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
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
9
|
import * as Instance from "./SNSClientInstance.js";
|
|
@@ -11,171 +12,171 @@ interface SNSService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link AddPermissionCommand}
|
|
13
14
|
*/
|
|
14
|
-
addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
15
|
+
addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link CheckIfPhoneNumberIsOptedOutCommand}
|
|
17
18
|
*/
|
|
18
|
-
checkIfPhoneNumberIsOptedOut(args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
19
|
+
checkIfPhoneNumberIsOptedOut(args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link ConfirmSubscriptionCommand}
|
|
21
22
|
*/
|
|
22
|
-
confirmSubscription(args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConfirmSubscriptionCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
23
|
+
confirmSubscription(args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConfirmSubscriptionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link CreatePlatformApplicationCommand}
|
|
25
26
|
*/
|
|
26
|
-
createPlatformApplication(args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
27
|
+
createPlatformApplication(args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link CreatePlatformEndpointCommand}
|
|
29
30
|
*/
|
|
30
|
-
createPlatformEndpoint(args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
31
|
+
createPlatformEndpoint(args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformEndpointCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link CreateSMSSandboxPhoneNumberCommand}
|
|
33
34
|
*/
|
|
34
|
-
createSMSSandboxPhoneNumber(args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError>;
|
|
35
|
+
createSMSSandboxPhoneNumber(args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link CreateTopicCommand}
|
|
37
38
|
*/
|
|
38
|
-
createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError>;
|
|
39
|
+
createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link DeleteEndpointCommand}
|
|
41
42
|
*/
|
|
42
|
-
deleteEndpoint(args: DeleteEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
43
|
+
deleteEndpoint(args: DeleteEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEndpointCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link DeletePlatformApplicationCommand}
|
|
45
46
|
*/
|
|
46
|
-
deletePlatformApplication(args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
47
|
+
deletePlatformApplication(args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link DeleteSMSSandboxPhoneNumberCommand}
|
|
49
50
|
*/
|
|
50
|
-
deleteSMSSandboxPhoneNumber(args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError>;
|
|
51
|
+
deleteSMSSandboxPhoneNumber(args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DeleteTopicCommand}
|
|
53
54
|
*/
|
|
54
|
-
deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError>;
|
|
55
|
+
deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link GetDataProtectionPolicyCommand}
|
|
57
58
|
*/
|
|
58
|
-
getDataProtectionPolicy(args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
59
|
+
getDataProtectionPolicy(args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataProtectionPolicyCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link GetEndpointAttributesCommand}
|
|
61
62
|
*/
|
|
62
|
-
getEndpointAttributes(args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
63
|
+
getEndpointAttributes(args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEndpointAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link GetPlatformApplicationAttributesCommand}
|
|
65
66
|
*/
|
|
66
|
-
getPlatformApplicationAttributes(args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
67
|
+
getPlatformApplicationAttributes(args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPlatformApplicationAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link GetSMSAttributesCommand}
|
|
69
70
|
*/
|
|
70
|
-
getSMSAttributes(args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
71
|
+
getSMSAttributes(args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link GetSMSSandboxAccountStatusCommand}
|
|
73
74
|
*/
|
|
74
|
-
getSMSSandboxAccountStatus(args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, SdkError | AuthorizationError | InternalError | ThrottledError>;
|
|
75
|
+
getSMSSandboxAccountStatus(args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | ThrottledError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link GetSubscriptionAttributesCommand}
|
|
77
78
|
*/
|
|
78
|
-
getSubscriptionAttributes(args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
79
|
+
getSubscriptionAttributes(args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSubscriptionAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link GetTopicAttributesCommand}
|
|
81
82
|
*/
|
|
82
|
-
getTopicAttributes(args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
83
|
+
getTopicAttributes(args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTopicAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link ListEndpointsByPlatformApplicationCommand}
|
|
85
86
|
*/
|
|
86
|
-
listEndpointsByPlatformApplication(args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
87
|
+
listEndpointsByPlatformApplication(args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link ListOriginationNumbersCommand}
|
|
89
90
|
*/
|
|
90
|
-
listOriginationNumbers(args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOriginationNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError>;
|
|
91
|
+
listOriginationNumbers(args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOriginationNumbersCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link ListPhoneNumbersOptedOutCommand}
|
|
93
94
|
*/
|
|
94
|
-
listPhoneNumbersOptedOut(args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
95
|
+
listPhoneNumbersOptedOut(args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListPlatformApplicationsCommand}
|
|
97
98
|
*/
|
|
98
|
-
listPlatformApplications(args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPlatformApplicationsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
99
|
+
listPlatformApplications(args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPlatformApplicationsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link ListSMSSandboxPhoneNumbersCommand}
|
|
101
102
|
*/
|
|
102
|
-
listSMSSandboxPhoneNumbers(args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError>;
|
|
103
|
+
listSMSSandboxPhoneNumbers(args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link ListSubscriptionsCommand}
|
|
105
106
|
*/
|
|
106
|
-
listSubscriptions(args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
107
|
+
listSubscriptions(args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link ListSubscriptionsByTopicCommand}
|
|
109
110
|
*/
|
|
110
|
-
listSubscriptionsByTopic(args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsByTopicCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
111
|
+
listSubscriptionsByTopic(args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsByTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link ListTagsForResourceCommand}
|
|
113
114
|
*/
|
|
114
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError>;
|
|
115
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link ListTopicsCommand}
|
|
117
118
|
*/
|
|
118
|
-
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
119
|
+
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link OptInPhoneNumberCommand}
|
|
121
122
|
*/
|
|
122
|
-
optInPhoneNumber(args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<OptInPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
123
|
+
optInPhoneNumber(args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<OptInPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link PublishCommand}
|
|
125
126
|
*/
|
|
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
|
+
publish(args: PublishCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | EndpointDisabledError | InternalError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | ValidationError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link PublishBatchCommand}
|
|
129
130
|
*/
|
|
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
|
+
publishBatch(args: PublishBatchCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishBatchCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | BatchEntryIdsNotDistinctError | BatchRequestTooLongError | EmptyBatchRequestError | EndpointDisabledError | InternalError | InvalidBatchEntryIdError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | TooManyEntriesInBatchRequestError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link PutDataProtectionPolicyCommand}
|
|
133
134
|
*/
|
|
134
|
-
putDataProtectionPolicy(args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
135
|
+
putDataProtectionPolicy(args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutDataProtectionPolicyCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link RemovePermissionCommand}
|
|
137
138
|
*/
|
|
138
|
-
removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
139
|
+
removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link SetEndpointAttributesCommand}
|
|
141
142
|
*/
|
|
142
|
-
setEndpointAttributes(args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
143
|
+
setEndpointAttributes(args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetEndpointAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link SetPlatformApplicationAttributesCommand}
|
|
145
146
|
*/
|
|
146
|
-
setPlatformApplicationAttributes(args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
147
|
+
setPlatformApplicationAttributes(args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetPlatformApplicationAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link SetSMSAttributesCommand}
|
|
149
150
|
*/
|
|
150
|
-
setSMSAttributes(args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
151
|
+
setSMSAttributes(args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSMSAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link SetSubscriptionAttributesCommand}
|
|
153
154
|
*/
|
|
154
|
-
setSubscriptionAttributes(args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError>;
|
|
155
|
+
setSubscriptionAttributes(args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSubscriptionAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link SetTopicAttributesCommand}
|
|
157
158
|
*/
|
|
158
|
-
setTopicAttributes(args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
159
|
+
setTopicAttributes(args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTopicAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
159
160
|
/**
|
|
160
161
|
* @see {@link SubscribeCommand}
|
|
161
162
|
*/
|
|
162
|
-
subscribe(args: SubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
163
|
+
subscribe(args: SubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
163
164
|
/**
|
|
164
165
|
* @see {@link TagResourceCommand}
|
|
165
166
|
*/
|
|
166
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
167
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
167
168
|
/**
|
|
168
169
|
* @see {@link UnsubscribeCommand}
|
|
169
170
|
*/
|
|
170
|
-
unsubscribe(args: UnsubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UnsubscribeCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
171
|
+
unsubscribe(args: UnsubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UnsubscribeCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
171
172
|
/**
|
|
172
173
|
* @see {@link UntagResourceCommand}
|
|
173
174
|
*/
|
|
174
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
175
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
175
176
|
/**
|
|
176
177
|
* @see {@link VerifySMSSandboxPhoneNumberCommand}
|
|
177
178
|
*/
|
|
178
|
-
verifySMSSandboxPhoneNumber(args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError>;
|
|
179
|
+
verifySMSSandboxPhoneNumber(args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError>;
|
|
179
180
|
}
|
|
180
181
|
/**
|
|
181
182
|
* @since 1.0.0
|
|
@@ -183,7 +184,7 @@ interface SNSService$ {
|
|
|
183
184
|
*/
|
|
184
185
|
export declare const makeSNSService: Effect.Effect<SNSService$, never, Instance.SNSClientInstance>;
|
|
185
186
|
declare const SNSService_base: import("effect/Context").TagClass<SNSService, "@effect-aws/client-sns/SNSService", SNSService$> & Effect.Tag.Proxy<SNSService, SNSService$> & {
|
|
186
|
-
use: <X>(body: (_: SNSService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SNSService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
187
|
+
use: <X>(body: (_: SNSService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SNSService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, SNSService> : Effect.Effect<X, never, SNSService>;
|
|
187
188
|
};
|
|
188
189
|
/**
|
|
189
190
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SNSService.d.ts","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SNSService.d.ts","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
|
package/dist/cjs/SNSService.js
CHANGED
|
@@ -83,7 +83,7 @@ const commands = {
|
|
|
83
83
|
*/
|
|
84
84
|
exports.makeSNSService = effect_1.Effect.gen(function* () {
|
|
85
85
|
const client = yield* Instance.SNSClientInstance;
|
|
86
|
-
return commons_1.Service.fromClientAndCommands(client, commands, {
|
|
86
|
+
return yield* commons_1.Service.fromClientAndCommands(client, commands, {
|
|
87
87
|
errorTags: Errors_js_1.AllServiceErrors,
|
|
88
88
|
resolveClientConfig: SNSServiceConfig.toSNSClientConfig,
|
|
89
89
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SNSService.js","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,oDAiI6B;AAE7B,iDAA8C;
|
|
1
|
+
{"version":3,"file":"SNSService.js","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
|
package/dist/dts/SNSService.d.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
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
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
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
9
|
import * as Instance from "./SNSClientInstance.js";
|
|
@@ -11,171 +12,171 @@ interface SNSService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link AddPermissionCommand}
|
|
13
14
|
*/
|
|
14
|
-
addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
15
|
+
addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link CheckIfPhoneNumberIsOptedOutCommand}
|
|
17
18
|
*/
|
|
18
|
-
checkIfPhoneNumberIsOptedOut(args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
19
|
+
checkIfPhoneNumberIsOptedOut(args: CheckIfPhoneNumberIsOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<CheckIfPhoneNumberIsOptedOutCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link ConfirmSubscriptionCommand}
|
|
21
22
|
*/
|
|
22
|
-
confirmSubscription(args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConfirmSubscriptionCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
23
|
+
confirmSubscription(args: ConfirmSubscriptionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ConfirmSubscriptionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link CreatePlatformApplicationCommand}
|
|
25
26
|
*/
|
|
26
|
-
createPlatformApplication(args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
27
|
+
createPlatformApplication(args: CreatePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link CreatePlatformEndpointCommand}
|
|
29
30
|
*/
|
|
30
|
-
createPlatformEndpoint(args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
31
|
+
createPlatformEndpoint(args: CreatePlatformEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePlatformEndpointCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link CreateSMSSandboxPhoneNumberCommand}
|
|
33
34
|
*/
|
|
34
|
-
createSMSSandboxPhoneNumber(args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError>;
|
|
35
|
+
createSMSSandboxPhoneNumber(args: CreateSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | OptedOutError | ThrottledError | UserError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link CreateTopicCommand}
|
|
37
38
|
*/
|
|
38
|
-
createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError>;
|
|
39
|
+
createTopic(args: CreateTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidSecurityError | StaleTagError | TagLimitExceededError | TagPolicyError | TopicLimitExceededError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link DeleteEndpointCommand}
|
|
41
42
|
*/
|
|
42
|
-
deleteEndpoint(args: DeleteEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEndpointCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
43
|
+
deleteEndpoint(args: DeleteEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEndpointCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link DeletePlatformApplicationCommand}
|
|
45
46
|
*/
|
|
46
|
-
deletePlatformApplication(args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
47
|
+
deletePlatformApplication(args: DeletePlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link DeleteSMSSandboxPhoneNumberCommand}
|
|
49
50
|
*/
|
|
50
|
-
deleteSMSSandboxPhoneNumber(args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError>;
|
|
51
|
+
deleteSMSSandboxPhoneNumber(args: DeleteSMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | UserError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DeleteTopicCommand}
|
|
53
54
|
*/
|
|
54
|
-
deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError>;
|
|
55
|
+
deleteTopic(args: DeleteTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InternalError | InvalidParameterError | InvalidStateError | NotFoundError | StaleTagError | TagPolicyError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link GetDataProtectionPolicyCommand}
|
|
57
58
|
*/
|
|
58
|
-
getDataProtectionPolicy(args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
59
|
+
getDataProtectionPolicy(args: GetDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataProtectionPolicyCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link GetEndpointAttributesCommand}
|
|
61
62
|
*/
|
|
62
|
-
getEndpointAttributes(args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
63
|
+
getEndpointAttributes(args: GetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEndpointAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link GetPlatformApplicationAttributesCommand}
|
|
65
66
|
*/
|
|
66
|
-
getPlatformApplicationAttributes(args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
67
|
+
getPlatformApplicationAttributes(args: GetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPlatformApplicationAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link GetSMSAttributesCommand}
|
|
69
70
|
*/
|
|
70
|
-
getSMSAttributes(args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
71
|
+
getSMSAttributes(args: GetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link GetSMSSandboxAccountStatusCommand}
|
|
73
74
|
*/
|
|
74
|
-
getSMSSandboxAccountStatus(args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, SdkError | AuthorizationError | InternalError | ThrottledError>;
|
|
75
|
+
getSMSSandboxAccountStatus(args: GetSMSSandboxAccountStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSMSSandboxAccountStatusCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | ThrottledError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link GetSubscriptionAttributesCommand}
|
|
77
78
|
*/
|
|
78
|
-
getSubscriptionAttributes(args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
79
|
+
getSubscriptionAttributes(args: GetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSubscriptionAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link GetTopicAttributesCommand}
|
|
81
82
|
*/
|
|
82
|
-
getTopicAttributes(args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
83
|
+
getTopicAttributes(args: GetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTopicAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link ListEndpointsByPlatformApplicationCommand}
|
|
85
86
|
*/
|
|
86
|
-
listEndpointsByPlatformApplication(args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
87
|
+
listEndpointsByPlatformApplication(args: ListEndpointsByPlatformApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEndpointsByPlatformApplicationCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link ListOriginationNumbersCommand}
|
|
89
90
|
*/
|
|
90
|
-
listOriginationNumbers(args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOriginationNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError>;
|
|
91
|
+
listOriginationNumbers(args: ListOriginationNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOriginationNumbersCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link ListPhoneNumbersOptedOutCommand}
|
|
93
94
|
*/
|
|
94
|
-
listPhoneNumbersOptedOut(args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
95
|
+
listPhoneNumbersOptedOut(args: ListPhoneNumbersOptedOutCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPhoneNumbersOptedOutCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListPlatformApplicationsCommand}
|
|
97
98
|
*/
|
|
98
|
-
listPlatformApplications(args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPlatformApplicationsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
99
|
+
listPlatformApplications(args: ListPlatformApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPlatformApplicationsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link ListSMSSandboxPhoneNumbersCommand}
|
|
101
102
|
*/
|
|
102
|
-
listSMSSandboxPhoneNumbers(args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError>;
|
|
103
|
+
listSMSSandboxPhoneNumbers(args: ListSMSSandboxPhoneNumbersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSMSSandboxPhoneNumbersCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link ListSubscriptionsCommand}
|
|
105
106
|
*/
|
|
106
|
-
listSubscriptions(args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
107
|
+
listSubscriptions(args: ListSubscriptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link ListSubscriptionsByTopicCommand}
|
|
109
110
|
*/
|
|
110
|
-
listSubscriptionsByTopic(args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsByTopicCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
111
|
+
listSubscriptionsByTopic(args: ListSubscriptionsByTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSubscriptionsByTopicCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link ListTagsForResourceCommand}
|
|
113
114
|
*/
|
|
114
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError>;
|
|
115
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | TagPolicyError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link ListTopicsCommand}
|
|
117
118
|
*/
|
|
118
|
-
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
119
|
+
listTopics(args: ListTopicsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTopicsCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link OptInPhoneNumberCommand}
|
|
121
122
|
*/
|
|
122
|
-
optInPhoneNumber(args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<OptInPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
123
|
+
optInPhoneNumber(args: OptInPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<OptInPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link PublishCommand}
|
|
125
126
|
*/
|
|
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
|
+
publish(args: PublishCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | EndpointDisabledError | InternalError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | ValidationError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link PublishBatchCommand}
|
|
129
130
|
*/
|
|
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
|
+
publishBatch(args: PublishBatchCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishBatchCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | BatchEntryIdsNotDistinctError | BatchRequestTooLongError | EmptyBatchRequestError | EndpointDisabledError | InternalError | InvalidBatchEntryIdError | InvalidParameterError | InvalidParameterValueError | InvalidSecurityError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | KMSOptInRequiredError | KMSThrottlingError | NotFoundError | PlatformApplicationDisabledError | TooManyEntriesInBatchRequestError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link PutDataProtectionPolicyCommand}
|
|
133
134
|
*/
|
|
134
|
-
putDataProtectionPolicy(args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutDataProtectionPolicyCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
135
|
+
putDataProtectionPolicy(args: PutDataProtectionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutDataProtectionPolicyCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link RemovePermissionCommand}
|
|
137
138
|
*/
|
|
138
|
-
removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
139
|
+
removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link SetEndpointAttributesCommand}
|
|
141
142
|
*/
|
|
142
|
-
setEndpointAttributes(args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetEndpointAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
143
|
+
setEndpointAttributes(args: SetEndpointAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetEndpointAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link SetPlatformApplicationAttributesCommand}
|
|
145
146
|
*/
|
|
146
|
-
setPlatformApplicationAttributes(args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetPlatformApplicationAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
147
|
+
setPlatformApplicationAttributes(args: SetPlatformApplicationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetPlatformApplicationAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link SetSMSAttributesCommand}
|
|
149
150
|
*/
|
|
150
|
-
setSMSAttributes(args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSMSAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
151
|
+
setSMSAttributes(args: SetSMSAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSMSAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link SetSubscriptionAttributesCommand}
|
|
153
154
|
*/
|
|
154
|
-
setSubscriptionAttributes(args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSubscriptionAttributesCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError>;
|
|
155
|
+
setSubscriptionAttributes(args: SetSubscriptionAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetSubscriptionAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | NotFoundError | ReplayLimitExceededError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link SetTopicAttributesCommand}
|
|
157
158
|
*/
|
|
158
|
-
setTopicAttributes(args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTopicAttributesCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
159
|
+
setTopicAttributes(args: SetTopicAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTopicAttributesCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
159
160
|
/**
|
|
160
161
|
* @see {@link SubscribeCommand}
|
|
161
162
|
*/
|
|
162
|
-
subscribe(args: SubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeCommandOutput, SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
163
|
+
subscribe(args: SubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubscribeCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | FilterPolicyLimitExceededError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError | ReplayLimitExceededError | SubscriptionLimitExceededError>;
|
|
163
164
|
/**
|
|
164
165
|
* @see {@link TagResourceCommand}
|
|
165
166
|
*/
|
|
166
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
167
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
167
168
|
/**
|
|
168
169
|
* @see {@link UnsubscribeCommand}
|
|
169
170
|
*/
|
|
170
|
-
unsubscribe(args: UnsubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UnsubscribeCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
171
|
+
unsubscribe(args: UnsubscribeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UnsubscribeCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | InvalidSecurityError | NotFoundError>;
|
|
171
172
|
/**
|
|
172
173
|
* @see {@link UntagResourceCommand}
|
|
173
174
|
*/
|
|
174
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
175
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | ConcurrentAccessError | InvalidParameterError | ResourceNotFoundError | StaleTagError | TagLimitExceededError | TagPolicyError>;
|
|
175
176
|
/**
|
|
176
177
|
* @see {@link VerifySMSSandboxPhoneNumberCommand}
|
|
177
178
|
*/
|
|
178
|
-
verifySMSSandboxPhoneNumber(args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError>;
|
|
179
|
+
verifySMSSandboxPhoneNumber(args: VerifySMSSandboxPhoneNumberCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifySMSSandboxPhoneNumberCommandOutput, Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ResourceNotFoundError | ThrottledError | VerificationError>;
|
|
179
180
|
}
|
|
180
181
|
/**
|
|
181
182
|
* @since 1.0.0
|
|
@@ -183,7 +184,7 @@ interface SNSService$ {
|
|
|
183
184
|
*/
|
|
184
185
|
export declare const makeSNSService: Effect.Effect<SNSService$, never, Instance.SNSClientInstance>;
|
|
185
186
|
declare const SNSService_base: import("effect/Context").TagClass<SNSService, "@effect-aws/client-sns/SNSService", SNSService$> & Effect.Tag.Proxy<SNSService, SNSService$> & {
|
|
186
|
-
use: <X>(body: (_: SNSService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SNSService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
187
|
+
use: <X>(body: (_: SNSService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SNSService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, SNSService> : Effect.Effect<X, never, SNSService>;
|
|
187
188
|
};
|
|
188
189
|
/**
|
|
189
190
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SNSService.d.ts","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAE9C,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,uCAAuC,EAC5C,KAAK,wCAAwC,EAE7C,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,uCAAuC,EAC5C,KAAK,wCAAwC,EAE7C,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,4CAA4C,EACjD,KAAK,6CAA6C,EAElD,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,sCAAsC,EAC3C,KAAK,uCAAuC,EAE5C,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,8CAA8C,EACnD,KAAK,+CAA+C,EAEpD,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,sCAAsC,EAC3C,KAAK,uCAAuC,EAE5C,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAE5B,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EAEzB,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,4CAA4C,EACjD,KAAK,6CAA6C,EAElD,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,SAAS,EACd,KAAK,eAAe,EAEpB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAE3B,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,uCAAuC,EAC5C,KAAK,wCAAwC,EAC9C,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,kBAAkB,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEvF,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EACV,kBAAkB,EAClB,6BAA6B,EAC7B,wBAAwB,EACxB,qBAAqB,EACrB,sBAAsB,EACtB,qBAAqB,EACrB,8BAA8B,EAC9B,aAAa,EACb,wBAAwB,EACxB,qBAAqB,EACrB,0BAA0B,EAC1B,oBAAoB,EACpB,iBAAiB,EACjB,oBAAoB,EACpB,gBAAgB,EAChB,oBAAoB,EACpB,gBAAgB,EAChB,qBAAqB,EACrB,kBAAkB,EAClB,aAAa,EACb,aAAa,EACb,gCAAgC,EAChC,wBAAwB,EACxB,qBAAqB,EACrB,aAAa,EACb,8BAA8B,EAC9B,qBAAqB,EACrB,cAAc,EACd,cAAc,EACd,iCAAiC,EACjC,uBAAuB,EACvB,SAAS,EACT,eAAe,EACf,iBAAiB,EAClB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AAgDnD,UAAU,WAAW;IACnB,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM,CAAC;IAE1B;;OAEG;IACH,aAAa,CACX,IAAI,EAAE,yBAAyB,EAC/B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,0BAA0B,EAC1B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,4BAA4B,CAC1B,IAAI,EAAE,wCAAwC,EAC9C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yCAAyC,EACzC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,CACvF,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,QAAQ,GACR,kBAAkB,GAClB,8BAA8B,GAC9B,aAAa,GACb,qBAAqB,GACrB,aAAa,GACb,wBAAwB,GACxB,8BAA8B,CACjC,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACtC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,2BAA2B,CACzB,IAAI,EAAE,uCAAuC,EAC7C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wCAAwC,EACxC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,GAAG,cAAc,GAAG,SAAS,CACnH,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,aAAa,GACb,qBAAqB,GACrB,oBAAoB,GACpB,aAAa,GACb,qBAAqB,GACrB,cAAc,GACd,uBAAuB,CAC1B,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACtC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,2BAA2B,CACzB,IAAI,EAAE,uCAAuC,EAC7C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wCAAwC,EACtC,QAAQ,GACR,kBAAkB,GAClB,aAAa,GACb,qBAAqB,GACrB,qBAAqB,GACrB,cAAc,GACd,SAAS,CACZ,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,aAAa,GACb,qBAAqB,GACrB,iBAAiB,GACjB,aAAa,GACb,aAAa,GACb,cAAc,CACjB,CAAC;IAEF;;OAEG;IACH,uBAAuB,CACrB,IAAI,EAAE,mCAAmC,EACzC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oCAAoC,EACpC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,aAAa,CAC7G,CAAC;IAEF;;OAEG;IACH,qBAAqB,CACnB,IAAI,EAAE,iCAAiC,EACvC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kCAAkC,EAClC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,gCAAgC,CAC9B,IAAI,EAAE,4CAA4C,EAClD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6CAA6C,EAC7C,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,CACvF,CAAC;IAEF;;OAEG;IACH,0BAA0B,CACxB,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uCAAuC,EACvC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,cAAc,CAC/D,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACtC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,aAAa,CAC7G,CAAC;IAEF;;OAEG;IACH,kCAAkC,CAChC,IAAI,EAAE,8CAA8C,EACpD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+CAA+C,EAC/C,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,GAAG,eAAe,CACzG,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,CACvF,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,0BAA0B,CACxB,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uCAAuC,EACvC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,qBAAqB,GAAG,cAAc,CAC/G,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC9B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAC9B,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,qBAAqB,GACrB,qBAAqB,GACrB,cAAc,CACjB,CAAC;IAEF;;OAEG;IACH,UAAU,CACR,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uBAAuB,EACvB,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,CACtE,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,CACvF,CAAC;IAEF;;OAEG;IACH,OAAO,CACL,IAAI,EAAE,mBAAmB,EACzB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oBAAoB,EAClB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,aAAa,GACb,qBAAqB,GACrB,0BAA0B,GAC1B,oBAAoB,GACpB,oBAAoB,GACpB,gBAAgB,GAChB,oBAAoB,GACpB,gBAAgB,GAChB,qBAAqB,GACrB,kBAAkB,GAClB,aAAa,GACb,gCAAgC,GAChC,eAAe,CAClB,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,QAAQ,GACR,kBAAkB,GAClB,6BAA6B,GAC7B,wBAAwB,GACxB,sBAAsB,GACtB,qBAAqB,GACrB,aAAa,GACb,wBAAwB,GACxB,qBAAqB,GACrB,0BAA0B,GAC1B,oBAAoB,GACpB,oBAAoB,GACpB,gBAAgB,GAChB,oBAAoB,GACpB,gBAAgB,GAChB,qBAAqB,GACrB,kBAAkB,GAClB,aAAa,GACb,gCAAgC,GAChC,iCAAiC,GACjC,eAAe,CAClB,CAAC;IAEF;;OAEG;IACH,uBAAuB,CACrB,IAAI,EAAE,mCAAmC,EACzC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oCAAoC,EACpC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,aAAa,CAC7G,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,qBAAqB,CACnB,IAAI,EAAE,iCAAiC,EACvC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kCAAkC,EAClC,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,gCAAgC,CAC9B,IAAI,EAAE,4CAA4C,EAClD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6CAA6C,EAC7C,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,aAAa,CACtF,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,cAAc,CACvF,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACpC,QAAQ,GACR,kBAAkB,GAClB,8BAA8B,GAC9B,aAAa,GACb,qBAAqB,GACrB,aAAa,GACb,wBAAwB,CAC3B,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,aAAa,CAC7G,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,QAAQ,GACR,kBAAkB,GAClB,8BAA8B,GAC9B,aAAa,GACb,qBAAqB,GACrB,oBAAoB,GACpB,aAAa,GACb,wBAAwB,GACxB,8BAA8B,CACjC,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACtB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,qBAAqB,GACrB,qBAAqB,GACrB,aAAa,GACb,qBAAqB,GACrB,cAAc,CACjB,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACxB,QAAQ,GAAG,kBAAkB,GAAG,aAAa,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,aAAa,CAC7G,CAAC;IAEF;;OAEG;IACH,aAAa,CACX,IAAI,EAAE,yBAAyB,EAC/B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,0BAA0B,EACxB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,qBAAqB,GACrB,qBAAqB,GACrB,aAAa,GACb,qBAAqB,GACrB,cAAc,CACjB,CAAC;IAEF;;OAEG;IACH,2BAA2B,CACzB,IAAI,EAAE,uCAAuC,EAC7C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wCAAwC,EACtC,QAAQ,GACR,kBAAkB,GAClB,aAAa,GACb,qBAAqB,GACrB,qBAAqB,GACrB,cAAc,GACd,iBAAiB,CACpB,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,+DAWzB,CAAC;;;;AAEH;;;GAGG;AACH,qBAAa,UAAW,SAAQ,eAG7B;IACD,MAAM,CAAC,QAAQ,CAAC,YAAY,wCAA0E;IACtG,MAAM,CAAC,QAAQ,CAAC,KAAK,WAAY,WAAW,MAAM,2CAI9C;IACJ,MAAM,CAAC,QAAQ,CAAC,SAAS,aACb,CAAC,aAAa,EAAE,eAAe,KAAK,SAAS,2CASrD;CACL;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC;;OAEG;IACH,UAAiB,MAAO,SAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC;QAC7D,QAAQ,CAAC,MAAM,CAAC,EAAE,aAAa,CAAC,6BAA6B,GAAG,IAAI,CAAC;KACtE;CACF"}
|
|
1
|
+
{"version":3,"file":"SNSService.d.ts","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/SNSService.js
CHANGED
|
@@ -57,7 +57,7 @@ const commands = {
|
|
|
57
57
|
*/
|
|
58
58
|
export const makeSNSService = Effect.gen(function* () {
|
|
59
59
|
const client = yield* Instance.SNSClientInstance;
|
|
60
|
-
return Service.fromClientAndCommands(client, commands, {
|
|
60
|
+
return yield* Service.fromClientAndCommands(client, commands, {
|
|
61
61
|
errorTags: AllServiceErrors,
|
|
62
62
|
resolveClientConfig: SNSServiceConfig.toSNSClientConfig,
|
|
63
63
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SNSService.js","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,oBAAoB,EAGpB,mCAAmC,EAGnC,0BAA0B,EAG1B,gCAAgC,EAGhC,6BAA6B,EAG7B,kCAAkC,EAGlC,kBAAkB,EAGlB,qBAAqB,EAGrB,gCAAgC,EAGhC,kCAAkC,EAGlC,kBAAkB,EAGlB,8BAA8B,EAG9B,4BAA4B,EAG5B,uCAAuC,EAGvC,uBAAuB,EAGvB,iCAAiC,EAGjC,gCAAgC,EAGhC,yBAAyB,EAGzB,yCAAyC,EAGzC,6BAA6B,EAG7B,+BAA+B,EAG/B,+BAA+B,EAG/B,iCAAiC,EAGjC,+BAA+B,EAG/B,wBAAwB,EAGxB,0BAA0B,EAG1B,iBAAiB,EAGjB,uBAAuB,EAGvB,mBAAmB,EAGnB,cAAc,EAGd,8BAA8B,EAG9B,uBAAuB,EAGvB,4BAA4B,EAG5B,uCAAuC,EAGvC,uBAAuB,EAGvB,gCAAgC,EAGhC,yBAAyB,EAKzB,gBAAgB,EAGhB,kBAAkB,EAGlB,kBAAkB,EAGlB,oBAAoB,EAGpB,kCAAkC,GAGnC,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"SNSService.js","sourceRoot":"","sources":["../../src/SNSService.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-aws/client-sns",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Effectful AWS SNS client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"homepage": "https://floydspace.github.io/effect-aws/docs/client-sns",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-sns": "^3",
|
|
19
|
-
"@effect-aws/commons": "^0.
|
|
19
|
+
"@effect-aws/commons": "^0.3.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"effect": ">=3.0.4 <4.0.0"
|
package/src/SNSService.ts
CHANGED
|
@@ -133,6 +133,7 @@ import {
|
|
|
133
133
|
} from "@aws-sdk/client-sns";
|
|
134
134
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
135
135
|
import { Service } from "@effect-aws/commons";
|
|
136
|
+
import type { Cause } from "effect";
|
|
136
137
|
import { Effect, Layer } from "effect";
|
|
137
138
|
import type {
|
|
138
139
|
AuthorizationError,
|
|
@@ -230,7 +231,7 @@ interface SNSService$ {
|
|
|
230
231
|
options?: HttpHandlerOptions,
|
|
231
232
|
): Effect.Effect<
|
|
232
233
|
AddPermissionCommandOutput,
|
|
233
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
234
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
234
235
|
>;
|
|
235
236
|
|
|
236
237
|
/**
|
|
@@ -241,7 +242,7 @@ interface SNSService$ {
|
|
|
241
242
|
options?: HttpHandlerOptions,
|
|
242
243
|
): Effect.Effect<
|
|
243
244
|
CheckIfPhoneNumberIsOptedOutCommandOutput,
|
|
244
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
245
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
245
246
|
>;
|
|
246
247
|
|
|
247
248
|
/**
|
|
@@ -252,6 +253,7 @@ interface SNSService$ {
|
|
|
252
253
|
options?: HttpHandlerOptions,
|
|
253
254
|
): Effect.Effect<
|
|
254
255
|
ConfirmSubscriptionCommandOutput,
|
|
256
|
+
| Cause.TimeoutException
|
|
255
257
|
| SdkError
|
|
256
258
|
| AuthorizationError
|
|
257
259
|
| FilterPolicyLimitExceededError
|
|
@@ -270,7 +272,7 @@ interface SNSService$ {
|
|
|
270
272
|
options?: HttpHandlerOptions,
|
|
271
273
|
): Effect.Effect<
|
|
272
274
|
CreatePlatformApplicationCommandOutput,
|
|
273
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
275
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
274
276
|
>;
|
|
275
277
|
|
|
276
278
|
/**
|
|
@@ -281,7 +283,7 @@ interface SNSService$ {
|
|
|
281
283
|
options?: HttpHandlerOptions,
|
|
282
284
|
): Effect.Effect<
|
|
283
285
|
CreatePlatformEndpointCommandOutput,
|
|
284
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
286
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
285
287
|
>;
|
|
286
288
|
|
|
287
289
|
/**
|
|
@@ -292,7 +294,14 @@ interface SNSService$ {
|
|
|
292
294
|
options?: HttpHandlerOptions,
|
|
293
295
|
): Effect.Effect<
|
|
294
296
|
CreateSMSSandboxPhoneNumberCommandOutput,
|
|
295
|
-
|
|
297
|
+
| Cause.TimeoutException
|
|
298
|
+
| SdkError
|
|
299
|
+
| AuthorizationError
|
|
300
|
+
| InternalError
|
|
301
|
+
| InvalidParameterError
|
|
302
|
+
| OptedOutError
|
|
303
|
+
| ThrottledError
|
|
304
|
+
| UserError
|
|
296
305
|
>;
|
|
297
306
|
|
|
298
307
|
/**
|
|
@@ -303,6 +312,7 @@ interface SNSService$ {
|
|
|
303
312
|
options?: HttpHandlerOptions,
|
|
304
313
|
): Effect.Effect<
|
|
305
314
|
CreateTopicCommandOutput,
|
|
315
|
+
| Cause.TimeoutException
|
|
306
316
|
| SdkError
|
|
307
317
|
| AuthorizationError
|
|
308
318
|
| ConcurrentAccessError
|
|
@@ -323,7 +333,7 @@ interface SNSService$ {
|
|
|
323
333
|
options?: HttpHandlerOptions,
|
|
324
334
|
): Effect.Effect<
|
|
325
335
|
DeleteEndpointCommandOutput,
|
|
326
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
336
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
327
337
|
>;
|
|
328
338
|
|
|
329
339
|
/**
|
|
@@ -334,7 +344,7 @@ interface SNSService$ {
|
|
|
334
344
|
options?: HttpHandlerOptions,
|
|
335
345
|
): Effect.Effect<
|
|
336
346
|
DeletePlatformApplicationCommandOutput,
|
|
337
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
347
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
338
348
|
>;
|
|
339
349
|
|
|
340
350
|
/**
|
|
@@ -345,6 +355,7 @@ interface SNSService$ {
|
|
|
345
355
|
options?: HttpHandlerOptions,
|
|
346
356
|
): Effect.Effect<
|
|
347
357
|
DeleteSMSSandboxPhoneNumberCommandOutput,
|
|
358
|
+
| Cause.TimeoutException
|
|
348
359
|
| SdkError
|
|
349
360
|
| AuthorizationError
|
|
350
361
|
| InternalError
|
|
@@ -362,6 +373,7 @@ interface SNSService$ {
|
|
|
362
373
|
options?: HttpHandlerOptions,
|
|
363
374
|
): Effect.Effect<
|
|
364
375
|
DeleteTopicCommandOutput,
|
|
376
|
+
| Cause.TimeoutException
|
|
365
377
|
| SdkError
|
|
366
378
|
| AuthorizationError
|
|
367
379
|
| ConcurrentAccessError
|
|
@@ -381,7 +393,13 @@ interface SNSService$ {
|
|
|
381
393
|
options?: HttpHandlerOptions,
|
|
382
394
|
): Effect.Effect<
|
|
383
395
|
GetDataProtectionPolicyCommandOutput,
|
|
384
|
-
|
|
396
|
+
| Cause.TimeoutException
|
|
397
|
+
| SdkError
|
|
398
|
+
| AuthorizationError
|
|
399
|
+
| InternalError
|
|
400
|
+
| InvalidParameterError
|
|
401
|
+
| InvalidSecurityError
|
|
402
|
+
| NotFoundError
|
|
385
403
|
>;
|
|
386
404
|
|
|
387
405
|
/**
|
|
@@ -392,7 +410,7 @@ interface SNSService$ {
|
|
|
392
410
|
options?: HttpHandlerOptions,
|
|
393
411
|
): Effect.Effect<
|
|
394
412
|
GetEndpointAttributesCommandOutput,
|
|
395
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
413
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
396
414
|
>;
|
|
397
415
|
|
|
398
416
|
/**
|
|
@@ -403,7 +421,7 @@ interface SNSService$ {
|
|
|
403
421
|
options?: HttpHandlerOptions,
|
|
404
422
|
): Effect.Effect<
|
|
405
423
|
GetPlatformApplicationAttributesCommandOutput,
|
|
406
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
424
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
407
425
|
>;
|
|
408
426
|
|
|
409
427
|
/**
|
|
@@ -414,7 +432,7 @@ interface SNSService$ {
|
|
|
414
432
|
options?: HttpHandlerOptions,
|
|
415
433
|
): Effect.Effect<
|
|
416
434
|
GetSMSAttributesCommandOutput,
|
|
417
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
435
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
418
436
|
>;
|
|
419
437
|
|
|
420
438
|
/**
|
|
@@ -425,7 +443,7 @@ interface SNSService$ {
|
|
|
425
443
|
options?: HttpHandlerOptions,
|
|
426
444
|
): Effect.Effect<
|
|
427
445
|
GetSMSSandboxAccountStatusCommandOutput,
|
|
428
|
-
SdkError | AuthorizationError | InternalError | ThrottledError
|
|
446
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | ThrottledError
|
|
429
447
|
>;
|
|
430
448
|
|
|
431
449
|
/**
|
|
@@ -436,7 +454,7 @@ interface SNSService$ {
|
|
|
436
454
|
options?: HttpHandlerOptions,
|
|
437
455
|
): Effect.Effect<
|
|
438
456
|
GetSubscriptionAttributesCommandOutput,
|
|
439
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
457
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
440
458
|
>;
|
|
441
459
|
|
|
442
460
|
/**
|
|
@@ -447,7 +465,13 @@ interface SNSService$ {
|
|
|
447
465
|
options?: HttpHandlerOptions,
|
|
448
466
|
): Effect.Effect<
|
|
449
467
|
GetTopicAttributesCommandOutput,
|
|
450
|
-
|
|
468
|
+
| Cause.TimeoutException
|
|
469
|
+
| SdkError
|
|
470
|
+
| AuthorizationError
|
|
471
|
+
| InternalError
|
|
472
|
+
| InvalidParameterError
|
|
473
|
+
| InvalidSecurityError
|
|
474
|
+
| NotFoundError
|
|
451
475
|
>;
|
|
452
476
|
|
|
453
477
|
/**
|
|
@@ -458,7 +482,7 @@ interface SNSService$ {
|
|
|
458
482
|
options?: HttpHandlerOptions,
|
|
459
483
|
): Effect.Effect<
|
|
460
484
|
ListEndpointsByPlatformApplicationCommandOutput,
|
|
461
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
485
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
462
486
|
>;
|
|
463
487
|
|
|
464
488
|
/**
|
|
@@ -469,7 +493,13 @@ interface SNSService$ {
|
|
|
469
493
|
options?: HttpHandlerOptions,
|
|
470
494
|
): Effect.Effect<
|
|
471
495
|
ListOriginationNumbersCommandOutput,
|
|
472
|
-
|
|
496
|
+
| Cause.TimeoutException
|
|
497
|
+
| SdkError
|
|
498
|
+
| AuthorizationError
|
|
499
|
+
| InternalError
|
|
500
|
+
| InvalidParameterError
|
|
501
|
+
| ThrottledError
|
|
502
|
+
| ValidationError
|
|
473
503
|
>;
|
|
474
504
|
|
|
475
505
|
/**
|
|
@@ -480,7 +510,7 @@ interface SNSService$ {
|
|
|
480
510
|
options?: HttpHandlerOptions,
|
|
481
511
|
): Effect.Effect<
|
|
482
512
|
ListPhoneNumbersOptedOutCommandOutput,
|
|
483
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
513
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
484
514
|
>;
|
|
485
515
|
|
|
486
516
|
/**
|
|
@@ -491,7 +521,7 @@ interface SNSService$ {
|
|
|
491
521
|
options?: HttpHandlerOptions,
|
|
492
522
|
): Effect.Effect<
|
|
493
523
|
ListPlatformApplicationsCommandOutput,
|
|
494
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
524
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
495
525
|
>;
|
|
496
526
|
|
|
497
527
|
/**
|
|
@@ -502,7 +532,13 @@ interface SNSService$ {
|
|
|
502
532
|
options?: HttpHandlerOptions,
|
|
503
533
|
): Effect.Effect<
|
|
504
534
|
ListSMSSandboxPhoneNumbersCommandOutput,
|
|
505
|
-
|
|
535
|
+
| Cause.TimeoutException
|
|
536
|
+
| SdkError
|
|
537
|
+
| AuthorizationError
|
|
538
|
+
| InternalError
|
|
539
|
+
| InvalidParameterError
|
|
540
|
+
| ResourceNotFoundError
|
|
541
|
+
| ThrottledError
|
|
506
542
|
>;
|
|
507
543
|
|
|
508
544
|
/**
|
|
@@ -513,7 +549,7 @@ interface SNSService$ {
|
|
|
513
549
|
options?: HttpHandlerOptions,
|
|
514
550
|
): Effect.Effect<
|
|
515
551
|
ListSubscriptionsCommandOutput,
|
|
516
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
552
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
517
553
|
>;
|
|
518
554
|
|
|
519
555
|
/**
|
|
@@ -524,7 +560,7 @@ interface SNSService$ {
|
|
|
524
560
|
options?: HttpHandlerOptions,
|
|
525
561
|
): Effect.Effect<
|
|
526
562
|
ListSubscriptionsByTopicCommandOutput,
|
|
527
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
563
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
528
564
|
>;
|
|
529
565
|
|
|
530
566
|
/**
|
|
@@ -535,6 +571,7 @@ interface SNSService$ {
|
|
|
535
571
|
options?: HttpHandlerOptions,
|
|
536
572
|
): Effect.Effect<
|
|
537
573
|
ListTagsForResourceCommandOutput,
|
|
574
|
+
| Cause.TimeoutException
|
|
538
575
|
| SdkError
|
|
539
576
|
| AuthorizationError
|
|
540
577
|
| ConcurrentAccessError
|
|
@@ -551,7 +588,7 @@ interface SNSService$ {
|
|
|
551
588
|
options?: HttpHandlerOptions,
|
|
552
589
|
): Effect.Effect<
|
|
553
590
|
ListTopicsCommandOutput,
|
|
554
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
591
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError
|
|
555
592
|
>;
|
|
556
593
|
|
|
557
594
|
/**
|
|
@@ -562,7 +599,7 @@ interface SNSService$ {
|
|
|
562
599
|
options?: HttpHandlerOptions,
|
|
563
600
|
): Effect.Effect<
|
|
564
601
|
OptInPhoneNumberCommandOutput,
|
|
565
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
602
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
566
603
|
>;
|
|
567
604
|
|
|
568
605
|
/**
|
|
@@ -573,6 +610,7 @@ interface SNSService$ {
|
|
|
573
610
|
options?: HttpHandlerOptions,
|
|
574
611
|
): Effect.Effect<
|
|
575
612
|
PublishCommandOutput,
|
|
613
|
+
| Cause.TimeoutException
|
|
576
614
|
| SdkError
|
|
577
615
|
| AuthorizationError
|
|
578
616
|
| EndpointDisabledError
|
|
@@ -599,6 +637,7 @@ interface SNSService$ {
|
|
|
599
637
|
options?: HttpHandlerOptions,
|
|
600
638
|
): Effect.Effect<
|
|
601
639
|
PublishBatchCommandOutput,
|
|
640
|
+
| Cause.TimeoutException
|
|
602
641
|
| SdkError
|
|
603
642
|
| AuthorizationError
|
|
604
643
|
| BatchEntryIdsNotDistinctError
|
|
@@ -630,7 +669,13 @@ interface SNSService$ {
|
|
|
630
669
|
options?: HttpHandlerOptions,
|
|
631
670
|
): Effect.Effect<
|
|
632
671
|
PutDataProtectionPolicyCommandOutput,
|
|
633
|
-
|
|
672
|
+
| Cause.TimeoutException
|
|
673
|
+
| SdkError
|
|
674
|
+
| AuthorizationError
|
|
675
|
+
| InternalError
|
|
676
|
+
| InvalidParameterError
|
|
677
|
+
| InvalidSecurityError
|
|
678
|
+
| NotFoundError
|
|
634
679
|
>;
|
|
635
680
|
|
|
636
681
|
/**
|
|
@@ -641,7 +686,7 @@ interface SNSService$ {
|
|
|
641
686
|
options?: HttpHandlerOptions,
|
|
642
687
|
): Effect.Effect<
|
|
643
688
|
RemovePermissionCommandOutput,
|
|
644
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
689
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
645
690
|
>;
|
|
646
691
|
|
|
647
692
|
/**
|
|
@@ -652,7 +697,7 @@ interface SNSService$ {
|
|
|
652
697
|
options?: HttpHandlerOptions,
|
|
653
698
|
): Effect.Effect<
|
|
654
699
|
SetEndpointAttributesCommandOutput,
|
|
655
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
700
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
656
701
|
>;
|
|
657
702
|
|
|
658
703
|
/**
|
|
@@ -663,7 +708,7 @@ interface SNSService$ {
|
|
|
663
708
|
options?: HttpHandlerOptions,
|
|
664
709
|
): Effect.Effect<
|
|
665
710
|
SetPlatformApplicationAttributesCommandOutput,
|
|
666
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
711
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | NotFoundError
|
|
667
712
|
>;
|
|
668
713
|
|
|
669
714
|
/**
|
|
@@ -674,7 +719,7 @@ interface SNSService$ {
|
|
|
674
719
|
options?: HttpHandlerOptions,
|
|
675
720
|
): Effect.Effect<
|
|
676
721
|
SetSMSAttributesCommandOutput,
|
|
677
|
-
SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
722
|
+
Cause.TimeoutException | SdkError | AuthorizationError | InternalError | InvalidParameterError | ThrottledError
|
|
678
723
|
>;
|
|
679
724
|
|
|
680
725
|
/**
|
|
@@ -685,6 +730,7 @@ interface SNSService$ {
|
|
|
685
730
|
options?: HttpHandlerOptions,
|
|
686
731
|
): Effect.Effect<
|
|
687
732
|
SetSubscriptionAttributesCommandOutput,
|
|
733
|
+
| Cause.TimeoutException
|
|
688
734
|
| SdkError
|
|
689
735
|
| AuthorizationError
|
|
690
736
|
| FilterPolicyLimitExceededError
|
|
@@ -702,7 +748,13 @@ interface SNSService$ {
|
|
|
702
748
|
options?: HttpHandlerOptions,
|
|
703
749
|
): Effect.Effect<
|
|
704
750
|
SetTopicAttributesCommandOutput,
|
|
705
|
-
|
|
751
|
+
| Cause.TimeoutException
|
|
752
|
+
| SdkError
|
|
753
|
+
| AuthorizationError
|
|
754
|
+
| InternalError
|
|
755
|
+
| InvalidParameterError
|
|
756
|
+
| InvalidSecurityError
|
|
757
|
+
| NotFoundError
|
|
706
758
|
>;
|
|
707
759
|
|
|
708
760
|
/**
|
|
@@ -713,6 +765,7 @@ interface SNSService$ {
|
|
|
713
765
|
options?: HttpHandlerOptions,
|
|
714
766
|
): Effect.Effect<
|
|
715
767
|
SubscribeCommandOutput,
|
|
768
|
+
| Cause.TimeoutException
|
|
716
769
|
| SdkError
|
|
717
770
|
| AuthorizationError
|
|
718
771
|
| FilterPolicyLimitExceededError
|
|
@@ -732,6 +785,7 @@ interface SNSService$ {
|
|
|
732
785
|
options?: HttpHandlerOptions,
|
|
733
786
|
): Effect.Effect<
|
|
734
787
|
TagResourceCommandOutput,
|
|
788
|
+
| Cause.TimeoutException
|
|
735
789
|
| SdkError
|
|
736
790
|
| AuthorizationError
|
|
737
791
|
| ConcurrentAccessError
|
|
@@ -750,7 +804,13 @@ interface SNSService$ {
|
|
|
750
804
|
options?: HttpHandlerOptions,
|
|
751
805
|
): Effect.Effect<
|
|
752
806
|
UnsubscribeCommandOutput,
|
|
753
|
-
|
|
807
|
+
| Cause.TimeoutException
|
|
808
|
+
| SdkError
|
|
809
|
+
| AuthorizationError
|
|
810
|
+
| InternalError
|
|
811
|
+
| InvalidParameterError
|
|
812
|
+
| InvalidSecurityError
|
|
813
|
+
| NotFoundError
|
|
754
814
|
>;
|
|
755
815
|
|
|
756
816
|
/**
|
|
@@ -761,6 +821,7 @@ interface SNSService$ {
|
|
|
761
821
|
options?: HttpHandlerOptions,
|
|
762
822
|
): Effect.Effect<
|
|
763
823
|
UntagResourceCommandOutput,
|
|
824
|
+
| Cause.TimeoutException
|
|
764
825
|
| SdkError
|
|
765
826
|
| AuthorizationError
|
|
766
827
|
| ConcurrentAccessError
|
|
@@ -779,6 +840,7 @@ interface SNSService$ {
|
|
|
779
840
|
options?: HttpHandlerOptions,
|
|
780
841
|
): Effect.Effect<
|
|
781
842
|
VerifySMSSandboxPhoneNumberCommandOutput,
|
|
843
|
+
| Cause.TimeoutException
|
|
782
844
|
| SdkError
|
|
783
845
|
| AuthorizationError
|
|
784
846
|
| InternalError
|
|
@@ -796,7 +858,7 @@ interface SNSService$ {
|
|
|
796
858
|
export const makeSNSService = Effect.gen(function*() {
|
|
797
859
|
const client = yield* Instance.SNSClientInstance;
|
|
798
860
|
|
|
799
|
-
return Service.fromClientAndCommands<SNSService$>(
|
|
861
|
+
return yield* Service.fromClientAndCommands<SNSService$>(
|
|
800
862
|
client,
|
|
801
863
|
commands,
|
|
802
864
|
{
|