@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,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AssociateChannelRequest, AssociateChannelResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AssociateChannelCommand}.
14
+ */
15
+ export interface AssociateChannelCommandInput extends AssociateChannelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AssociateChannelCommand}.
21
+ */
22
+ export interface AssociateChannelCommandOutput extends AssociateChannelResponse, __MetadataBearer {
23
+ }
24
+ declare const AssociateChannelCommand_base: {
25
+ new (input: AssociateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateChannelCommandInput, AssociateChannelCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: AssociateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateChannelCommandInput, AssociateChannelCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Associates a delivery <a href="https://docs.aws.amazon.com/notifications/latest/userguide/managing-delivery-channels.html">Channel</a> with a particular NotificationConfiguration. Supported Channels include AWS Chatbot,
31
+ * the AWS Console Mobile Application, and emails (notifications-contacts).</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { NotificationsClient, AssociateChannelCommand } from "@aws-sdk/client-notifications"; // ES Modules import
36
+ * // const { NotificationsClient, AssociateChannelCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
37
+ * const client = new NotificationsClient(config);
38
+ * const input = { // AssociateChannelRequest
39
+ * arn: "STRING_VALUE", // required
40
+ * notificationConfigurationArn: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new AssociateChannelCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param AssociateChannelCommandInput - {@link AssociateChannelCommandInput}
49
+ * @returns {@link AssociateChannelCommandOutput}
50
+ * @see {@link AssociateChannelCommandInput} for command's `input` shape.
51
+ * @see {@link AssociateChannelCommandOutput} for command's `response` shape.
52
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>User does not have sufficient access to perform this action.</p>
56
+ *
57
+ * @throws {@link ConflictException} (client fault)
58
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
59
+ *
60
+ * @throws {@link InternalServerException} (server fault)
61
+ * <p>Unexpected error during processing of request.</p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>Request references a resource which does not exist. </p>
65
+ *
66
+ * @throws {@link ServiceQuotaExceededException} (client fault)
67
+ * <p>Request would cause a service quota to be exceeded.</p>
68
+ *
69
+ * @throws {@link ThrottlingException} (client fault)
70
+ * <p>Request was denied due to request throttling. </p>
71
+ *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>This exception is thrown when the notification event fails validation.</p>
74
+ *
75
+ * @throws {@link NotificationsServiceException}
76
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
77
+ *
78
+ * @public
79
+ */
80
+ export declare class AssociateChannelCommand extends AssociateChannelCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: AssociateChannelRequest;
85
+ output: {};
86
+ };
87
+ sdk: {
88
+ input: AssociateChannelCommandInput;
89
+ output: AssociateChannelCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,105 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateEventRuleRequest, CreateEventRuleResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateEventRuleCommand}.
14
+ */
15
+ export interface CreateEventRuleCommandInput extends CreateEventRuleRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateEventRuleCommand}.
21
+ */
22
+ export interface CreateEventRuleCommandOutput extends CreateEventRuleResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateEventRuleCommand_base: {
25
+ new (input: CreateEventRuleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventRuleCommandInput, CreateEventRuleCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateEventRuleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventRuleCommandInput, CreateEventRuleCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates an <a href="https://docs.aws.amazon.com/notifications/latest/userguide/glossary.html">EventRule</a> that is associated with a specified Notification Configuration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NotificationsClient, CreateEventRuleCommand } from "@aws-sdk/client-notifications"; // ES Modules import
35
+ * // const { NotificationsClient, CreateEventRuleCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
36
+ * const client = new NotificationsClient(config);
37
+ * const input = { // CreateEventRuleRequest
38
+ * notificationConfigurationArn: "STRING_VALUE", // required
39
+ * source: "STRING_VALUE", // required
40
+ * eventType: "STRING_VALUE", // required
41
+ * eventPattern: "STRING_VALUE",
42
+ * regions: [ // Regions // required
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * };
46
+ * const command = new CreateEventRuleCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // CreateEventRuleResponse
49
+ * // arn: "STRING_VALUE", // required
50
+ * // notificationConfigurationArn: "STRING_VALUE", // required
51
+ * // statusSummaryByRegion: { // StatusSummaryByRegion // required
52
+ * // "<keys>": { // EventRuleStatusSummary
53
+ * // status: "STRING_VALUE", // required
54
+ * // reason: "STRING_VALUE", // required
55
+ * // },
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param CreateEventRuleCommandInput - {@link CreateEventRuleCommandInput}
62
+ * @returns {@link CreateEventRuleCommandOutput}
63
+ * @see {@link CreateEventRuleCommandInput} for command's `input` shape.
64
+ * @see {@link CreateEventRuleCommandOutput} for command's `response` shape.
65
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>User does not have sufficient access to perform this action.</p>
69
+ *
70
+ * @throws {@link ConflictException} (client fault)
71
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
72
+ *
73
+ * @throws {@link InternalServerException} (server fault)
74
+ * <p>Unexpected error during processing of request.</p>
75
+ *
76
+ * @throws {@link ResourceNotFoundException} (client fault)
77
+ * <p>Request references a resource which does not exist. </p>
78
+ *
79
+ * @throws {@link ServiceQuotaExceededException} (client fault)
80
+ * <p>Request would cause a service quota to be exceeded.</p>
81
+ *
82
+ * @throws {@link ThrottlingException} (client fault)
83
+ * <p>Request was denied due to request throttling. </p>
84
+ *
85
+ * @throws {@link ValidationException} (client fault)
86
+ * <p>This exception is thrown when the notification event fails validation.</p>
87
+ *
88
+ * @throws {@link NotificationsServiceException}
89
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
90
+ *
91
+ * @public
92
+ */
93
+ export declare class CreateEventRuleCommand extends CreateEventRuleCommand_base {
94
+ /** @internal type navigation helper, not in runtime. */
95
+ protected static __types: {
96
+ api: {
97
+ input: CreateEventRuleRequest;
98
+ output: CreateEventRuleResponse;
99
+ };
100
+ sdk: {
101
+ input: CreateEventRuleCommandInput;
102
+ output: CreateEventRuleCommandOutput;
103
+ };
104
+ };
105
+ }
@@ -0,0 +1,95 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateNotificationConfigurationRequest, CreateNotificationConfigurationResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateNotificationConfigurationCommand}.
14
+ */
15
+ export interface CreateNotificationConfigurationCommandInput extends CreateNotificationConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateNotificationConfigurationCommand}.
21
+ */
22
+ export interface CreateNotificationConfigurationCommandOutput extends CreateNotificationConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateNotificationConfigurationCommand_base: {
25
+ new (input: CreateNotificationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNotificationConfigurationCommandInput, CreateNotificationConfigurationCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateNotificationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNotificationConfigurationCommandInput, CreateNotificationConfigurationCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new NotificationConfiguration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NotificationsClient, CreateNotificationConfigurationCommand } from "@aws-sdk/client-notifications"; // ES Modules import
35
+ * // const { NotificationsClient, CreateNotificationConfigurationCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
36
+ * const client = new NotificationsClient(config);
37
+ * const input = { // CreateNotificationConfigurationRequest
38
+ * name: "STRING_VALUE", // required
39
+ * description: "STRING_VALUE", // required
40
+ * aggregationDuration: "STRING_VALUE",
41
+ * tags: { // TagMap
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * };
45
+ * const command = new CreateNotificationConfigurationCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // CreateNotificationConfigurationResponse
48
+ * // arn: "STRING_VALUE", // required
49
+ * // status: "STRING_VALUE", // required
50
+ * // };
51
+ *
52
+ * ```
53
+ *
54
+ * @param CreateNotificationConfigurationCommandInput - {@link CreateNotificationConfigurationCommandInput}
55
+ * @returns {@link CreateNotificationConfigurationCommandOutput}
56
+ * @see {@link CreateNotificationConfigurationCommandInput} for command's `input` shape.
57
+ * @see {@link CreateNotificationConfigurationCommandOutput} for command's `response` shape.
58
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>User does not have sufficient access to perform this action.</p>
62
+ *
63
+ * @throws {@link ConflictException} (client fault)
64
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
65
+ *
66
+ * @throws {@link InternalServerException} (server fault)
67
+ * <p>Unexpected error during processing of request.</p>
68
+ *
69
+ * @throws {@link ServiceQuotaExceededException} (client fault)
70
+ * <p>Request would cause a service quota to be exceeded.</p>
71
+ *
72
+ * @throws {@link ThrottlingException} (client fault)
73
+ * <p>Request was denied due to request throttling. </p>
74
+ *
75
+ * @throws {@link ValidationException} (client fault)
76
+ * <p>This exception is thrown when the notification event fails validation.</p>
77
+ *
78
+ * @throws {@link NotificationsServiceException}
79
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
80
+ *
81
+ * @public
82
+ */
83
+ export declare class CreateNotificationConfigurationCommand extends CreateNotificationConfigurationCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: CreateNotificationConfigurationRequest;
88
+ output: CreateNotificationConfigurationResponse;
89
+ };
90
+ sdk: {
91
+ input: CreateNotificationConfigurationCommandInput;
92
+ output: CreateNotificationConfigurationCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteEventRuleRequest, DeleteEventRuleResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteEventRuleCommand}.
14
+ */
15
+ export interface DeleteEventRuleCommandInput extends DeleteEventRuleRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteEventRuleCommand}.
21
+ */
22
+ export interface DeleteEventRuleCommandOutput extends DeleteEventRuleResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteEventRuleCommand_base: {
25
+ new (input: DeleteEventRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventRuleCommandInput, DeleteEventRuleCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteEventRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventRuleCommandInput, DeleteEventRuleCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes an EventRule.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NotificationsClient, DeleteEventRuleCommand } from "@aws-sdk/client-notifications"; // ES Modules import
35
+ * // const { NotificationsClient, DeleteEventRuleCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
36
+ * const client = new NotificationsClient(config);
37
+ * const input = { // DeleteEventRuleRequest
38
+ * arn: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DeleteEventRuleCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param DeleteEventRuleCommandInput - {@link DeleteEventRuleCommandInput}
47
+ * @returns {@link DeleteEventRuleCommandOutput}
48
+ * @see {@link DeleteEventRuleCommandInput} for command's `input` shape.
49
+ * @see {@link DeleteEventRuleCommandOutput} for command's `response` shape.
50
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>User does not have sufficient access to perform this action.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>Unexpected error during processing of request.</p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>Request references a resource which does not exist. </p>
63
+ *
64
+ * @throws {@link ThrottlingException} (client fault)
65
+ * <p>Request was denied due to request throttling. </p>
66
+ *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>This exception is thrown when the notification event fails validation.</p>
69
+ *
70
+ * @throws {@link NotificationsServiceException}
71
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
72
+ *
73
+ * @public
74
+ */
75
+ export declare class DeleteEventRuleCommand extends DeleteEventRuleCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: DeleteEventRuleRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: DeleteEventRuleCommandInput;
84
+ output: DeleteEventRuleCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteNotificationConfigurationRequest, DeleteNotificationConfigurationResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteNotificationConfigurationCommand}.
14
+ */
15
+ export interface DeleteNotificationConfigurationCommandInput extends DeleteNotificationConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteNotificationConfigurationCommand}.
21
+ */
22
+ export interface DeleteNotificationConfigurationCommandOutput extends DeleteNotificationConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteNotificationConfigurationCommand_base: {
25
+ new (input: DeleteNotificationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNotificationConfigurationCommandInput, DeleteNotificationConfigurationCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteNotificationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNotificationConfigurationCommandInput, DeleteNotificationConfigurationCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a NotificationConfiguration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NotificationsClient, DeleteNotificationConfigurationCommand } from "@aws-sdk/client-notifications"; // ES Modules import
35
+ * // const { NotificationsClient, DeleteNotificationConfigurationCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
36
+ * const client = new NotificationsClient(config);
37
+ * const input = { // DeleteNotificationConfigurationRequest
38
+ * arn: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DeleteNotificationConfigurationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param DeleteNotificationConfigurationCommandInput - {@link DeleteNotificationConfigurationCommandInput}
47
+ * @returns {@link DeleteNotificationConfigurationCommandOutput}
48
+ * @see {@link DeleteNotificationConfigurationCommandInput} for command's `input` shape.
49
+ * @see {@link DeleteNotificationConfigurationCommandOutput} for command's `response` shape.
50
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>User does not have sufficient access to perform this action.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>Unexpected error during processing of request.</p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>Request references a resource which does not exist. </p>
63
+ *
64
+ * @throws {@link ThrottlingException} (client fault)
65
+ * <p>Request was denied due to request throttling. </p>
66
+ *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>This exception is thrown when the notification event fails validation.</p>
69
+ *
70
+ * @throws {@link NotificationsServiceException}
71
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
72
+ *
73
+ * @public
74
+ */
75
+ export declare class DeleteNotificationConfigurationCommand extends DeleteNotificationConfigurationCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: DeleteNotificationConfigurationRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: DeleteNotificationConfigurationCommandInput;
84
+ output: DeleteNotificationConfigurationCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -0,0 +1,96 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeregisterNotificationHubRequest, DeregisterNotificationHubResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeregisterNotificationHubCommand}.
14
+ */
15
+ export interface DeregisterNotificationHubCommandInput extends DeregisterNotificationHubRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeregisterNotificationHubCommand}.
21
+ */
22
+ export interface DeregisterNotificationHubCommandOutput extends DeregisterNotificationHubResponse, __MetadataBearer {
23
+ }
24
+ declare const DeregisterNotificationHubCommand_base: {
25
+ new (input: DeregisterNotificationHubCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterNotificationHubCommandInput, DeregisterNotificationHubCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeregisterNotificationHubCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterNotificationHubCommandInput, DeregisterNotificationHubCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deregisters a NotificationHub in the specified Region.</p>
31
+ * <note>
32
+ * <p>You can't deregister the last NotificationHub in the account. NotificationEvents stored in the deregistered NotificationHub are no longer be visible. Recreating a new NotificationHub in the same Region restores access to those NotificationEvents.</p>
33
+ * </note>
34
+ * @example
35
+ * Use a bare-bones client and the command you need to make an API call.
36
+ * ```javascript
37
+ * import { NotificationsClient, DeregisterNotificationHubCommand } from "@aws-sdk/client-notifications"; // ES Modules import
38
+ * // const { NotificationsClient, DeregisterNotificationHubCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
39
+ * const client = new NotificationsClient(config);
40
+ * const input = { // DeregisterNotificationHubRequest
41
+ * notificationHubRegion: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new DeregisterNotificationHubCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // DeregisterNotificationHubResponse
46
+ * // notificationHubRegion: "STRING_VALUE", // required
47
+ * // statusSummary: { // NotificationHubStatusSummary
48
+ * // status: "STRING_VALUE", // required
49
+ * // reason: "STRING_VALUE", // required
50
+ * // },
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param DeregisterNotificationHubCommandInput - {@link DeregisterNotificationHubCommandInput}
56
+ * @returns {@link DeregisterNotificationHubCommandOutput}
57
+ * @see {@link DeregisterNotificationHubCommandInput} for command's `input` shape.
58
+ * @see {@link DeregisterNotificationHubCommandOutput} for command's `response` shape.
59
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
60
+ *
61
+ * @throws {@link AccessDeniedException} (client fault)
62
+ * <p>User does not have sufficient access to perform this action.</p>
63
+ *
64
+ * @throws {@link ConflictException} (client fault)
65
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>Unexpected error during processing of request.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>Request references a resource which does not exist. </p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>Request was denied due to request throttling. </p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>This exception is thrown when the notification event fails validation.</p>
78
+ *
79
+ * @throws {@link NotificationsServiceException}
80
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
81
+ *
82
+ * @public
83
+ */
84
+ export declare class DeregisterNotificationHubCommand extends DeregisterNotificationHubCommand_base {
85
+ /** @internal type navigation helper, not in runtime. */
86
+ protected static __types: {
87
+ api: {
88
+ input: DeregisterNotificationHubRequest;
89
+ output: DeregisterNotificationHubResponse;
90
+ };
91
+ sdk: {
92
+ input: DeregisterNotificationHubCommandInput;
93
+ output: DeregisterNotificationHubCommandOutput;
94
+ };
95
+ };
96
+ }
@@ -0,0 +1,85 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DisassociateChannelRequest, DisassociateChannelResponse } from "../models/models_0";
4
+ import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DisassociateChannelCommand}.
14
+ */
15
+ export interface DisassociateChannelCommandInput extends DisassociateChannelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DisassociateChannelCommand}.
21
+ */
22
+ export interface DisassociateChannelCommandOutput extends DisassociateChannelResponse, __MetadataBearer {
23
+ }
24
+ declare const DisassociateChannelCommand_base: {
25
+ new (input: DisassociateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateChannelCommandInput, DisassociateChannelCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DisassociateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateChannelCommandInput, DisassociateChannelCommandOutput, NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Disassociates a Channel from a specified NotificationConfiguration. Supported Channels include AWS Chatbot, the AWS Console Mobile Application, and emails (notifications-contacts).</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { NotificationsClient, DisassociateChannelCommand } from "@aws-sdk/client-notifications"; // ES Modules import
35
+ * // const { NotificationsClient, DisassociateChannelCommand } = require("@aws-sdk/client-notifications"); // CommonJS import
36
+ * const client = new NotificationsClient(config);
37
+ * const input = { // DisassociateChannelRequest
38
+ * arn: "STRING_VALUE", // required
39
+ * notificationConfigurationArn: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DisassociateChannelCommand(input);
42
+ * const response = await client.send(command);
43
+ * // {};
44
+ *
45
+ * ```
46
+ *
47
+ * @param DisassociateChannelCommandInput - {@link DisassociateChannelCommandInput}
48
+ * @returns {@link DisassociateChannelCommandOutput}
49
+ * @see {@link DisassociateChannelCommandInput} for command's `input` shape.
50
+ * @see {@link DisassociateChannelCommandOutput} for command's `response` shape.
51
+ * @see {@link NotificationsClientResolvedConfig | config} for NotificationsClient's `config` shape.
52
+ *
53
+ * @throws {@link AccessDeniedException} (client fault)
54
+ * <p>User does not have sufficient access to perform this action.</p>
55
+ *
56
+ * @throws {@link InternalServerException} (server fault)
57
+ * <p>Unexpected error during processing of request.</p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>Request references a resource which does not exist. </p>
61
+ *
62
+ * @throws {@link ThrottlingException} (client fault)
63
+ * <p>Request was denied due to request throttling. </p>
64
+ *
65
+ * @throws {@link ValidationException} (client fault)
66
+ * <p>This exception is thrown when the notification event fails validation.</p>
67
+ *
68
+ * @throws {@link NotificationsServiceException}
69
+ * <p>Base exception class for all service exceptions from Notifications service.</p>
70
+ *
71
+ * @public
72
+ */
73
+ export declare class DisassociateChannelCommand extends DisassociateChannelCommand_base {
74
+ /** @internal type navigation helper, not in runtime. */
75
+ protected static __types: {
76
+ api: {
77
+ input: DisassociateChannelRequest;
78
+ output: {};
79
+ };
80
+ sdk: {
81
+ input: DisassociateChannelCommandInput;
82
+ output: DisassociateChannelCommandOutput;
83
+ };
84
+ };
85
+ }