types-boto3-resource-explorer-2 1.35.71__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.
@@ -0,0 +1,459 @@
1
+ """
2
+ Type annotations for resource-explorer-2 service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_resource_explorer_2.client import ResourceExplorerClient
11
+
12
+ session = Session()
13
+ client: ResourceExplorerClient = session.client("resource-explorer-2")
14
+ ```
15
+
16
+ Copyright 2024 Vlad Emelianov
17
+ """
18
+
19
+ import sys
20
+ from typing import Any, Dict, Mapping, Type, overload
21
+
22
+ from botocore.client import BaseClient, ClientMeta
23
+
24
+ from .paginator import (
25
+ ListIndexesForMembersPaginator,
26
+ ListIndexesPaginator,
27
+ ListManagedViewsPaginator,
28
+ ListResourcesPaginator,
29
+ ListSupportedResourceTypesPaginator,
30
+ ListViewsPaginator,
31
+ SearchPaginator,
32
+ )
33
+ from .type_defs import (
34
+ AssociateDefaultViewInputRequestTypeDef,
35
+ AssociateDefaultViewOutputTypeDef,
36
+ BatchGetViewInputRequestTypeDef,
37
+ BatchGetViewOutputTypeDef,
38
+ CreateIndexInputRequestTypeDef,
39
+ CreateIndexOutputTypeDef,
40
+ CreateViewInputRequestTypeDef,
41
+ CreateViewOutputTypeDef,
42
+ DeleteIndexInputRequestTypeDef,
43
+ DeleteIndexOutputTypeDef,
44
+ DeleteViewInputRequestTypeDef,
45
+ DeleteViewOutputTypeDef,
46
+ EmptyResponseMetadataTypeDef,
47
+ GetAccountLevelServiceConfigurationOutputTypeDef,
48
+ GetDefaultViewOutputTypeDef,
49
+ GetIndexOutputTypeDef,
50
+ GetManagedViewInputRequestTypeDef,
51
+ GetManagedViewOutputTypeDef,
52
+ GetViewInputRequestTypeDef,
53
+ GetViewOutputTypeDef,
54
+ ListIndexesForMembersInputRequestTypeDef,
55
+ ListIndexesForMembersOutputTypeDef,
56
+ ListIndexesInputRequestTypeDef,
57
+ ListIndexesOutputTypeDef,
58
+ ListManagedViewsInputRequestTypeDef,
59
+ ListManagedViewsOutputTypeDef,
60
+ ListResourcesInputRequestTypeDef,
61
+ ListResourcesOutputTypeDef,
62
+ ListSupportedResourceTypesInputRequestTypeDef,
63
+ ListSupportedResourceTypesOutputTypeDef,
64
+ ListTagsForResourceInputRequestTypeDef,
65
+ ListTagsForResourceOutputTypeDef,
66
+ ListViewsInputRequestTypeDef,
67
+ ListViewsOutputTypeDef,
68
+ SearchInputRequestTypeDef,
69
+ SearchOutputTypeDef,
70
+ TagResourceInputRequestTypeDef,
71
+ UntagResourceInputRequestTypeDef,
72
+ UpdateIndexTypeInputRequestTypeDef,
73
+ UpdateIndexTypeOutputTypeDef,
74
+ UpdateViewInputRequestTypeDef,
75
+ UpdateViewOutputTypeDef,
76
+ )
77
+
78
+ if sys.version_info >= (3, 12):
79
+ from typing import Literal, Unpack
80
+ else:
81
+ from typing_extensions import Literal, Unpack
82
+
83
+ __all__ = ("ResourceExplorerClient",)
84
+
85
+ class BotocoreClientError(Exception):
86
+ MSG_TEMPLATE: str
87
+
88
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
89
+ self.response: Dict[str, Any]
90
+ self.operation_name: str
91
+
92
+ class Exceptions:
93
+ AccessDeniedException: Type[BotocoreClientError]
94
+ ClientError: Type[BotocoreClientError]
95
+ ConflictException: Type[BotocoreClientError]
96
+ InternalServerException: Type[BotocoreClientError]
97
+ ResourceNotFoundException: Type[BotocoreClientError]
98
+ ServiceQuotaExceededException: Type[BotocoreClientError]
99
+ ThrottlingException: Type[BotocoreClientError]
100
+ UnauthorizedException: Type[BotocoreClientError]
101
+ ValidationException: Type[BotocoreClientError]
102
+
103
+ class ResourceExplorerClient(BaseClient):
104
+ """
105
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#ResourceExplorer.Client)
106
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
107
+ """
108
+
109
+ meta: ClientMeta
110
+
111
+ @property
112
+ def exceptions(self) -> Exceptions:
113
+ """
114
+ ResourceExplorerClient exceptions.
115
+
116
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#ResourceExplorer.Client)
117
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#exceptions)
118
+ """
119
+
120
+ def can_paginate(self, operation_name: str) -> bool:
121
+ """
122
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/can_paginate.html)
123
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#can_paginate)
124
+ """
125
+
126
+ def generate_presigned_url(
127
+ self,
128
+ ClientMethod: str,
129
+ Params: Mapping[str, Any] = ...,
130
+ ExpiresIn: int = 3600,
131
+ HttpMethod: str = ...,
132
+ ) -> str:
133
+ """
134
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/generate_presigned_url.html)
135
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#generate_presigned_url)
136
+ """
137
+
138
+ def close(self) -> None:
139
+ """
140
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/close.html)
141
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#close)
142
+ """
143
+
144
+ def associate_default_view(
145
+ self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
146
+ ) -> AssociateDefaultViewOutputTypeDef:
147
+ """
148
+ Sets the specified view as the default for the Amazon Web Services Region in
149
+ which you call this operation.
150
+
151
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/associate_default_view.html)
152
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#associate_default_view)
153
+ """
154
+
155
+ def batch_get_view(
156
+ self, **kwargs: Unpack[BatchGetViewInputRequestTypeDef]
157
+ ) -> BatchGetViewOutputTypeDef:
158
+ """
159
+ Retrieves details about a list of views.
160
+
161
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/batch_get_view.html)
162
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#batch_get_view)
163
+ """
164
+
165
+ def create_index(
166
+ self, **kwargs: Unpack[CreateIndexInputRequestTypeDef]
167
+ ) -> CreateIndexOutputTypeDef:
168
+ """
169
+ Turns on Amazon Web Services Resource Explorer in the Amazon Web Services
170
+ Region in which you called this operation by creating an index.
171
+
172
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/create_index.html)
173
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_index)
174
+ """
175
+
176
+ def create_view(
177
+ self, **kwargs: Unpack[CreateViewInputRequestTypeDef]
178
+ ) -> CreateViewOutputTypeDef:
179
+ """
180
+ Creates a view that users can query by using the <a>Search</a> operation.
181
+
182
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/create_view.html)
183
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_view)
184
+ """
185
+
186
+ def delete_index(
187
+ self, **kwargs: Unpack[DeleteIndexInputRequestTypeDef]
188
+ ) -> DeleteIndexOutputTypeDef:
189
+ """
190
+ Deletes the specified index and turns off Amazon Web Services Resource Explorer
191
+ in the specified Amazon Web Services Region.
192
+
193
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/delete_index.html)
194
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_index)
195
+ """
196
+
197
+ def delete_view(
198
+ self, **kwargs: Unpack[DeleteViewInputRequestTypeDef]
199
+ ) -> DeleteViewOutputTypeDef:
200
+ """
201
+ Deletes the specified view.
202
+
203
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/delete_view.html)
204
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_view)
205
+ """
206
+
207
+ def disassociate_default_view(self) -> EmptyResponseMetadataTypeDef:
208
+ """
209
+ After you call this operation, the affected Amazon Web Services Region no
210
+ longer has a default view.
211
+
212
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/disassociate_default_view.html)
213
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#disassociate_default_view)
214
+ """
215
+
216
+ def get_account_level_service_configuration(
217
+ self,
218
+ ) -> GetAccountLevelServiceConfigurationOutputTypeDef:
219
+ """
220
+ Retrieves the status of your account's Amazon Web Services service access, and
221
+ validates the service linked role required to access the multi-account search
222
+ feature.
223
+
224
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_account_level_service_configuration.html)
225
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_account_level_service_configuration)
226
+ """
227
+
228
+ def get_default_view(self) -> GetDefaultViewOutputTypeDef:
229
+ """
230
+ Retrieves the Amazon Resource Name (ARN) of the view that is the default for
231
+ the Amazon Web Services Region in which you call this operation.
232
+
233
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_default_view.html)
234
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_default_view)
235
+ """
236
+
237
+ def get_index(self) -> GetIndexOutputTypeDef:
238
+ """
239
+ Retrieves details about the Amazon Web Services Resource Explorer index in the
240
+ Amazon Web Services Region in which you invoked the operation.
241
+
242
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_index.html)
243
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_index)
244
+ """
245
+
246
+ def get_managed_view(
247
+ self, **kwargs: Unpack[GetManagedViewInputRequestTypeDef]
248
+ ) -> GetManagedViewOutputTypeDef:
249
+ """
250
+ Retrieves details of the specified <a
251
+ href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Amazon
252
+ Web Services-managed view</a>.
253
+
254
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_managed_view.html)
255
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_managed_view)
256
+ """
257
+
258
+ def get_view(self, **kwargs: Unpack[GetViewInputRequestTypeDef]) -> GetViewOutputTypeDef:
259
+ """
260
+ Retrieves details of the specified view.
261
+
262
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_view.html)
263
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_view)
264
+ """
265
+
266
+ def list_indexes(
267
+ self, **kwargs: Unpack[ListIndexesInputRequestTypeDef]
268
+ ) -> ListIndexesOutputTypeDef:
269
+ """
270
+ Retrieves a list of all of the indexes in Amazon Web Services Regions that are
271
+ currently collecting resource information for Amazon Web Services Resource
272
+ Explorer.
273
+
274
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_indexes.html)
275
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_indexes)
276
+ """
277
+
278
+ def list_indexes_for_members(
279
+ self, **kwargs: Unpack[ListIndexesForMembersInputRequestTypeDef]
280
+ ) -> ListIndexesForMembersOutputTypeDef:
281
+ """
282
+ Retrieves a list of a member's indexes in all Amazon Web Services Regions that
283
+ are currently collecting resource information for Amazon Web Services Resource
284
+ Explorer.
285
+
286
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_indexes_for_members.html)
287
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_indexes_for_members)
288
+ """
289
+
290
+ def list_managed_views(
291
+ self, **kwargs: Unpack[ListManagedViewsInputRequestTypeDef]
292
+ ) -> ListManagedViewsOutputTypeDef:
293
+ """
294
+ Lists the Amazon resource names (ARNs) of the <a
295
+ href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Amazon
296
+ Web Services-managed views</a> available in the Amazon Web Services Region in
297
+ which you call this operation.
298
+
299
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_managed_views.html)
300
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_managed_views)
301
+ """
302
+
303
+ def list_resources(
304
+ self, **kwargs: Unpack[ListResourcesInputRequestTypeDef]
305
+ ) -> ListResourcesOutputTypeDef:
306
+ """
307
+ Returns a list of resources and their details that match the specified criteria.
308
+
309
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_resources.html)
310
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_resources)
311
+ """
312
+
313
+ def list_supported_resource_types(
314
+ self, **kwargs: Unpack[ListSupportedResourceTypesInputRequestTypeDef]
315
+ ) -> ListSupportedResourceTypesOutputTypeDef:
316
+ """
317
+ Retrieves a list of all resource types currently supported by Amazon Web
318
+ Services Resource Explorer.
319
+
320
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_supported_resource_types.html)
321
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_supported_resource_types)
322
+ """
323
+
324
+ def list_tags_for_resource(
325
+ self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
326
+ ) -> ListTagsForResourceOutputTypeDef:
327
+ """
328
+ Lists the tags that are attached to the specified resource.
329
+
330
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_tags_for_resource.html)
331
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_tags_for_resource)
332
+ """
333
+
334
+ def list_views(self, **kwargs: Unpack[ListViewsInputRequestTypeDef]) -> ListViewsOutputTypeDef:
335
+ """
336
+ Lists the <a
337
+ href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
338
+ resource names (ARNs)</a> of the views available in the Amazon Web Services
339
+ Region in which you call this operation.
340
+
341
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_views.html)
342
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_views)
343
+ """
344
+
345
+ def search(self, **kwargs: Unpack[SearchInputRequestTypeDef]) -> SearchOutputTypeDef:
346
+ """
347
+ Searches for resources and displays details about all resources that match the
348
+ specified criteria.
349
+
350
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/search.html)
351
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#search)
352
+ """
353
+
354
+ def tag_resource(self, **kwargs: Unpack[TagResourceInputRequestTypeDef]) -> Dict[str, Any]:
355
+ """
356
+ Adds one or more tag key and value pairs to an Amazon Web Services Resource
357
+ Explorer view or index.
358
+
359
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/tag_resource.html)
360
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#tag_resource)
361
+ """
362
+
363
+ def untag_resource(self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]) -> Dict[str, Any]:
364
+ """
365
+ Removes one or more tag key and value pairs from an Amazon Web Services
366
+ Resource Explorer view or index.
367
+
368
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/untag_resource.html)
369
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#untag_resource)
370
+ """
371
+
372
+ def update_index_type(
373
+ self, **kwargs: Unpack[UpdateIndexTypeInputRequestTypeDef]
374
+ ) -> UpdateIndexTypeOutputTypeDef:
375
+ """
376
+ Changes the type of the index from one of the following types to the other.
377
+
378
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/update_index_type.html)
379
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_index_type)
380
+ """
381
+
382
+ def update_view(
383
+ self, **kwargs: Unpack[UpdateViewInputRequestTypeDef]
384
+ ) -> UpdateViewOutputTypeDef:
385
+ """
386
+ Modifies some of the details of a view.
387
+
388
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/update_view.html)
389
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_view)
390
+ """
391
+
392
+ @overload
393
+ def get_paginator(
394
+ self, operation_name: Literal["list_indexes_for_members"]
395
+ ) -> ListIndexesForMembersPaginator:
396
+ """
397
+ Create a paginator for an operation.
398
+
399
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
400
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
401
+ """
402
+
403
+ @overload
404
+ def get_paginator(self, operation_name: Literal["list_indexes"]) -> ListIndexesPaginator:
405
+ """
406
+ Create a paginator for an operation.
407
+
408
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
409
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
410
+ """
411
+
412
+ @overload
413
+ def get_paginator(
414
+ self, operation_name: Literal["list_managed_views"]
415
+ ) -> ListManagedViewsPaginator:
416
+ """
417
+ Create a paginator for an operation.
418
+
419
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
420
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
421
+ """
422
+
423
+ @overload
424
+ def get_paginator(self, operation_name: Literal["list_resources"]) -> ListResourcesPaginator:
425
+ """
426
+ Create a paginator for an operation.
427
+
428
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
429
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
430
+ """
431
+
432
+ @overload
433
+ def get_paginator(
434
+ self, operation_name: Literal["list_supported_resource_types"]
435
+ ) -> ListSupportedResourceTypesPaginator:
436
+ """
437
+ Create a paginator for an operation.
438
+
439
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
440
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
441
+ """
442
+
443
+ @overload
444
+ def get_paginator(self, operation_name: Literal["list_views"]) -> ListViewsPaginator:
445
+ """
446
+ Create a paginator for an operation.
447
+
448
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
449
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
450
+ """
451
+
452
+ @overload
453
+ def get_paginator(self, operation_name: Literal["search"]) -> SearchPaginator:
454
+ """
455
+ Create a paginator for an operation.
456
+
457
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
458
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
459
+ """