@aws-sdk/client-notifications 3.698.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +380 -0
  3. package/dist-cjs/Notifications.js +53 -0
  4. package/dist-cjs/NotificationsClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AssociateChannelCommand.js +26 -0
  8. package/dist-cjs/commands/CreateEventRuleCommand.js +26 -0
  9. package/dist-cjs/commands/CreateNotificationConfigurationCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteEventRuleCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteNotificationConfigurationCommand.js +26 -0
  12. package/dist-cjs/commands/DeregisterNotificationHubCommand.js +26 -0
  13. package/dist-cjs/commands/DisassociateChannelCommand.js +26 -0
  14. package/dist-cjs/commands/GetEventRuleCommand.js +26 -0
  15. package/dist-cjs/commands/GetNotificationConfigurationCommand.js +26 -0
  16. package/dist-cjs/commands/GetNotificationEventCommand.js +26 -0
  17. package/dist-cjs/commands/ListChannelsCommand.js +26 -0
  18. package/dist-cjs/commands/ListEventRulesCommand.js +26 -0
  19. package/dist-cjs/commands/ListNotificationConfigurationsCommand.js +26 -0
  20. package/dist-cjs/commands/ListNotificationEventsCommand.js +26 -0
  21. package/dist-cjs/commands/ListNotificationHubsCommand.js +26 -0
  22. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  23. package/dist-cjs/commands/RegisterNotificationHubCommand.js +26 -0
  24. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  25. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  26. package/dist-cjs/commands/UpdateEventRuleCommand.js +26 -0
  27. package/dist-cjs/commands/UpdateNotificationConfigurationCommand.js +26 -0
  28. package/dist-cjs/commands/index.js +24 -0
  29. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  30. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  31. package/dist-cjs/endpoint/ruleset.js +7 -0
  32. package/dist-cjs/extensionConfiguration.js +2 -0
  33. package/dist-cjs/index.js +11 -0
  34. package/dist-cjs/models/NotificationsServiceException.js +12 -0
  35. package/dist-cjs/models/index.js +4 -0
  36. package/dist-cjs/models/models_0.js +181 -0
  37. package/dist-cjs/pagination/Interfaces.js +2 -0
  38. package/dist-cjs/pagination/ListChannelsPaginator.js +7 -0
  39. package/dist-cjs/pagination/ListEventRulesPaginator.js +7 -0
  40. package/dist-cjs/pagination/ListNotificationConfigurationsPaginator.js +7 -0
  41. package/dist-cjs/pagination/ListNotificationEventsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListNotificationHubsPaginator.js +7 -0
  43. package/dist-cjs/pagination/index.js +9 -0
  44. package/dist-cjs/protocols/Aws_restJson1.js +885 -0
  45. package/dist-cjs/runtimeConfig.browser.js +39 -0
  46. package/dist-cjs/runtimeConfig.js +50 -0
  47. package/dist-cjs/runtimeConfig.native.js +15 -0
  48. package/dist-cjs/runtimeConfig.shared.js +34 -0
  49. package/dist-cjs/runtimeExtensions.js +25 -0
  50. package/dist-es/Notifications.js +49 -0
  51. package/dist-es/NotificationsClient.js +46 -0
  52. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  53. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  54. package/dist-es/commands/AssociateChannelCommand.js +22 -0
  55. package/dist-es/commands/CreateEventRuleCommand.js +22 -0
  56. package/dist-es/commands/CreateNotificationConfigurationCommand.js +22 -0
  57. package/dist-es/commands/DeleteEventRuleCommand.js +22 -0
  58. package/dist-es/commands/DeleteNotificationConfigurationCommand.js +22 -0
  59. package/dist-es/commands/DeregisterNotificationHubCommand.js +22 -0
  60. package/dist-es/commands/DisassociateChannelCommand.js +22 -0
  61. package/dist-es/commands/GetEventRuleCommand.js +22 -0
  62. package/dist-es/commands/GetNotificationConfigurationCommand.js +22 -0
  63. package/dist-es/commands/GetNotificationEventCommand.js +22 -0
  64. package/dist-es/commands/ListChannelsCommand.js +22 -0
  65. package/dist-es/commands/ListEventRulesCommand.js +22 -0
  66. package/dist-es/commands/ListNotificationConfigurationsCommand.js +22 -0
  67. package/dist-es/commands/ListNotificationEventsCommand.js +22 -0
  68. package/dist-es/commands/ListNotificationHubsCommand.js +22 -0
  69. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  70. package/dist-es/commands/RegisterNotificationHubCommand.js +22 -0
  71. package/dist-es/commands/TagResourceCommand.js +22 -0
  72. package/dist-es/commands/UntagResourceCommand.js +22 -0
  73. package/dist-es/commands/UpdateEventRuleCommand.js +22 -0
  74. package/dist-es/commands/UpdateNotificationConfigurationCommand.js +22 -0
  75. package/dist-es/commands/index.js +21 -0
  76. package/dist-es/endpoint/EndpointParameters.js +12 -0
  77. package/dist-es/endpoint/endpointResolver.js +14 -0
  78. package/dist-es/endpoint/ruleset.js +4 -0
  79. package/dist-es/extensionConfiguration.js +1 -0
  80. package/dist-es/index.js +6 -0
  81. package/dist-es/models/NotificationsServiceException.js +8 -0
  82. package/dist-es/models/index.js +1 -0
  83. package/dist-es/models/models_0.js +171 -0
  84. package/dist-es/pagination/Interfaces.js +1 -0
  85. package/dist-es/pagination/ListChannelsPaginator.js +4 -0
  86. package/dist-es/pagination/ListEventRulesPaginator.js +4 -0
  87. package/dist-es/pagination/ListNotificationConfigurationsPaginator.js +4 -0
  88. package/dist-es/pagination/ListNotificationEventsPaginator.js +4 -0
  89. package/dist-es/pagination/ListNotificationHubsPaginator.js +4 -0
  90. package/dist-es/pagination/index.js +6 -0
  91. package/dist-es/protocols/Aws_restJson1.js +840 -0
  92. package/dist-es/runtimeConfig.browser.js +34 -0
  93. package/dist-es/runtimeConfig.js +45 -0
  94. package/dist-es/runtimeConfig.native.js +11 -0
  95. package/dist-es/runtimeConfig.shared.js +30 -0
  96. package/dist-es/runtimeExtensions.js +21 -0
  97. package/dist-types/Notifications.d.ts +167 -0
  98. package/dist-types/NotificationsClient.d.ts +197 -0
  99. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  100. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  101. package/dist-types/commands/AssociateChannelCommand.d.ts +92 -0
  102. package/dist-types/commands/CreateEventRuleCommand.d.ts +105 -0
  103. package/dist-types/commands/CreateNotificationConfigurationCommand.d.ts +95 -0
  104. package/dist-types/commands/DeleteEventRuleCommand.d.ts +87 -0
  105. package/dist-types/commands/DeleteNotificationConfigurationCommand.d.ts +87 -0
  106. package/dist-types/commands/DeregisterNotificationHubCommand.d.ts +96 -0
  107. package/dist-types/commands/DisassociateChannelCommand.d.ts +85 -0
  108. package/dist-types/commands/GetEventRuleCommand.d.ts +103 -0
  109. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +91 -0
  110. package/dist-types/commands/GetNotificationEventCommand.d.ts +154 -0
  111. package/dist-types/commands/ListChannelsCommand.d.ts +91 -0
  112. package/dist-types/commands/ListEventRulesCommand.d.ts +110 -0
  113. package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +97 -0
  114. package/dist-types/commands/ListNotificationEventsCommand.d.ts +118 -0
  115. package/dist-types/commands/ListNotificationHubsCommand.d.ts +95 -0
  116. package/dist-types/commands/ListTagsForResourceCommand.d.ts +92 -0
  117. package/dist-types/commands/RegisterNotificationHubCommand.d.ts +96 -0
  118. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  119. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  120. package/dist-types/commands/UpdateEventRuleCommand.d.ts +100 -0
  121. package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +92 -0
  122. package/dist-types/commands/index.d.ts +21 -0
  123. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  124. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  125. package/dist-types/endpoint/ruleset.d.ts +2 -0
  126. package/dist-types/extensionConfiguration.d.ts +9 -0
  127. package/dist-types/index.d.ts +21 -0
  128. package/dist-types/models/NotificationsServiceException.d.ts +14 -0
  129. package/dist-types/models/index.d.ts +1 -0
  130. package/dist-types/models/models_0.d.ts +2354 -0
  131. package/dist-types/pagination/Interfaces.d.ts +8 -0
  132. package/dist-types/pagination/ListChannelsPaginator.d.ts +7 -0
  133. package/dist-types/pagination/ListEventRulesPaginator.d.ts +7 -0
  134. package/dist-types/pagination/ListNotificationConfigurationsPaginator.d.ts +7 -0
  135. package/dist-types/pagination/ListNotificationEventsPaginator.d.ts +7 -0
  136. package/dist-types/pagination/ListNotificationHubsPaginator.d.ts +7 -0
  137. package/dist-types/pagination/index.d.ts +6 -0
  138. package/dist-types/protocols/Aws_restJson1.d.ts +191 -0
  139. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  140. package/dist-types/runtimeConfig.d.ts +48 -0
  141. package/dist-types/runtimeConfig.native.d.ts +47 -0
  142. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  143. package/dist-types/runtimeExtensions.d.ts +17 -0
  144. package/dist-types/ts3.4/Notifications.d.ts +367 -0
  145. package/dist-types/ts3.4/NotificationsClient.d.ts +245 -0
  146. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  147. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  148. package/dist-types/ts3.4/commands/AssociateChannelCommand.d.ts +50 -0
  149. package/dist-types/ts3.4/commands/CreateEventRuleCommand.d.ts +50 -0
  150. package/dist-types/ts3.4/commands/CreateNotificationConfigurationCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/DeleteEventRuleCommand.d.ts +50 -0
  152. package/dist-types/ts3.4/commands/DeleteNotificationConfigurationCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/DeregisterNotificationHubCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/DisassociateChannelCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/GetEventRuleCommand.d.ts +47 -0
  156. package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +51 -0
  157. package/dist-types/ts3.4/commands/GetNotificationEventCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +47 -0
  159. package/dist-types/ts3.4/commands/ListEventRulesCommand.d.ts +50 -0
  160. package/dist-types/ts3.4/commands/ListNotificationConfigurationsCommand.d.ts +51 -0
  161. package/dist-types/ts3.4/commands/ListNotificationEventsCommand.d.ts +51 -0
  162. package/dist-types/ts3.4/commands/ListNotificationHubsCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  164. package/dist-types/ts3.4/commands/RegisterNotificationHubCommand.d.ts +51 -0
  165. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  167. package/dist-types/ts3.4/commands/UpdateEventRuleCommand.d.ts +50 -0
  168. package/dist-types/ts3.4/commands/UpdateNotificationConfigurationCommand.d.ts +51 -0
  169. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  170. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  171. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  172. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  173. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  174. package/dist-types/ts3.4/index.d.ts +9 -0
  175. package/dist-types/ts3.4/models/NotificationsServiceException.d.ts +9 -0
  176. package/dist-types/ts3.4/models/index.d.ts +1 -0
  177. package/dist-types/ts3.4/models/models_0.d.ts +447 -0
  178. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  179. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -0
  180. package/dist-types/ts3.4/pagination/ListEventRulesPaginator.d.ts +11 -0
  181. package/dist-types/ts3.4/pagination/ListNotificationConfigurationsPaginator.d.ts +11 -0
  182. package/dist-types/ts3.4/pagination/ListNotificationEventsPaginator.d.ts +11 -0
  183. package/dist-types/ts3.4/pagination/ListNotificationHubsPaginator.d.ts +11 -0
  184. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  185. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -0
  186. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  187. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  188. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  189. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  190. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  191. package/package.json +101 -0
