types-aiobotocore-notifications 2.16.0__py3-none-any.whl

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.

Potentially problematic release.


This version of types-aiobotocore-notifications might be problematic. Click here for more details.

@@ -0,0 +1,54 @@
1
+ """
2
+ Main interface for notifications service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_notifications import (
9
+ Client,
10
+ ListChannelsPaginator,
11
+ ListEventRulesPaginator,
12
+ ListNotificationConfigurationsPaginator,
13
+ ListNotificationEventsPaginator,
14
+ ListNotificationHubsPaginator,
15
+ UserNotificationsClient,
16
+ )
17
+
18
+ session = get_session()
19
+ async with session.create_client("notifications") as client:
20
+ client: UserNotificationsClient
21
+ ...
22
+
23
+
24
+ list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
25
+ list_event_rules_paginator: ListEventRulesPaginator = client.get_paginator("list_event_rules")
26
+ list_notification_configurations_paginator: ListNotificationConfigurationsPaginator = client.get_paginator("list_notification_configurations")
27
+ list_notification_events_paginator: ListNotificationEventsPaginator = client.get_paginator("list_notification_events")
28
+ list_notification_hubs_paginator: ListNotificationHubsPaginator = client.get_paginator("list_notification_hubs")
29
+ ```
30
+
31
+ Copyright 2024 Vlad Emelianov
32
+ """
33
+
34
+ from .client import UserNotificationsClient
35
+ from .paginator import (
36
+ ListChannelsPaginator,
37
+ ListEventRulesPaginator,
38
+ ListNotificationConfigurationsPaginator,
39
+ ListNotificationEventsPaginator,
40
+ ListNotificationHubsPaginator,
41
+ )
42
+
43
+ Client = UserNotificationsClient
44
+
45
+
46
+ __all__ = (
47
+ "Client",
48
+ "ListChannelsPaginator",
49
+ "ListEventRulesPaginator",
50
+ "ListNotificationConfigurationsPaginator",
51
+ "ListNotificationEventsPaginator",
52
+ "ListNotificationHubsPaginator",
53
+ "UserNotificationsClient",
54
+ )
@@ -0,0 +1,53 @@
1
+ """
2
+ Main interface for notifications service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_notifications import (
9
+ Client,
10
+ ListChannelsPaginator,
11
+ ListEventRulesPaginator,
12
+ ListNotificationConfigurationsPaginator,
13
+ ListNotificationEventsPaginator,
14
+ ListNotificationHubsPaginator,
15
+ UserNotificationsClient,
16
+ )
17
+
18
+ session = get_session()
19
+ async with session.create_client("notifications") as client:
20
+ client: UserNotificationsClient
21
+ ...
22
+
23
+
24
+ list_channels_paginator: ListChannelsPaginator = client.get_paginator("list_channels")
25
+ list_event_rules_paginator: ListEventRulesPaginator = client.get_paginator("list_event_rules")
26
+ list_notification_configurations_paginator: ListNotificationConfigurationsPaginator = client.get_paginator("list_notification_configurations")
27
+ list_notification_events_paginator: ListNotificationEventsPaginator = client.get_paginator("list_notification_events")
28
+ list_notification_hubs_paginator: ListNotificationHubsPaginator = client.get_paginator("list_notification_hubs")
29
+ ```
30
+
31
+ Copyright 2024 Vlad Emelianov
32
+ """
33
+
34
+ from .client import UserNotificationsClient
35
+ from .paginator import (
36
+ ListChannelsPaginator,
37
+ ListEventRulesPaginator,
38
+ ListNotificationConfigurationsPaginator,
39
+ ListNotificationEventsPaginator,
40
+ ListNotificationHubsPaginator,
41
+ )
42
+
43
+ Client = UserNotificationsClient
44
+
45
+ __all__ = (
46
+ "Client",
47
+ "ListChannelsPaginator",
48
+ "ListEventRulesPaginator",
49
+ "ListNotificationConfigurationsPaginator",
50
+ "ListNotificationEventsPaginator",
51
+ "ListNotificationHubsPaginator",
52
+ "UserNotificationsClient",
53
+ )
@@ -0,0 +1,42 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ print(
15
+ "Type annotations for aiobotocore UserNotifications 2.16.0\n"
16
+ "Version: 2.16.0\n"
17
+ "Builder version: 8.6.4\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications.html#usernotifications\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ print("2.16.0")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ return print_version()
38
+ print_info()
39
+
40
+
41
+ if __name__ == "__main__":
42
+ main()
@@ -0,0 +1,419 @@
1
+ """
2
+ Type annotations for notifications service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from aiobotocore.session import get_session
10
+ from types_aiobotocore_notifications.client import UserNotificationsClient
11
+
12
+ session = get_session()
13
+ async with session.create_client("notifications") as client:
14
+ client: UserNotificationsClient
15
+ ```
16
+
17
+ Copyright 2024 Vlad Emelianov
18
+ """
19
+
20
+ import sys
21
+ from typing import Any, Dict, Mapping, Type, overload
22
+
23
+ from aiobotocore.client import AioBaseClient
24
+ from botocore.client import ClientMeta
25
+
26
+ from .paginator import (
27
+ ListChannelsPaginator,
28
+ ListEventRulesPaginator,
29
+ ListNotificationConfigurationsPaginator,
30
+ ListNotificationEventsPaginator,
31
+ ListNotificationHubsPaginator,
32
+ )
33
+ from .type_defs import (
34
+ AssociateChannelRequestRequestTypeDef,
35
+ CreateEventRuleRequestRequestTypeDef,
36
+ CreateEventRuleResponseTypeDef,
37
+ CreateNotificationConfigurationRequestRequestTypeDef,
38
+ CreateNotificationConfigurationResponseTypeDef,
39
+ DeleteEventRuleRequestRequestTypeDef,
40
+ DeleteNotificationConfigurationRequestRequestTypeDef,
41
+ DeregisterNotificationHubRequestRequestTypeDef,
42
+ DeregisterNotificationHubResponseTypeDef,
43
+ DisassociateChannelRequestRequestTypeDef,
44
+ GetEventRuleRequestRequestTypeDef,
45
+ GetEventRuleResponseTypeDef,
46
+ GetNotificationConfigurationRequestRequestTypeDef,
47
+ GetNotificationConfigurationResponseTypeDef,
48
+ GetNotificationEventRequestRequestTypeDef,
49
+ GetNotificationEventResponseTypeDef,
50
+ ListChannelsRequestRequestTypeDef,
51
+ ListChannelsResponseTypeDef,
52
+ ListEventRulesRequestRequestTypeDef,
53
+ ListEventRulesResponseTypeDef,
54
+ ListNotificationConfigurationsRequestRequestTypeDef,
55
+ ListNotificationConfigurationsResponseTypeDef,
56
+ ListNotificationEventsRequestRequestTypeDef,
57
+ ListNotificationEventsResponseTypeDef,
58
+ ListNotificationHubsRequestRequestTypeDef,
59
+ ListNotificationHubsResponseTypeDef,
60
+ ListTagsForResourceRequestRequestTypeDef,
61
+ ListTagsForResourceResponseTypeDef,
62
+ RegisterNotificationHubRequestRequestTypeDef,
63
+ RegisterNotificationHubResponseTypeDef,
64
+ TagResourceRequestRequestTypeDef,
65
+ UntagResourceRequestRequestTypeDef,
66
+ UpdateEventRuleRequestRequestTypeDef,
67
+ UpdateEventRuleResponseTypeDef,
68
+ UpdateNotificationConfigurationRequestRequestTypeDef,
69
+ UpdateNotificationConfigurationResponseTypeDef,
70
+ )
71
+
72
+ if sys.version_info >= (3, 12):
73
+ from typing import Literal, Unpack
74
+ else:
75
+ from typing_extensions import Literal, Unpack
76
+
77
+
78
+ __all__ = ("UserNotificationsClient",)
79
+
80
+
81
+ class BotocoreClientError(Exception):
82
+ MSG_TEMPLATE: str
83
+
84
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
85
+ self.response: Dict[str, Any]
86
+ self.operation_name: str
87
+
88
+
89
+ class Exceptions:
90
+ AccessDeniedException: Type[BotocoreClientError]
91
+ ClientError: Type[BotocoreClientError]
92
+ ConflictException: Type[BotocoreClientError]
93
+ InternalServerException: Type[BotocoreClientError]
94
+ ResourceNotFoundException: Type[BotocoreClientError]
95
+ ServiceQuotaExceededException: Type[BotocoreClientError]
96
+ ThrottlingException: Type[BotocoreClientError]
97
+ ValidationException: Type[BotocoreClientError]
98
+
99
+
100
+ class UserNotificationsClient(AioBaseClient):
101
+ """
102
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications.html#UserNotifications.Client)
103
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/)
104
+ """
105
+
106
+ meta: ClientMeta
107
+
108
+ @property
109
+ def exceptions(self) -> Exceptions:
110
+ """
111
+ UserNotificationsClient exceptions.
112
+
113
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications.html#UserNotifications.Client)
114
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#exceptions)
115
+ """
116
+
117
+ def can_paginate(self, operation_name: str) -> bool:
118
+ """
119
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/can_paginate.html)
120
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#can_paginate)
121
+ """
122
+
123
+ async def generate_presigned_url(
124
+ self,
125
+ ClientMethod: str,
126
+ Params: Mapping[str, Any] = ...,
127
+ ExpiresIn: int = 3600,
128
+ HttpMethod: str = ...,
129
+ ) -> str:
130
+ """
131
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/generate_presigned_url.html)
132
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#generate_presigned_url)
133
+ """
134
+
135
+ async def close(self) -> None:
136
+ """
137
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/close.html)
138
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#close)
139
+ """
140
+
141
+ async def associate_channel(
142
+ self, **kwargs: Unpack[AssociateChannelRequestRequestTypeDef]
143
+ ) -> Dict[str, Any]:
144
+ """
145
+ Associates a delivery <a
146
+ href="https://docs.aws.amazon.com/notifications/latest/userguide/managing-delivery-channels.html">Channel</a>
147
+ with a particular NotificationConfiguration.
148
+
149
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/associate_channel.html)
150
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#associate_channel)
151
+ """
152
+
153
+ async def create_event_rule(
154
+ self, **kwargs: Unpack[CreateEventRuleRequestRequestTypeDef]
155
+ ) -> CreateEventRuleResponseTypeDef:
156
+ """
157
+ Creates an <a
158
+ href="https://docs.aws.amazon.com/notifications/latest/userguide/glossary.html">EventRule</a>
159
+ that is associated with a specified Notification Configuration.
160
+
161
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/create_event_rule.html)
162
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#create_event_rule)
163
+ """
164
+
165
+ async def create_notification_configuration(
166
+ self, **kwargs: Unpack[CreateNotificationConfigurationRequestRequestTypeDef]
167
+ ) -> CreateNotificationConfigurationResponseTypeDef:
168
+ """
169
+ Creates a new NotificationConfiguration.
170
+
171
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/create_notification_configuration.html)
172
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#create_notification_configuration)
173
+ """
174
+
175
+ async def delete_event_rule(
176
+ self, **kwargs: Unpack[DeleteEventRuleRequestRequestTypeDef]
177
+ ) -> Dict[str, Any]:
178
+ """
179
+ Deletes an EventRule.
180
+
181
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/delete_event_rule.html)
182
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#delete_event_rule)
183
+ """
184
+
185
+ async def delete_notification_configuration(
186
+ self, **kwargs: Unpack[DeleteNotificationConfigurationRequestRequestTypeDef]
187
+ ) -> Dict[str, Any]:
188
+ """
189
+ Deletes a NotificationConfiguration.
190
+
191
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/delete_notification_configuration.html)
192
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#delete_notification_configuration)
193
+ """
194
+
195
+ async def deregister_notification_hub(
196
+ self, **kwargs: Unpack[DeregisterNotificationHubRequestRequestTypeDef]
197
+ ) -> DeregisterNotificationHubResponseTypeDef:
198
+ """
199
+ Deregisters a NotificationHub in the specified Region.
200
+
201
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/deregister_notification_hub.html)
202
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#deregister_notification_hub)
203
+ """
204
+
205
+ async def disassociate_channel(
206
+ self, **kwargs: Unpack[DisassociateChannelRequestRequestTypeDef]
207
+ ) -> Dict[str, Any]:
208
+ """
209
+ Disassociates a Channel from a specified NotificationConfiguration.
210
+
211
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/disassociate_channel.html)
212
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#disassociate_channel)
213
+ """
214
+
215
+ async def get_event_rule(
216
+ self, **kwargs: Unpack[GetEventRuleRequestRequestTypeDef]
217
+ ) -> GetEventRuleResponseTypeDef:
218
+ """
219
+ Returns a specified EventRule.
220
+
221
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_event_rule.html)
222
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_event_rule)
223
+ """
224
+
225
+ async def get_notification_configuration(
226
+ self, **kwargs: Unpack[GetNotificationConfigurationRequestRequestTypeDef]
227
+ ) -> GetNotificationConfigurationResponseTypeDef:
228
+ """
229
+ Returns a specified NotificationConfiguration.
230
+
231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_notification_configuration.html)
232
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_notification_configuration)
233
+ """
234
+
235
+ async def get_notification_event(
236
+ self, **kwargs: Unpack[GetNotificationEventRequestRequestTypeDef]
237
+ ) -> GetNotificationEventResponseTypeDef:
238
+ """
239
+ Returns a specified NotificationEvent.
240
+
241
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_notification_event.html)
242
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_notification_event)
243
+ """
244
+
245
+ async def list_channels(
246
+ self, **kwargs: Unpack[ListChannelsRequestRequestTypeDef]
247
+ ) -> ListChannelsResponseTypeDef:
248
+ """
249
+ Returns a list of Channels for a NotificationConfiguration.
250
+
251
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_channels.html)
252
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_channels)
253
+ """
254
+
255
+ async def list_event_rules(
256
+ self, **kwargs: Unpack[ListEventRulesRequestRequestTypeDef]
257
+ ) -> ListEventRulesResponseTypeDef:
258
+ """
259
+ Returns a list of EventRules according to specified filters, in reverse
260
+ chronological order (newest first).
261
+
262
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_event_rules.html)
263
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_event_rules)
264
+ """
265
+
266
+ async def list_notification_configurations(
267
+ self, **kwargs: Unpack[ListNotificationConfigurationsRequestRequestTypeDef]
268
+ ) -> ListNotificationConfigurationsResponseTypeDef:
269
+ """
270
+ Returns a list of abbreviated NotificationConfigurations according to specified
271
+ filters, in reverse chronological order (newest first).
272
+
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_notification_configurations.html)
274
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_notification_configurations)
275
+ """
276
+
277
+ async def list_notification_events(
278
+ self, **kwargs: Unpack[ListNotificationEventsRequestRequestTypeDef]
279
+ ) -> ListNotificationEventsResponseTypeDef:
280
+ """
281
+ Returns a list of NotificationEvents according to specified filters, in reverse
282
+ chronological order (newest first).
283
+
284
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_notification_events.html)
285
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_notification_events)
286
+ """
287
+
288
+ async def list_notification_hubs(
289
+ self, **kwargs: Unpack[ListNotificationHubsRequestRequestTypeDef]
290
+ ) -> ListNotificationHubsResponseTypeDef:
291
+ """
292
+ Returns a list of NotificationHubs.
293
+
294
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_notification_hubs.html)
295
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_notification_hubs)
296
+ """
297
+
298
+ async def list_tags_for_resource(
299
+ self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
300
+ ) -> ListTagsForResourceResponseTypeDef:
301
+ """
302
+ Returns a list of tags for a specified Amazon Resource Name (ARN).
303
+
304
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/list_tags_for_resource.html)
305
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#list_tags_for_resource)
306
+ """
307
+
308
+ async def register_notification_hub(
309
+ self, **kwargs: Unpack[RegisterNotificationHubRequestRequestTypeDef]
310
+ ) -> RegisterNotificationHubResponseTypeDef:
311
+ """
312
+ Registers a NotificationHub in the specified Region.
313
+
314
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/register_notification_hub.html)
315
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#register_notification_hub)
316
+ """
317
+
318
+ async def tag_resource(
319
+ self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]
320
+ ) -> Dict[str, Any]:
321
+ """
322
+ Tags the resource with a tag key and value.
323
+
324
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/tag_resource.html)
325
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#tag_resource)
326
+ """
327
+
328
+ async def untag_resource(
329
+ self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
330
+ ) -> Dict[str, Any]:
331
+ """
332
+ Untags a resource with a specified Amazon Resource Name (ARN).
333
+
334
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/untag_resource.html)
335
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#untag_resource)
336
+ """
337
+
338
+ async def update_event_rule(
339
+ self, **kwargs: Unpack[UpdateEventRuleRequestRequestTypeDef]
340
+ ) -> UpdateEventRuleResponseTypeDef:
341
+ """
342
+ Updates an existing EventRule.
343
+
344
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/update_event_rule.html)
345
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#update_event_rule)
346
+ """
347
+
348
+ async def update_notification_configuration(
349
+ self, **kwargs: Unpack[UpdateNotificationConfigurationRequestRequestTypeDef]
350
+ ) -> UpdateNotificationConfigurationResponseTypeDef:
351
+ """
352
+ Updates a NotificationConfiguration.
353
+
354
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/update_notification_configuration.html)
355
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#update_notification_configuration)
356
+ """
357
+
358
+ @overload
359
+ def get_paginator(self, operation_name: Literal["list_channels"]) -> ListChannelsPaginator:
360
+ """
361
+ Create a paginator for an operation.
362
+
363
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_paginator.html)
364
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_paginator)
365
+ """
366
+
367
+ @overload
368
+ def get_paginator(self, operation_name: Literal["list_event_rules"]) -> ListEventRulesPaginator:
369
+ """
370
+ Create a paginator for an operation.
371
+
372
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_paginator.html)
373
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_paginator)
374
+ """
375
+
376
+ @overload
377
+ def get_paginator(
378
+ self, operation_name: Literal["list_notification_configurations"]
379
+ ) -> ListNotificationConfigurationsPaginator:
380
+ """
381
+ Create a paginator for an operation.
382
+
383
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_paginator.html)
384
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_paginator)
385
+ """
386
+
387
+ @overload
388
+ def get_paginator(
389
+ self, operation_name: Literal["list_notification_events"]
390
+ ) -> ListNotificationEventsPaginator:
391
+ """
392
+ Create a paginator for an operation.
393
+
394
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_paginator.html)
395
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_paginator)
396
+ """
397
+
398
+ @overload
399
+ def get_paginator(
400
+ self, operation_name: Literal["list_notification_hubs"]
401
+ ) -> ListNotificationHubsPaginator:
402
+ """
403
+ Create a paginator for an operation.
404
+
405
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications/client/get_paginator.html)
406
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/#get_paginator)
407
+ """
408
+
409
+ async def __aenter__(self) -> "UserNotificationsClient":
410
+ """
411
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications.html#UserNotifications.Client)
412
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/)
413
+ """
414
+
415
+ async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any:
416
+ """
417
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/notifications.html#UserNotifications.Client)
418
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_notifications/client/)
419
+ """