@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,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AssociateChannelRequest,
5
+ AssociateChannelResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AssociateChannelCommandInput extends AssociateChannelRequest {}
15
+ export interface AssociateChannelCommandOutput
16
+ extends AssociateChannelResponse,
17
+ __MetadataBearer {}
18
+ declare const AssociateChannelCommand_base: {
19
+ new (
20
+ input: AssociateChannelCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ AssociateChannelCommandInput,
23
+ AssociateChannelCommandOutput,
24
+ NotificationsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: AssociateChannelCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ AssociateChannelCommandInput,
32
+ AssociateChannelCommandOutput,
33
+ NotificationsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class AssociateChannelCommand extends AssociateChannelCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: AssociateChannelRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: AssociateChannelCommandInput;
47
+ output: AssociateChannelCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateEventRuleRequest,
5
+ CreateEventRuleResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateEventRuleCommandInput extends CreateEventRuleRequest {}
15
+ export interface CreateEventRuleCommandOutput
16
+ extends CreateEventRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateEventRuleCommand_base: {
19
+ new (
20
+ input: CreateEventRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateEventRuleCommandInput,
23
+ CreateEventRuleCommandOutput,
24
+ NotificationsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateEventRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateEventRuleCommandInput,
32
+ CreateEventRuleCommandOutput,
33
+ NotificationsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateEventRuleCommand extends CreateEventRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateEventRuleRequest;
43
+ output: CreateEventRuleResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateEventRuleCommandInput;
47
+ output: CreateEventRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateNotificationConfigurationRequest,
5
+ CreateNotificationConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateNotificationConfigurationCommandInput
15
+ extends CreateNotificationConfigurationRequest {}
16
+ export interface CreateNotificationConfigurationCommandOutput
17
+ extends CreateNotificationConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateNotificationConfigurationCommand_base: {
20
+ new (
21
+ input: CreateNotificationConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateNotificationConfigurationCommandInput,
24
+ CreateNotificationConfigurationCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateNotificationConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateNotificationConfigurationCommandInput,
33
+ CreateNotificationConfigurationCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateNotificationConfigurationCommand extends CreateNotificationConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateNotificationConfigurationRequest;
44
+ output: CreateNotificationConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateNotificationConfigurationCommandInput;
48
+ output: CreateNotificationConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteEventRuleRequest,
5
+ DeleteEventRuleResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteEventRuleCommandInput extends DeleteEventRuleRequest {}
15
+ export interface DeleteEventRuleCommandOutput
16
+ extends DeleteEventRuleResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteEventRuleCommand_base: {
19
+ new (
20
+ input: DeleteEventRuleCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteEventRuleCommandInput,
23
+ DeleteEventRuleCommandOutput,
24
+ NotificationsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteEventRuleCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteEventRuleCommandInput,
32
+ DeleteEventRuleCommandOutput,
33
+ NotificationsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteEventRuleCommand extends DeleteEventRuleCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteEventRuleRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteEventRuleCommandInput;
47
+ output: DeleteEventRuleCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteNotificationConfigurationRequest,
5
+ DeleteNotificationConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteNotificationConfigurationCommandInput
15
+ extends DeleteNotificationConfigurationRequest {}
16
+ export interface DeleteNotificationConfigurationCommandOutput
17
+ extends DeleteNotificationConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteNotificationConfigurationCommand_base: {
20
+ new (
21
+ input: DeleteNotificationConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteNotificationConfigurationCommandInput,
24
+ DeleteNotificationConfigurationCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteNotificationConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteNotificationConfigurationCommandInput,
33
+ DeleteNotificationConfigurationCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteNotificationConfigurationCommand extends DeleteNotificationConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteNotificationConfigurationRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteNotificationConfigurationCommandInput;
48
+ output: DeleteNotificationConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeregisterNotificationHubRequest,
5
+ DeregisterNotificationHubResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeregisterNotificationHubCommandInput
15
+ extends DeregisterNotificationHubRequest {}
16
+ export interface DeregisterNotificationHubCommandOutput
17
+ extends DeregisterNotificationHubResponse,
18
+ __MetadataBearer {}
19
+ declare const DeregisterNotificationHubCommand_base: {
20
+ new (
21
+ input: DeregisterNotificationHubCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeregisterNotificationHubCommandInput,
24
+ DeregisterNotificationHubCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeregisterNotificationHubCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeregisterNotificationHubCommandInput,
33
+ DeregisterNotificationHubCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeregisterNotificationHubCommand extends DeregisterNotificationHubCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeregisterNotificationHubRequest;
44
+ output: DeregisterNotificationHubResponse;
45
+ };
46
+ sdk: {
47
+ input: DeregisterNotificationHubCommandInput;
48
+ output: DeregisterNotificationHubCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DisassociateChannelRequest,
5
+ DisassociateChannelResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateChannelCommandInput
15
+ extends DisassociateChannelRequest {}
16
+ export interface DisassociateChannelCommandOutput
17
+ extends DisassociateChannelResponse,
18
+ __MetadataBearer {}
19
+ declare const DisassociateChannelCommand_base: {
20
+ new (
21
+ input: DisassociateChannelCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateChannelCommandInput,
24
+ DisassociateChannelCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DisassociateChannelCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateChannelCommandInput,
33
+ DisassociateChannelCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateChannelCommand extends DisassociateChannelCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateChannelRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DisassociateChannelCommandInput;
48
+ output: DisassociateChannelCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetEventRuleRequest, GetEventRuleResponse } from "../models/models_0";
4
+ import {
5
+ NotificationsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NotificationsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetEventRuleCommandInput extends GetEventRuleRequest {}
12
+ export interface GetEventRuleCommandOutput
13
+ extends GetEventRuleResponse,
14
+ __MetadataBearer {}
15
+ declare const GetEventRuleCommand_base: {
16
+ new (
17
+ input: GetEventRuleCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetEventRuleCommandInput,
20
+ GetEventRuleCommandOutput,
21
+ NotificationsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetEventRuleCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetEventRuleCommandInput,
29
+ GetEventRuleCommandOutput,
30
+ NotificationsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetEventRuleCommand extends GetEventRuleCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetEventRuleRequest;
40
+ output: GetEventRuleResponse;
41
+ };
42
+ sdk: {
43
+ input: GetEventRuleCommandInput;
44
+ output: GetEventRuleCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetNotificationConfigurationRequest,
5
+ GetNotificationConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetNotificationConfigurationCommandInput
15
+ extends GetNotificationConfigurationRequest {}
16
+ export interface GetNotificationConfigurationCommandOutput
17
+ extends GetNotificationConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetNotificationConfigurationCommand_base: {
20
+ new (
21
+ input: GetNotificationConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetNotificationConfigurationCommandInput,
24
+ GetNotificationConfigurationCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetNotificationConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetNotificationConfigurationCommandInput,
33
+ GetNotificationConfigurationCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetNotificationConfigurationCommand extends GetNotificationConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetNotificationConfigurationRequest;
44
+ output: GetNotificationConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetNotificationConfigurationCommandInput;
48
+ output: GetNotificationConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetNotificationEventRequest,
5
+ GetNotificationEventResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetNotificationEventCommandInput
15
+ extends GetNotificationEventRequest {}
16
+ export interface GetNotificationEventCommandOutput
17
+ extends GetNotificationEventResponse,
18
+ __MetadataBearer {}
19
+ declare const GetNotificationEventCommand_base: {
20
+ new (
21
+ input: GetNotificationEventCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetNotificationEventCommandInput,
24
+ GetNotificationEventCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetNotificationEventCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetNotificationEventCommandInput,
33
+ GetNotificationEventCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetNotificationEventCommand extends GetNotificationEventCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetNotificationEventRequest;
44
+ output: GetNotificationEventResponse;
45
+ };
46
+ sdk: {
47
+ input: GetNotificationEventCommandInput;
48
+ output: GetNotificationEventCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
4
+ import {
5
+ NotificationsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NotificationsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListChannelsCommandInput extends ListChannelsRequest {}
12
+ export interface ListChannelsCommandOutput
13
+ extends ListChannelsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListChannelsCommand_base: {
16
+ new (
17
+ input: ListChannelsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListChannelsCommandInput,
20
+ ListChannelsCommandOutput,
21
+ NotificationsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: ListChannelsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListChannelsCommandInput,
29
+ ListChannelsCommandOutput,
30
+ NotificationsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListChannelsCommand extends ListChannelsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListChannelsRequest;
40
+ output: ListChannelsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListChannelsCommandInput;
44
+ output: ListChannelsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListEventRulesRequest,
5
+ ListEventRulesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEventRulesCommandInput extends ListEventRulesRequest {}
15
+ export interface ListEventRulesCommandOutput
16
+ extends ListEventRulesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListEventRulesCommand_base: {
19
+ new (
20
+ input: ListEventRulesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListEventRulesCommandInput,
23
+ ListEventRulesCommandOutput,
24
+ NotificationsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListEventRulesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListEventRulesCommandInput,
32
+ ListEventRulesCommandOutput,
33
+ NotificationsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListEventRulesCommand extends ListEventRulesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListEventRulesRequest;
43
+ output: ListEventRulesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListEventRulesCommandInput;
47
+ output: ListEventRulesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListNotificationConfigurationsRequest,
5
+ ListNotificationConfigurationsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NotificationsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NotificationsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListNotificationConfigurationsCommandInput
15
+ extends ListNotificationConfigurationsRequest {}
16
+ export interface ListNotificationConfigurationsCommandOutput
17
+ extends ListNotificationConfigurationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListNotificationConfigurationsCommand_base: {
20
+ new (
21
+ input: ListNotificationConfigurationsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListNotificationConfigurationsCommandInput,
24
+ ListNotificationConfigurationsCommandOutput,
25
+ NotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListNotificationConfigurationsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListNotificationConfigurationsCommandInput,
33
+ ListNotificationConfigurationsCommandOutput,
34
+ NotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListNotificationConfigurationsCommand extends ListNotificationConfigurationsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListNotificationConfigurationsRequest;
44
+ output: ListNotificationConfigurationsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListNotificationConfigurationsCommandInput;
48
+ output: ListNotificationConfigurationsCommandOutput;
49
+ };
50
+ };
51
+ }