@@ -0,0 +1,257 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ AssociateChannelCommandInput,
8
+ AssociateChannelCommandOutput,
9
+ } from "../commands/AssociateChannelCommand";
10
+ import {
11
+ CreateEventRuleCommandInput,
12
+ CreateEventRuleCommandOutput,
13
+ } from "../commands/CreateEventRuleCommand";
14
+ import {
15
+ CreateNotificationConfigurationCommandInput,
16
+ CreateNotificationConfigurationCommandOutput,
17
+ } from "../commands/CreateNotificationConfigurationCommand";
18
+ import {
19
+ DeleteEventRuleCommandInput,
20
+ DeleteEventRuleCommandOutput,
21
+ } from "../commands/DeleteEventRuleCommand";
22
+ import {
23
+ DeleteNotificationConfigurationCommandInput,
24
+ DeleteNotificationConfigurationCommandOutput,
25
+ } from "../commands/DeleteNotificationConfigurationCommand";
26
+ import {
27
+ DeregisterNotificationHubCommandInput,
28
+ DeregisterNotificationHubCommandOutput,
29
+ } from "../commands/DeregisterNotificationHubCommand";
30
+ import {
31
+ DisassociateChannelCommandInput,
32
+ DisassociateChannelCommandOutput,
33
+ } from "../commands/DisassociateChannelCommand";
34
+ import {
35
+ GetEventRuleCommandInput,
36
+ GetEventRuleCommandOutput,
37
+ } from "../commands/GetEventRuleCommand";
38
+ import {
39
+ GetNotificationConfigurationCommandInput,
40
+ GetNotificationConfigurationCommandOutput,
41
+ } from "../commands/GetNotificationConfigurationCommand";
42
+ import {
43
+ GetNotificationEventCommandInput,
44
+ GetNotificationEventCommandOutput,
45
+ } from "../commands/GetNotificationEventCommand";
46
+ import {
47
+ ListChannelsCommandInput,
48
+ ListChannelsCommandOutput,
49
+ } from "../commands/ListChannelsCommand";
50
+ import {
51
+ ListEventRulesCommandInput,
52
+ ListEventRulesCommandOutput,
53
+ } from "../commands/ListEventRulesCommand";
54
+ import {
55
+ ListNotificationConfigurationsCommandInput,
56
+ ListNotificationConfigurationsCommandOutput,
57
+ } from "../commands/ListNotificationConfigurationsCommand";
58
+ import {
59
+ ListNotificationEventsCommandInput,
60
+ ListNotificationEventsCommandOutput,
61
+ } from "../commands/ListNotificationEventsCommand";
62
+ import {
63
+ ListNotificationHubsCommandInput,
64
+ ListNotificationHubsCommandOutput,
65
+ } from "../commands/ListNotificationHubsCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "../commands/ListTagsForResourceCommand";
70
+ import {
71
+ RegisterNotificationHubCommandInput,
72
+ RegisterNotificationHubCommandOutput,
73
+ } from "../commands/RegisterNotificationHubCommand";
74
+ import {
75
+ TagResourceCommandInput,
76
+ TagResourceCommandOutput,
77
+ } from "../commands/TagResourceCommand";
78
+ import {
79
+ UntagResourceCommandInput,
80
+ UntagResourceCommandOutput,
81
+ } from "../commands/UntagResourceCommand";
82
+ import {
83
+ UpdateEventRuleCommandInput,
84
+ UpdateEventRuleCommandOutput,
85
+ } from "../commands/UpdateEventRuleCommand";
86
+ import {
87
+ UpdateNotificationConfigurationCommandInput,
88
+ UpdateNotificationConfigurationCommandOutput,
89
+ } from "../commands/UpdateNotificationConfigurationCommand";
90
+ export declare const se_AssociateChannelCommand: (
91
+ input: AssociateChannelCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const se_CreateEventRuleCommand: (
95
+ input: CreateEventRuleCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_CreateNotificationConfigurationCommand: (
99
+ input: CreateNotificationConfigurationCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_DeleteEventRuleCommand: (
103
+ input: DeleteEventRuleCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_DeleteNotificationConfigurationCommand: (
107
+ input: DeleteNotificationConfigurationCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const se_DeregisterNotificationHubCommand: (
111
+ input: DeregisterNotificationHubCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const se_DisassociateChannelCommand: (
115
+ input: DisassociateChannelCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_GetEventRuleCommand: (
119
+ input: GetEventRuleCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_GetNotificationConfigurationCommand: (
123
+ input: GetNotificationConfigurationCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_GetNotificationEventCommand: (
127
+ input: GetNotificationEventCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_ListChannelsCommand: (
131
+ input: ListChannelsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_ListEventRulesCommand: (
135
+ input: ListEventRulesCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_ListNotificationConfigurationsCommand: (
139
+ input: ListNotificationConfigurationsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_ListNotificationEventsCommand: (
143
+ input: ListNotificationEventsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_ListNotificationHubsCommand: (
147
+ input: ListNotificationHubsCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_ListTagsForResourceCommand: (
151
+ input: ListTagsForResourceCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_RegisterNotificationHubCommand: (
155
+ input: RegisterNotificationHubCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_TagResourceCommand: (
159
+ input: TagResourceCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_UntagResourceCommand: (
163
+ input: UntagResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const se_UpdateEventRuleCommand: (
167
+ input: UpdateEventRuleCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const se_UpdateNotificationConfigurationCommand: (
171
+ input: UpdateNotificationConfigurationCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const de_AssociateChannelCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<AssociateChannelCommandOutput>;
178
+ export declare const de_CreateEventRuleCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<CreateEventRuleCommandOutput>;
182
+ export declare const de_CreateNotificationConfigurationCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<CreateNotificationConfigurationCommandOutput>;
186
+ export declare const de_DeleteEventRuleCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteEventRuleCommandOutput>;
190
+ export declare const de_DeleteNotificationConfigurationCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DeleteNotificationConfigurationCommandOutput>;
194
+ export declare const de_DeregisterNotificationHubCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<DeregisterNotificationHubCommandOutput>;
198
+ export declare const de_DisassociateChannelCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DisassociateChannelCommandOutput>;
202
+ export declare const de_GetEventRuleCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<GetEventRuleCommandOutput>;
206
+ export declare const de_GetNotificationConfigurationCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<GetNotificationConfigurationCommandOutput>;
210
+ export declare const de_GetNotificationEventCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<GetNotificationEventCommandOutput>;
214
+ export declare const de_ListChannelsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ListChannelsCommandOutput>;
218
+ export declare const de_ListEventRulesCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<ListEventRulesCommandOutput>;
222
+ export declare const de_ListNotificationConfigurationsCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<ListNotificationConfigurationsCommandOutput>;
226
+ export declare const de_ListNotificationEventsCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListNotificationEventsCommandOutput>;
230
+ export declare const de_ListNotificationHubsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListNotificationHubsCommandOutput>;
234
+ export declare const de_ListTagsForResourceCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListTagsForResourceCommandOutput>;
238
+ export declare const de_RegisterNotificationHubCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<RegisterNotificationHubCommandOutput>;
242
+ export declare const de_TagResourceCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<TagResourceCommandOutput>;
246
+ export declare const de_UntagResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<UntagResourceCommandOutput>;
250
+ export declare const de_UpdateEventRuleCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<UpdateEventRuleCommandOutput>;
254
+ export declare const de_UpdateNotificationConfigurationCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<UpdateNotificationConfigurationCommandOutput>;
@@ -0,0 +1,93 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { NotificationsClientConfig } from "./NotificationsClient";
3
+ export declare const getRuntimeConfig: (config: NotificationsClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
+ defaultUserAgentProvider: (
13
+ config?:
14
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
15
+ | undefined
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ apiVersion: string;
28
+ cacheMiddleware?: boolean | undefined;
29
+ urlParser: import("@smithy/types").UrlParser;
30
+ base64Decoder: import("@smithy/types").Decoder;
31
+ base64Encoder: (_input: string | Uint8Array) => string;
32
+ utf8Decoder: import("@smithy/types").Decoder;
33
+ utf8Encoder: (input: string | Uint8Array) => string;
34
+ disableHostPrefix: boolean;
35
+ serviceId: string;
36
+ logger: import("@smithy/types").Logger;
37
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
38
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
39
+ userAgentAppId?:
40
+ | string
41
+ | import("@smithy/types").Provider<string | undefined>
42
+ | undefined;
43
+ retryStrategy?:
44
+ | import("@smithy/types").RetryStrategy
45
+ | import("@smithy/types").RetryStrategyV2
46
+ | undefined;
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ serviceConfiguredEndpoint?: undefined;
72
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
73
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NotificationsHttpAuthSchemeProvider;
74
+ credentials?:
75
+ | import("@smithy/types").AwsCredentialIdentity
76
+ | import("@smithy/types").AwsCredentialIdentityProvider
77
+ | undefined;
78
+ signer?:
79
+ | import("@smithy/types").RequestSigner
80
+ | ((
81
+ authScheme?: import("@smithy/types").AuthScheme | undefined
82
+ ) => Promise<import("@smithy/types").RequestSigner>)
83
+ | undefined;
84
+ signingEscapePath?: boolean | undefined;
85
+ systemClockOffset?: number | undefined;
86
+ signingRegion?: string | undefined;
87
+ signerConstructor?:
88
+ | (new (
89
+ options: import("@smithy/signature-v4").SignatureV4Init &
90
+ import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ ) => import("@smithy/types").RequestSigner)
92
+ | undefined;
93
+ };
@@ -0,0 +1,94 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { NotificationsClientConfig } from "./NotificationsClient";
3
+ export declare const getRuntimeConfig: (config: NotificationsClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ init?:
11
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
+ | undefined
13
+ ) => import("@smithy/types").MemoizedProvider<
14
+ import("@smithy/types").AwsCredentialIdentity
15
+ >;
16
+ defaultUserAgentProvider: (
17
+ config?:
18
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ | undefined
20
+ ) => Promise<import("@smithy/types").UserAgent>;
21
+ maxAttempts: number | import("@smithy/types").Provider<number>;
22
+ region: string | import("@smithy/types").Provider<string>;
23
+ requestHandler:
24
+ | RequestHandler
25
+ | import("@smithy/protocol-http").HttpHandler<any>;
26
+ retryMode: string | import("@smithy/types").Provider<string>;
27
+ sha256: import("@smithy/types").HashConstructor;
28
+ streamCollector: import("@smithy/types").StreamCollector;
29
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
32
+ apiVersion: string;
33
+ cacheMiddleware?: boolean | undefined;
34
+ urlParser: import("@smithy/types").UrlParser;
35
+ base64Decoder: import("@smithy/types").Decoder;
36
+ base64Encoder: (_input: string | Uint8Array) => string;
37
+ utf8Decoder: import("@smithy/types").Decoder;
38
+ utf8Encoder: (input: string | Uint8Array) => string;
39
+ disableHostPrefix: boolean;
40
+ serviceId: string;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
44
+ retryStrategy?:
45
+ | import("@smithy/types").RetryStrategy
46
+ | import("@smithy/types").RetryStrategyV2
47
+ | undefined;
48
+ endpoint?:
49
+ | ((
50
+ | string
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ) &
56
+ (
57
+ | string
58
+ | import("@smithy/types").Provider<string>
59
+ | import("@smithy/types").Endpoint
60
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
61
+ | import("@smithy/types").EndpointV2
62
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
63
+ ))
64
+ | undefined;
65
+ endpointProvider: (
66
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
67
+ context?: {
68
+ logger?: import("@smithy/types").Logger | undefined;
69
+ }
70
+ ) => import("@smithy/types").EndpointV2;
71
+ tls?: boolean | undefined;
72
+ serviceConfiguredEndpoint?: undefined;
73
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
74
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NotificationsHttpAuthSchemeProvider;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").AwsCredentialIdentityProvider
78
+ | undefined;
79
+ signer?:
80
+ | import("@smithy/types").RequestSigner
81
+ | ((
82
+ authScheme?: import("@smithy/types").AuthScheme | undefined
83
+ ) => Promise<import("@smithy/types").RequestSigner>)
84
+ | undefined;
85
+ signingEscapePath?: boolean | undefined;
86
+ systemClockOffset?: number | undefined;
87
+ signingRegion?: string | undefined;
88
+ signerConstructor?:
89
+ | (new (
90
+ options: import("@smithy/signature-v4").SignatureV4Init &
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit
92
+ ) => import("@smithy/types").RequestSigner)
93
+ | undefined;
94
+ };
@@ -0,0 +1,87 @@
1
+ import { NotificationsClientConfig } from "./NotificationsClient";
2
+ export declare const getRuntimeConfig: (config: NotificationsClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ cacheMiddleware?: boolean | undefined;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: (_input: string | Uint8Array) => string;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: (input: string | Uint8Array) => string;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ defaultUserAgentProvider: (
26
+ config?:
27
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
28
+ | undefined
29
+ ) => Promise<import("@smithy/types").UserAgent>;
30
+ credentialDefaultProvider: (
31
+ input: any
32
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
33
+ maxAttempts: number | import("@smithy/types").Provider<number>;
34
+ retryMode: string | import("@smithy/types").Provider<string>;
35
+ logger: import("@smithy/types").Logger;
36
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
37
+ defaultsMode:
38
+ | import("@smithy/smithy-client").DefaultsMode
39
+ | import("@smithy/types").Provider<
40
+ import("@smithy/smithy-client").DefaultsMode
41
+ >;
42
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
43
+ userAgentAppId?:
44
+ | string
45
+ | import("@smithy/types").Provider<string | undefined>
46
+ | undefined;
47
+ retryStrategy?:
48
+ | import("@smithy/types").RetryStrategy
49
+ | import("@smithy/types").RetryStrategyV2
50
+ | undefined;
51
+ endpoint?:
52
+ | string
53
+ | import("@smithy/types").Endpoint
54
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
+ | import("@smithy/types").EndpointV2
56
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@smithy/types").Logger | undefined;
62
+ }
63
+ ) => import("@smithy/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ serviceConfiguredEndpoint?: undefined;
66
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
67
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NotificationsHttpAuthSchemeProvider;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").AwsCredentialIdentityProvider
71
+ | undefined;
72
+ signer?:
73
+ | import("@smithy/types").RequestSigner
74
+ | ((
75
+ authScheme?: import("@smithy/types").AuthScheme | undefined
76
+ ) => Promise<import("@smithy/types").RequestSigner>)
77
+ | undefined;
78
+ signingEscapePath?: boolean | undefined;
79
+ systemClockOffset?: number | undefined;
80
+ signingRegion?: string | undefined;
81
+ signerConstructor?:
82
+ | (new (
83
+ options: import("@smithy/signature-v4").SignatureV4Init &
84
+ import("@smithy/signature-v4").SignatureV4CryptoInit
85
+ ) => import("@smithy/types").RequestSigner)
86
+ | undefined;
87
+ };
@@ -0,0 +1,21 @@
1
+ import { NotificationsClientConfig } from "./NotificationsClient";
2
+ export declare const getRuntimeConfig: (config: NotificationsClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: string | Uint8Array) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").NotificationsHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { NotificationsExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: NotificationsExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
package/package.json ADDED
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "@aws-sdk/client-notifications",
3
+ "description": "AWS SDK for JavaScript Notifications Client for Node.js, Browser and React Native",
4
+ "version": "3.698.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo notifications"
15
+ },
16
+ "main": "./dist-cjs/index.js",
17
+ "types": "./dist-types/index.d.ts",
18
+ "module": "./dist-es/index.js",
19
+ "sideEffects": false,
20
+ "dependencies": {
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/client-sso-oidc": "3.696.0",
24
+ "@aws-sdk/client-sts": "3.696.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.696.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
52
+ "@smithy/util-base64": "^3.0.0",
53
+ "@smithy/util-body-length-browser": "^3.0.0",
54
+ "@smithy/util-body-length-node": "^3.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
+ "@smithy/util-utf8": "^3.0.0",
61
+ "tslib": "^2.6.2"
62
+ },
63
+ "devDependencies": {
64
+ "@tsconfig/node16": "16.1.3",
65
+ "@types/node": "^16.18.96",
66
+ "concurrently": "7.0.0",
67
+ "downlevel-dts": "0.10.1",
68
+ "rimraf": "3.0.2",
69
+ "typescript": "~4.9.5"
70
+ },
71
+ "engines": {
72
+ "node": ">=16.0.0"
73
+ },
74
+ "typesVersions": {
75
+ "<4.0": {
76
+ "dist-types/*": [
77
+ "dist-types/ts3.4/*"
78
+ ]
79
+ }
80
+ },
81
+ "files": [
82
+ "dist-*/**"
83
+ ],
84
+ "author": {
85
+ "name": "AWS SDK for JavaScript Team",
86
+ "url": "https://aws.amazon.com/javascript/"
87
+ },
88
+ "license": "Apache-2.0",
89
+ "browser": {
90
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
91
+ },
92
+ "react-native": {
93
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
94
+ },
95
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-notifications",
96
+ "repository": {
97
+ "type": "git",
98
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
99
+ "directory": "clients/client-notifications"
100
+ }
101
+ }