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.
- types_boto3_resource_explorer_2/__init__.py +59 -0
- types_boto3_resource_explorer_2/__init__.pyi +58 -0
- types_boto3_resource_explorer_2/__main__.py +42 -0
- types_boto3_resource_explorer_2/client.py +463 -0
- types_boto3_resource_explorer_2/client.pyi +459 -0
- types_boto3_resource_explorer_2/literals.py +505 -0
- types_boto3_resource_explorer_2/literals.pyi +503 -0
- types_boto3_resource_explorer_2/paginator.py +189 -0
- types_boto3_resource_explorer_2/paginator.pyi +172 -0
- types_boto3_resource_explorer_2/py.typed +0 -0
- types_boto3_resource_explorer_2/type_defs.py +489 -0
- types_boto3_resource_explorer_2/type_defs.pyi +426 -0
- types_boto3_resource_explorer_2/version.py +7 -0
- types_boto3_resource_explorer_2-1.35.71.dist-info/LICENSE +21 -0
- types_boto3_resource_explorer_2-1.35.71.dist-info/METADATA +449 -0
- types_boto3_resource_explorer_2-1.35.71.dist-info/RECORD +18 -0
- types_boto3_resource_explorer_2-1.35.71.dist-info/WHEEL +5 -0
- types_boto3_resource_explorer_2-1.35.71.dist-info/top_level.txt +1 -0
@@ -0,0 +1,503 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for resource-explorer-2 service literal definitions.
|
3
|
+
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/literals/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from types_boto3_resource_explorer_2.literals import AWSServiceAccessStatusType
|
10
|
+
|
11
|
+
data: AWSServiceAccessStatusType = "DISABLED"
|
12
|
+
```
|
13
|
+
|
14
|
+
Copyright 2024 Vlad Emelianov
|
15
|
+
"""
|
16
|
+
|
17
|
+
import sys
|
18
|
+
|
19
|
+
if sys.version_info >= (3, 12):
|
20
|
+
from typing import Literal
|
21
|
+
else:
|
22
|
+
from typing_extensions import Literal
|
23
|
+
|
24
|
+
__all__ = (
|
25
|
+
"AWSServiceAccessStatusType",
|
26
|
+
"IndexStateType",
|
27
|
+
"IndexTypeType",
|
28
|
+
"ListIndexesForMembersPaginatorName",
|
29
|
+
"ListIndexesPaginatorName",
|
30
|
+
"ListManagedViewsPaginatorName",
|
31
|
+
"ListResourcesPaginatorName",
|
32
|
+
"ListSupportedResourceTypesPaginatorName",
|
33
|
+
"ListViewsPaginatorName",
|
34
|
+
"PaginatorName",
|
35
|
+
"RegionName",
|
36
|
+
"ResourceExplorerServiceName",
|
37
|
+
"ResourceServiceName",
|
38
|
+
"SearchPaginatorName",
|
39
|
+
"ServiceName",
|
40
|
+
)
|
41
|
+
|
42
|
+
AWSServiceAccessStatusType = Literal["DISABLED", "ENABLED"]
|
43
|
+
IndexStateType = Literal["ACTIVE", "CREATING", "DELETED", "DELETING", "UPDATING"]
|
44
|
+
IndexTypeType = Literal["AGGREGATOR", "LOCAL"]
|
45
|
+
ListIndexesForMembersPaginatorName = Literal["list_indexes_for_members"]
|
46
|
+
ListIndexesPaginatorName = Literal["list_indexes"]
|
47
|
+
ListManagedViewsPaginatorName = Literal["list_managed_views"]
|
48
|
+
ListResourcesPaginatorName = Literal["list_resources"]
|
49
|
+
ListSupportedResourceTypesPaginatorName = Literal["list_supported_resource_types"]
|
50
|
+
ListViewsPaginatorName = Literal["list_views"]
|
51
|
+
SearchPaginatorName = Literal["search"]
|
52
|
+
ResourceExplorerServiceName = Literal["resource-explorer-2"]
|
53
|
+
ServiceName = Literal[
|
54
|
+
"accessanalyzer",
|
55
|
+
"account",
|
56
|
+
"acm",
|
57
|
+
"acm-pca",
|
58
|
+
"amp",
|
59
|
+
"amplify",
|
60
|
+
"amplifybackend",
|
61
|
+
"amplifyuibuilder",
|
62
|
+
"apigateway",
|
63
|
+
"apigatewaymanagementapi",
|
64
|
+
"apigatewayv2",
|
65
|
+
"appconfig",
|
66
|
+
"appconfigdata",
|
67
|
+
"appfabric",
|
68
|
+
"appflow",
|
69
|
+
"appintegrations",
|
70
|
+
"application-autoscaling",
|
71
|
+
"application-insights",
|
72
|
+
"application-signals",
|
73
|
+
"applicationcostprofiler",
|
74
|
+
"appmesh",
|
75
|
+
"apprunner",
|
76
|
+
"appstream",
|
77
|
+
"appsync",
|
78
|
+
"apptest",
|
79
|
+
"arc-zonal-shift",
|
80
|
+
"artifact",
|
81
|
+
"athena",
|
82
|
+
"auditmanager",
|
83
|
+
"autoscaling",
|
84
|
+
"autoscaling-plans",
|
85
|
+
"b2bi",
|
86
|
+
"backup",
|
87
|
+
"backup-gateway",
|
88
|
+
"batch",
|
89
|
+
"bcm-data-exports",
|
90
|
+
"bcm-pricing-calculator",
|
91
|
+
"bedrock",
|
92
|
+
"bedrock-agent",
|
93
|
+
"bedrock-agent-runtime",
|
94
|
+
"bedrock-runtime",
|
95
|
+
"billing",
|
96
|
+
"billingconductor",
|
97
|
+
"braket",
|
98
|
+
"budgets",
|
99
|
+
"ce",
|
100
|
+
"chatbot",
|
101
|
+
"chime",
|
102
|
+
"chime-sdk-identity",
|
103
|
+
"chime-sdk-media-pipelines",
|
104
|
+
"chime-sdk-meetings",
|
105
|
+
"chime-sdk-messaging",
|
106
|
+
"chime-sdk-voice",
|
107
|
+
"cleanrooms",
|
108
|
+
"cleanroomsml",
|
109
|
+
"cloud9",
|
110
|
+
"cloudcontrol",
|
111
|
+
"clouddirectory",
|
112
|
+
"cloudformation",
|
113
|
+
"cloudfront",
|
114
|
+
"cloudfront-keyvaluestore",
|
115
|
+
"cloudhsm",
|
116
|
+
"cloudhsmv2",
|
117
|
+
"cloudsearch",
|
118
|
+
"cloudsearchdomain",
|
119
|
+
"cloudtrail",
|
120
|
+
"cloudtrail-data",
|
121
|
+
"cloudwatch",
|
122
|
+
"codeartifact",
|
123
|
+
"codebuild",
|
124
|
+
"codecatalyst",
|
125
|
+
"codecommit",
|
126
|
+
"codeconnections",
|
127
|
+
"codedeploy",
|
128
|
+
"codeguru-reviewer",
|
129
|
+
"codeguru-security",
|
130
|
+
"codeguruprofiler",
|
131
|
+
"codepipeline",
|
132
|
+
"codestar-connections",
|
133
|
+
"codestar-notifications",
|
134
|
+
"cognito-identity",
|
135
|
+
"cognito-idp",
|
136
|
+
"cognito-sync",
|
137
|
+
"comprehend",
|
138
|
+
"comprehendmedical",
|
139
|
+
"compute-optimizer",
|
140
|
+
"config",
|
141
|
+
"connect",
|
142
|
+
"connect-contact-lens",
|
143
|
+
"connectcampaigns",
|
144
|
+
"connectcampaignsv2",
|
145
|
+
"connectcases",
|
146
|
+
"connectparticipant",
|
147
|
+
"controlcatalog",
|
148
|
+
"controltower",
|
149
|
+
"cost-optimization-hub",
|
150
|
+
"cur",
|
151
|
+
"customer-profiles",
|
152
|
+
"databrew",
|
153
|
+
"dataexchange",
|
154
|
+
"datapipeline",
|
155
|
+
"datasync",
|
156
|
+
"datazone",
|
157
|
+
"dax",
|
158
|
+
"deadline",
|
159
|
+
"detective",
|
160
|
+
"devicefarm",
|
161
|
+
"devops-guru",
|
162
|
+
"directconnect",
|
163
|
+
"discovery",
|
164
|
+
"dlm",
|
165
|
+
"dms",
|
166
|
+
"docdb",
|
167
|
+
"docdb-elastic",
|
168
|
+
"drs",
|
169
|
+
"ds",
|
170
|
+
"ds-data",
|
171
|
+
"dynamodb",
|
172
|
+
"dynamodbstreams",
|
173
|
+
"ebs",
|
174
|
+
"ec2",
|
175
|
+
"ec2-instance-connect",
|
176
|
+
"ecr",
|
177
|
+
"ecr-public",
|
178
|
+
"ecs",
|
179
|
+
"efs",
|
180
|
+
"eks",
|
181
|
+
"eks-auth",
|
182
|
+
"elastic-inference",
|
183
|
+
"elasticache",
|
184
|
+
"elasticbeanstalk",
|
185
|
+
"elastictranscoder",
|
186
|
+
"elb",
|
187
|
+
"elbv2",
|
188
|
+
"emr",
|
189
|
+
"emr-containers",
|
190
|
+
"emr-serverless",
|
191
|
+
"entityresolution",
|
192
|
+
"es",
|
193
|
+
"events",
|
194
|
+
"evidently",
|
195
|
+
"finspace",
|
196
|
+
"finspace-data",
|
197
|
+
"firehose",
|
198
|
+
"fis",
|
199
|
+
"fms",
|
200
|
+
"forecast",
|
201
|
+
"forecastquery",
|
202
|
+
"frauddetector",
|
203
|
+
"freetier",
|
204
|
+
"fsx",
|
205
|
+
"gamelift",
|
206
|
+
"geo-maps",
|
207
|
+
"geo-places",
|
208
|
+
"geo-routes",
|
209
|
+
"glacier",
|
210
|
+
"globalaccelerator",
|
211
|
+
"glue",
|
212
|
+
"grafana",
|
213
|
+
"greengrass",
|
214
|
+
"greengrassv2",
|
215
|
+
"groundstation",
|
216
|
+
"guardduty",
|
217
|
+
"health",
|
218
|
+
"healthlake",
|
219
|
+
"iam",
|
220
|
+
"identitystore",
|
221
|
+
"imagebuilder",
|
222
|
+
"importexport",
|
223
|
+
"inspector",
|
224
|
+
"inspector-scan",
|
225
|
+
"inspector2",
|
226
|
+
"internetmonitor",
|
227
|
+
"iot",
|
228
|
+
"iot-data",
|
229
|
+
"iot-jobs-data",
|
230
|
+
"iot1click-devices",
|
231
|
+
"iot1click-projects",
|
232
|
+
"iotanalytics",
|
233
|
+
"iotdeviceadvisor",
|
234
|
+
"iotevents",
|
235
|
+
"iotevents-data",
|
236
|
+
"iotfleethub",
|
237
|
+
"iotfleetwise",
|
238
|
+
"iotsecuretunneling",
|
239
|
+
"iotsitewise",
|
240
|
+
"iotthingsgraph",
|
241
|
+
"iottwinmaker",
|
242
|
+
"iotwireless",
|
243
|
+
"ivs",
|
244
|
+
"ivs-realtime",
|
245
|
+
"ivschat",
|
246
|
+
"kafka",
|
247
|
+
"kafkaconnect",
|
248
|
+
"kendra",
|
249
|
+
"kendra-ranking",
|
250
|
+
"keyspaces",
|
251
|
+
"kinesis",
|
252
|
+
"kinesis-video-archived-media",
|
253
|
+
"kinesis-video-media",
|
254
|
+
"kinesis-video-signaling",
|
255
|
+
"kinesis-video-webrtc-storage",
|
256
|
+
"kinesisanalytics",
|
257
|
+
"kinesisanalyticsv2",
|
258
|
+
"kinesisvideo",
|
259
|
+
"kms",
|
260
|
+
"lakeformation",
|
261
|
+
"lambda",
|
262
|
+
"launch-wizard",
|
263
|
+
"lex-models",
|
264
|
+
"lex-runtime",
|
265
|
+
"lexv2-models",
|
266
|
+
"lexv2-runtime",
|
267
|
+
"license-manager",
|
268
|
+
"license-manager-linux-subscriptions",
|
269
|
+
"license-manager-user-subscriptions",
|
270
|
+
"lightsail",
|
271
|
+
"location",
|
272
|
+
"logs",
|
273
|
+
"lookoutequipment",
|
274
|
+
"lookoutmetrics",
|
275
|
+
"lookoutvision",
|
276
|
+
"m2",
|
277
|
+
"machinelearning",
|
278
|
+
"macie2",
|
279
|
+
"mailmanager",
|
280
|
+
"managedblockchain",
|
281
|
+
"managedblockchain-query",
|
282
|
+
"marketplace-agreement",
|
283
|
+
"marketplace-catalog",
|
284
|
+
"marketplace-deployment",
|
285
|
+
"marketplace-entitlement",
|
286
|
+
"marketplace-reporting",
|
287
|
+
"marketplacecommerceanalytics",
|
288
|
+
"mediaconnect",
|
289
|
+
"mediaconvert",
|
290
|
+
"medialive",
|
291
|
+
"mediapackage",
|
292
|
+
"mediapackage-vod",
|
293
|
+
"mediapackagev2",
|
294
|
+
"mediastore",
|
295
|
+
"mediastore-data",
|
296
|
+
"mediatailor",
|
297
|
+
"medical-imaging",
|
298
|
+
"memorydb",
|
299
|
+
"meteringmarketplace",
|
300
|
+
"mgh",
|
301
|
+
"mgn",
|
302
|
+
"migration-hub-refactor-spaces",
|
303
|
+
"migrationhub-config",
|
304
|
+
"migrationhuborchestrator",
|
305
|
+
"migrationhubstrategy",
|
306
|
+
"mq",
|
307
|
+
"mturk",
|
308
|
+
"mwaa",
|
309
|
+
"neptune",
|
310
|
+
"neptune-graph",
|
311
|
+
"neptunedata",
|
312
|
+
"network-firewall",
|
313
|
+
"networkmanager",
|
314
|
+
"networkmonitor",
|
315
|
+
"notifications",
|
316
|
+
"notificationscontacts",
|
317
|
+
"oam",
|
318
|
+
"observabilityadmin",
|
319
|
+
"omics",
|
320
|
+
"opensearch",
|
321
|
+
"opensearchserverless",
|
322
|
+
"opsworks",
|
323
|
+
"opsworkscm",
|
324
|
+
"organizations",
|
325
|
+
"osis",
|
326
|
+
"outposts",
|
327
|
+
"panorama",
|
328
|
+
"partnercentral-selling",
|
329
|
+
"payment-cryptography",
|
330
|
+
"payment-cryptography-data",
|
331
|
+
"pca-connector-ad",
|
332
|
+
"pca-connector-scep",
|
333
|
+
"pcs",
|
334
|
+
"personalize",
|
335
|
+
"personalize-events",
|
336
|
+
"personalize-runtime",
|
337
|
+
"pi",
|
338
|
+
"pinpoint",
|
339
|
+
"pinpoint-email",
|
340
|
+
"pinpoint-sms-voice",
|
341
|
+
"pinpoint-sms-voice-v2",
|
342
|
+
"pipes",
|
343
|
+
"polly",
|
344
|
+
"pricing",
|
345
|
+
"privatenetworks",
|
346
|
+
"proton",
|
347
|
+
"qapps",
|
348
|
+
"qbusiness",
|
349
|
+
"qconnect",
|
350
|
+
"qldb",
|
351
|
+
"qldb-session",
|
352
|
+
"quicksight",
|
353
|
+
"ram",
|
354
|
+
"rbin",
|
355
|
+
"rds",
|
356
|
+
"rds-data",
|
357
|
+
"redshift",
|
358
|
+
"redshift-data",
|
359
|
+
"redshift-serverless",
|
360
|
+
"rekognition",
|
361
|
+
"repostspace",
|
362
|
+
"resiliencehub",
|
363
|
+
"resource-explorer-2",
|
364
|
+
"resource-groups",
|
365
|
+
"resourcegroupstaggingapi",
|
366
|
+
"robomaker",
|
367
|
+
"rolesanywhere",
|
368
|
+
"route53",
|
369
|
+
"route53-recovery-cluster",
|
370
|
+
"route53-recovery-control-config",
|
371
|
+
"route53-recovery-readiness",
|
372
|
+
"route53domains",
|
373
|
+
"route53profiles",
|
374
|
+
"route53resolver",
|
375
|
+
"rum",
|
376
|
+
"s3",
|
377
|
+
"s3control",
|
378
|
+
"s3outposts",
|
379
|
+
"sagemaker",
|
380
|
+
"sagemaker-a2i-runtime",
|
381
|
+
"sagemaker-edge",
|
382
|
+
"sagemaker-featurestore-runtime",
|
383
|
+
"sagemaker-geospatial",
|
384
|
+
"sagemaker-metrics",
|
385
|
+
"sagemaker-runtime",
|
386
|
+
"savingsplans",
|
387
|
+
"scheduler",
|
388
|
+
"schemas",
|
389
|
+
"sdb",
|
390
|
+
"secretsmanager",
|
391
|
+
"securityhub",
|
392
|
+
"securitylake",
|
393
|
+
"serverlessrepo",
|
394
|
+
"service-quotas",
|
395
|
+
"servicecatalog",
|
396
|
+
"servicecatalog-appregistry",
|
397
|
+
"servicediscovery",
|
398
|
+
"ses",
|
399
|
+
"sesv2",
|
400
|
+
"shield",
|
401
|
+
"signer",
|
402
|
+
"simspaceweaver",
|
403
|
+
"sms",
|
404
|
+
"sms-voice",
|
405
|
+
"snow-device-management",
|
406
|
+
"snowball",
|
407
|
+
"sns",
|
408
|
+
"socialmessaging",
|
409
|
+
"sqs",
|
410
|
+
"ssm",
|
411
|
+
"ssm-contacts",
|
412
|
+
"ssm-incidents",
|
413
|
+
"ssm-quicksetup",
|
414
|
+
"ssm-sap",
|
415
|
+
"sso",
|
416
|
+
"sso-admin",
|
417
|
+
"sso-oidc",
|
418
|
+
"stepfunctions",
|
419
|
+
"storagegateway",
|
420
|
+
"sts",
|
421
|
+
"supplychain",
|
422
|
+
"support",
|
423
|
+
"support-app",
|
424
|
+
"swf",
|
425
|
+
"synthetics",
|
426
|
+
"taxsettings",
|
427
|
+
"textract",
|
428
|
+
"timestream-influxdb",
|
429
|
+
"timestream-query",
|
430
|
+
"timestream-write",
|
431
|
+
"tnb",
|
432
|
+
"transcribe",
|
433
|
+
"transfer",
|
434
|
+
"translate",
|
435
|
+
"trustedadvisor",
|
436
|
+
"verifiedpermissions",
|
437
|
+
"voice-id",
|
438
|
+
"vpc-lattice",
|
439
|
+
"waf",
|
440
|
+
"waf-regional",
|
441
|
+
"wafv2",
|
442
|
+
"wellarchitected",
|
443
|
+
"wisdom",
|
444
|
+
"workdocs",
|
445
|
+
"workmail",
|
446
|
+
"workmailmessageflow",
|
447
|
+
"workspaces",
|
448
|
+
"workspaces-thin-client",
|
449
|
+
"workspaces-web",
|
450
|
+
"xray",
|
451
|
+
]
|
452
|
+
ResourceServiceName = Literal[
|
453
|
+
"cloudformation",
|
454
|
+
"cloudwatch",
|
455
|
+
"dynamodb",
|
456
|
+
"ec2",
|
457
|
+
"glacier",
|
458
|
+
"iam",
|
459
|
+
"opsworks",
|
460
|
+
"s3",
|
461
|
+
"sns",
|
462
|
+
"sqs",
|
463
|
+
]
|
464
|
+
PaginatorName = Literal[
|
465
|
+
"list_indexes",
|
466
|
+
"list_indexes_for_members",
|
467
|
+
"list_managed_views",
|
468
|
+
"list_resources",
|
469
|
+
"list_supported_resource_types",
|
470
|
+
"list_views",
|
471
|
+
"search",
|
472
|
+
]
|
473
|
+
RegionName = Literal[
|
474
|
+
"af-south-1",
|
475
|
+
"ap-east-1",
|
476
|
+
"ap-northeast-1",
|
477
|
+
"ap-northeast-2",
|
478
|
+
"ap-northeast-3",
|
479
|
+
"ap-south-1",
|
480
|
+
"ap-south-2",
|
481
|
+
"ap-southeast-1",
|
482
|
+
"ap-southeast-2",
|
483
|
+
"ap-southeast-3",
|
484
|
+
"ap-southeast-4",
|
485
|
+
"ca-central-1",
|
486
|
+
"ca-west-1",
|
487
|
+
"eu-central-1",
|
488
|
+
"eu-central-2",
|
489
|
+
"eu-north-1",
|
490
|
+
"eu-south-1",
|
491
|
+
"eu-south-2",
|
492
|
+
"eu-west-1",
|
493
|
+
"eu-west-2",
|
494
|
+
"eu-west-3",
|
495
|
+
"il-central-1",
|
496
|
+
"me-central-1",
|
497
|
+
"me-south-1",
|
498
|
+
"sa-east-1",
|
499
|
+
"us-east-1",
|
500
|
+
"us-east-2",
|
501
|
+
"us-west-1",
|
502
|
+
"us-west-2",
|
503
|
+
]
|
@@ -0,0 +1,189 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for resource-explorer-2 service client paginators.
|
3
|
+
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from boto3.session import Session
|
10
|
+
|
11
|
+
from types_boto3_resource_explorer_2.client import ResourceExplorerClient
|
12
|
+
from types_boto3_resource_explorer_2.paginator import (
|
13
|
+
ListIndexesForMembersPaginator,
|
14
|
+
ListIndexesPaginator,
|
15
|
+
ListManagedViewsPaginator,
|
16
|
+
ListResourcesPaginator,
|
17
|
+
ListSupportedResourceTypesPaginator,
|
18
|
+
ListViewsPaginator,
|
19
|
+
SearchPaginator,
|
20
|
+
)
|
21
|
+
|
22
|
+
session = Session()
|
23
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
24
|
+
|
25
|
+
list_indexes_for_members_paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")
|
26
|
+
list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
|
27
|
+
list_managed_views_paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views")
|
28
|
+
list_resources_paginator: ListResourcesPaginator = client.get_paginator("list_resources")
|
29
|
+
list_supported_resource_types_paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")
|
30
|
+
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
|
31
|
+
search_paginator: SearchPaginator = client.get_paginator("search")
|
32
|
+
```
|
33
|
+
|
34
|
+
Copyright 2024 Vlad Emelianov
|
35
|
+
"""
|
36
|
+
|
37
|
+
import sys
|
38
|
+
from typing import Generic, Iterator, TypeVar
|
39
|
+
|
40
|
+
from botocore.paginate import PageIterator, Paginator
|
41
|
+
|
42
|
+
from .type_defs import (
|
43
|
+
ListIndexesForMembersInputListIndexesForMembersPaginateTypeDef,
|
44
|
+
ListIndexesForMembersOutputTypeDef,
|
45
|
+
ListIndexesInputListIndexesPaginateTypeDef,
|
46
|
+
ListIndexesOutputTypeDef,
|
47
|
+
ListManagedViewsInputListManagedViewsPaginateTypeDef,
|
48
|
+
ListManagedViewsOutputTypeDef,
|
49
|
+
ListResourcesInputListResourcesPaginateTypeDef,
|
50
|
+
ListResourcesOutputTypeDef,
|
51
|
+
ListSupportedResourceTypesInputListSupportedResourceTypesPaginateTypeDef,
|
52
|
+
ListSupportedResourceTypesOutputTypeDef,
|
53
|
+
ListViewsInputListViewsPaginateTypeDef,
|
54
|
+
ListViewsOutputTypeDef,
|
55
|
+
SearchInputSearchPaginateTypeDef,
|
56
|
+
SearchOutputTypeDef,
|
57
|
+
)
|
58
|
+
|
59
|
+
if sys.version_info >= (3, 12):
|
60
|
+
from typing import Unpack
|
61
|
+
else:
|
62
|
+
from typing_extensions import Unpack
|
63
|
+
|
64
|
+
|
65
|
+
__all__ = (
|
66
|
+
"ListIndexesForMembersPaginator",
|
67
|
+
"ListIndexesPaginator",
|
68
|
+
"ListManagedViewsPaginator",
|
69
|
+
"ListResourcesPaginator",
|
70
|
+
"ListSupportedResourceTypesPaginator",
|
71
|
+
"ListViewsPaginator",
|
72
|
+
"SearchPaginator",
|
73
|
+
)
|
74
|
+
|
75
|
+
|
76
|
+
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
77
|
+
|
78
|
+
|
79
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
80
|
+
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
81
|
+
"""
|
82
|
+
Proxy method to specify iterator item type.
|
83
|
+
"""
|
84
|
+
|
85
|
+
|
86
|
+
class ListIndexesForMembersPaginator(Paginator):
|
87
|
+
"""
|
88
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers)
|
89
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
90
|
+
"""
|
91
|
+
|
92
|
+
def paginate(
|
93
|
+
self, **kwargs: Unpack[ListIndexesForMembersInputListIndexesForMembersPaginateTypeDef]
|
94
|
+
) -> _PageIterator[ListIndexesForMembersOutputTypeDef]:
|
95
|
+
"""
|
96
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers.paginate)
|
97
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
98
|
+
"""
|
99
|
+
|
100
|
+
|
101
|
+
class ListIndexesPaginator(Paginator):
|
102
|
+
"""
|
103
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes)
|
104
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
105
|
+
"""
|
106
|
+
|
107
|
+
def paginate(
|
108
|
+
self, **kwargs: Unpack[ListIndexesInputListIndexesPaginateTypeDef]
|
109
|
+
) -> _PageIterator[ListIndexesOutputTypeDef]:
|
110
|
+
"""
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes.paginate)
|
112
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
113
|
+
"""
|
114
|
+
|
115
|
+
|
116
|
+
class ListManagedViewsPaginator(Paginator):
|
117
|
+
"""
|
118
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews)
|
119
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
120
|
+
"""
|
121
|
+
|
122
|
+
def paginate(
|
123
|
+
self, **kwargs: Unpack[ListManagedViewsInputListManagedViewsPaginateTypeDef]
|
124
|
+
) -> _PageIterator[ListManagedViewsOutputTypeDef]:
|
125
|
+
"""
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews.paginate)
|
127
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
128
|
+
"""
|
129
|
+
|
130
|
+
|
131
|
+
class ListResourcesPaginator(Paginator):
|
132
|
+
"""
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources)
|
134
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
135
|
+
"""
|
136
|
+
|
137
|
+
def paginate(
|
138
|
+
self, **kwargs: Unpack[ListResourcesInputListResourcesPaginateTypeDef]
|
139
|
+
) -> _PageIterator[ListResourcesOutputTypeDef]:
|
140
|
+
"""
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources.paginate)
|
142
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
143
|
+
"""
|
144
|
+
|
145
|
+
|
146
|
+
class ListSupportedResourceTypesPaginator(Paginator):
|
147
|
+
"""
|
148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes)
|
149
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
150
|
+
"""
|
151
|
+
|
152
|
+
def paginate(
|
153
|
+
self,
|
154
|
+
**kwargs: Unpack[ListSupportedResourceTypesInputListSupportedResourceTypesPaginateTypeDef],
|
155
|
+
) -> _PageIterator[ListSupportedResourceTypesOutputTypeDef]:
|
156
|
+
"""
|
157
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes.paginate)
|
158
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
159
|
+
"""
|
160
|
+
|
161
|
+
|
162
|
+
class ListViewsPaginator(Paginator):
|
163
|
+
"""
|
164
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews)
|
165
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
166
|
+
"""
|
167
|
+
|
168
|
+
def paginate(
|
169
|
+
self, **kwargs: Unpack[ListViewsInputListViewsPaginateTypeDef]
|
170
|
+
) -> _PageIterator[ListViewsOutputTypeDef]:
|
171
|
+
"""
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews.paginate)
|
173
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
174
|
+
"""
|
175
|
+
|
176
|
+
|
177
|
+
class SearchPaginator(Paginator):
|
178
|
+
"""
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search)
|
180
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
181
|
+
"""
|
182
|
+
|
183
|
+
def paginate(
|
184
|
+
self, **kwargs: Unpack[SearchInputSearchPaginateTypeDef]
|
185
|
+
) -> _PageIterator[SearchOutputTypeDef]:
|
186
|
+
"""
|
187
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search.paginate)
|
188
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
189
|
+
"""
|