types-boto3-resource-explorer-2 1.35.93__tar.gz

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 (24) hide show
  1. types_boto3_resource_explorer_2-1.35.93/LICENSE +21 -0
  2. types_boto3_resource_explorer_2-1.35.93/PKG-INFO +489 -0
  3. types_boto3_resource_explorer_2-1.35.93/README.md +455 -0
  4. types_boto3_resource_explorer_2-1.35.93/setup.cfg +4 -0
  5. types_boto3_resource_explorer_2-1.35.93/setup.py +54 -0
  6. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/__init__.py +59 -0
  7. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/__init__.pyi +58 -0
  8. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/__main__.py +43 -0
  9. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/client.py +467 -0
  10. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/client.pyi +464 -0
  11. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/literals.py +513 -0
  12. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/literals.pyi +511 -0
  13. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/paginator.py +222 -0
  14. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/paginator.pyi +200 -0
  15. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/py.typed +0 -0
  16. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/type_defs.py +497 -0
  17. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/type_defs.pyi +434 -0
  18. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2/version.py +7 -0
  19. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/PKG-INFO +489 -0
  20. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/SOURCES.txt +22 -0
  21. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/dependency_links.txt +1 -0
  22. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/not-zip-safe +1 -0
  23. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/requires.txt +3 -0
  24. types_boto3_resource_explorer_2-1.35.93/types_boto3_resource_explorer_2.egg-info/top_level.txt +1 -0
@@ -0,0 +1,497 @@
1
+ """
2
+ Type annotations for resource-explorer-2 service type definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/type_defs/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_resource_explorer_2.type_defs import AssociateDefaultViewInputRequestTypeDef
10
+
11
+ data: AssociateDefaultViewInputRequestTypeDef = ...
12
+ ```
13
+
14
+ Copyright 2025 Vlad Emelianov
15
+ """
16
+
17
+ from __future__ import annotations
18
+
19
+ import sys
20
+ from datetime import datetime
21
+ from typing import Any
22
+
23
+ from .literals import AWSServiceAccessStatusType, IndexStateType, IndexTypeType
24
+
25
+ if sys.version_info >= (3, 9):
26
+ from builtins import dict as Dict
27
+ from builtins import list as List
28
+ from collections.abc import Mapping, Sequence
29
+ else:
30
+ from typing import Dict, List, Mapping, Sequence
31
+ if sys.version_info >= (3, 12):
32
+ from typing import NotRequired, TypedDict
33
+ else:
34
+ from typing_extensions import NotRequired, TypedDict
35
+
36
+
37
+ __all__ = (
38
+ "AssociateDefaultViewInputRequestTypeDef",
39
+ "AssociateDefaultViewOutputTypeDef",
40
+ "BatchGetViewErrorTypeDef",
41
+ "BatchGetViewInputRequestTypeDef",
42
+ "BatchGetViewOutputTypeDef",
43
+ "CreateIndexInputRequestTypeDef",
44
+ "CreateIndexOutputTypeDef",
45
+ "CreateViewInputRequestTypeDef",
46
+ "CreateViewOutputTypeDef",
47
+ "DeleteIndexInputRequestTypeDef",
48
+ "DeleteIndexOutputTypeDef",
49
+ "DeleteViewInputRequestTypeDef",
50
+ "DeleteViewOutputTypeDef",
51
+ "EmptyResponseMetadataTypeDef",
52
+ "GetAccountLevelServiceConfigurationOutputTypeDef",
53
+ "GetDefaultViewOutputTypeDef",
54
+ "GetIndexOutputTypeDef",
55
+ "GetManagedViewInputRequestTypeDef",
56
+ "GetManagedViewOutputTypeDef",
57
+ "GetViewInputRequestTypeDef",
58
+ "GetViewOutputTypeDef",
59
+ "IncludedPropertyTypeDef",
60
+ "IndexTypeDef",
61
+ "ListIndexesForMembersInputPaginateTypeDef",
62
+ "ListIndexesForMembersInputRequestTypeDef",
63
+ "ListIndexesForMembersOutputTypeDef",
64
+ "ListIndexesInputPaginateTypeDef",
65
+ "ListIndexesInputRequestTypeDef",
66
+ "ListIndexesOutputTypeDef",
67
+ "ListManagedViewsInputPaginateTypeDef",
68
+ "ListManagedViewsInputRequestTypeDef",
69
+ "ListManagedViewsOutputTypeDef",
70
+ "ListResourcesInputPaginateTypeDef",
71
+ "ListResourcesInputRequestTypeDef",
72
+ "ListResourcesOutputTypeDef",
73
+ "ListSupportedResourceTypesInputPaginateTypeDef",
74
+ "ListSupportedResourceTypesInputRequestTypeDef",
75
+ "ListSupportedResourceTypesOutputTypeDef",
76
+ "ListTagsForResourceInputRequestTypeDef",
77
+ "ListTagsForResourceOutputTypeDef",
78
+ "ListViewsInputPaginateTypeDef",
79
+ "ListViewsInputRequestTypeDef",
80
+ "ListViewsOutputTypeDef",
81
+ "ManagedViewTypeDef",
82
+ "MemberIndexTypeDef",
83
+ "OrgConfigurationTypeDef",
84
+ "PaginatorConfigTypeDef",
85
+ "ResourceCountTypeDef",
86
+ "ResourcePropertyTypeDef",
87
+ "ResourceTypeDef",
88
+ "ResponseMetadataTypeDef",
89
+ "SearchFilterTypeDef",
90
+ "SearchInputPaginateTypeDef",
91
+ "SearchInputRequestTypeDef",
92
+ "SearchOutputTypeDef",
93
+ "SupportedResourceTypeTypeDef",
94
+ "TagResourceInputRequestTypeDef",
95
+ "UntagResourceInputRequestTypeDef",
96
+ "UpdateIndexTypeInputRequestTypeDef",
97
+ "UpdateIndexTypeOutputTypeDef",
98
+ "UpdateViewInputRequestTypeDef",
99
+ "UpdateViewOutputTypeDef",
100
+ "ViewTypeDef",
101
+ )
102
+
103
+
104
+ class AssociateDefaultViewInputRequestTypeDef(TypedDict):
105
+ ViewArn: str
106
+
107
+
108
+ class ResponseMetadataTypeDef(TypedDict):
109
+ RequestId: str
110
+ HTTPStatusCode: int
111
+ HTTPHeaders: Dict[str, str]
112
+ RetryAttempts: int
113
+ HostId: NotRequired[str]
114
+
115
+
116
+ class BatchGetViewErrorTypeDef(TypedDict):
117
+ ErrorMessage: str
118
+ ViewArn: str
119
+
120
+
121
+ class BatchGetViewInputRequestTypeDef(TypedDict):
122
+ ViewArns: NotRequired[Sequence[str]]
123
+
124
+
125
+ class CreateIndexInputRequestTypeDef(TypedDict):
126
+ ClientToken: NotRequired[str]
127
+ Tags: NotRequired[Mapping[str, str]]
128
+
129
+
130
+ class IncludedPropertyTypeDef(TypedDict):
131
+ Name: str
132
+
133
+
134
+ class SearchFilterTypeDef(TypedDict):
135
+ FilterString: str
136
+
137
+
138
+ class DeleteIndexInputRequestTypeDef(TypedDict):
139
+ Arn: str
140
+
141
+
142
+ class DeleteViewInputRequestTypeDef(TypedDict):
143
+ ViewArn: str
144
+
145
+
146
+ class OrgConfigurationTypeDef(TypedDict):
147
+ AWSServiceAccessStatus: AWSServiceAccessStatusType
148
+ ServiceLinkedRole: NotRequired[str]
149
+
150
+
151
+ class GetManagedViewInputRequestTypeDef(TypedDict):
152
+ ManagedViewArn: str
153
+
154
+
155
+ class GetViewInputRequestTypeDef(TypedDict):
156
+ ViewArn: str
157
+
158
+
159
+ IndexTypeDef = TypedDict(
160
+ "IndexTypeDef",
161
+ {
162
+ "Arn": NotRequired[str],
163
+ "Region": NotRequired[str],
164
+ "Type": NotRequired[IndexTypeType],
165
+ },
166
+ )
167
+
168
+
169
+ class PaginatorConfigTypeDef(TypedDict):
170
+ MaxItems: NotRequired[int]
171
+ PageSize: NotRequired[int]
172
+ StartingToken: NotRequired[str]
173
+
174
+
175
+ class ListIndexesForMembersInputRequestTypeDef(TypedDict):
176
+ AccountIdList: Sequence[str]
177
+ MaxResults: NotRequired[int]
178
+ NextToken: NotRequired[str]
179
+
180
+
181
+ MemberIndexTypeDef = TypedDict(
182
+ "MemberIndexTypeDef",
183
+ {
184
+ "AccountId": NotRequired[str],
185
+ "Arn": NotRequired[str],
186
+ "Region": NotRequired[str],
187
+ "Type": NotRequired[IndexTypeType],
188
+ },
189
+ )
190
+ ListIndexesInputRequestTypeDef = TypedDict(
191
+ "ListIndexesInputRequestTypeDef",
192
+ {
193
+ "MaxResults": NotRequired[int],
194
+ "NextToken": NotRequired[str],
195
+ "Regions": NotRequired[Sequence[str]],
196
+ "Type": NotRequired[IndexTypeType],
197
+ },
198
+ )
199
+
200
+
201
+ class ListManagedViewsInputRequestTypeDef(TypedDict):
202
+ MaxResults: NotRequired[int]
203
+ NextToken: NotRequired[str]
204
+ ServicePrincipal: NotRequired[str]
205
+
206
+
207
+ class ListSupportedResourceTypesInputRequestTypeDef(TypedDict):
208
+ MaxResults: NotRequired[int]
209
+ NextToken: NotRequired[str]
210
+
211
+
212
+ class SupportedResourceTypeTypeDef(TypedDict):
213
+ ResourceType: NotRequired[str]
214
+ Service: NotRequired[str]
215
+
216
+
217
+ class ListTagsForResourceInputRequestTypeDef(TypedDict):
218
+ resourceArn: str
219
+
220
+
221
+ class ListViewsInputRequestTypeDef(TypedDict):
222
+ MaxResults: NotRequired[int]
223
+ NextToken: NotRequired[str]
224
+
225
+
226
+ class ResourceCountTypeDef(TypedDict):
227
+ Complete: NotRequired[bool]
228
+ TotalResources: NotRequired[int]
229
+
230
+
231
+ class ResourcePropertyTypeDef(TypedDict):
232
+ Data: NotRequired[Dict[str, Any]]
233
+ LastReportedAt: NotRequired[datetime]
234
+ Name: NotRequired[str]
235
+
236
+
237
+ class SearchInputRequestTypeDef(TypedDict):
238
+ QueryString: str
239
+ MaxResults: NotRequired[int]
240
+ NextToken: NotRequired[str]
241
+ ViewArn: NotRequired[str]
242
+
243
+
244
+ class TagResourceInputRequestTypeDef(TypedDict):
245
+ resourceArn: str
246
+ Tags: NotRequired[Mapping[str, str]]
247
+
248
+
249
+ class UntagResourceInputRequestTypeDef(TypedDict):
250
+ resourceArn: str
251
+ tagKeys: Sequence[str]
252
+
253
+
254
+ UpdateIndexTypeInputRequestTypeDef = TypedDict(
255
+ "UpdateIndexTypeInputRequestTypeDef",
256
+ {
257
+ "Arn": str,
258
+ "Type": IndexTypeType,
259
+ },
260
+ )
261
+
262
+
263
+ class AssociateDefaultViewOutputTypeDef(TypedDict):
264
+ ViewArn: str
265
+ ResponseMetadata: ResponseMetadataTypeDef
266
+
267
+
268
+ class CreateIndexOutputTypeDef(TypedDict):
269
+ Arn: str
270
+ CreatedAt: datetime
271
+ State: IndexStateType
272
+ ResponseMetadata: ResponseMetadataTypeDef
273
+
274
+
275
+ class DeleteIndexOutputTypeDef(TypedDict):
276
+ Arn: str
277
+ LastUpdatedAt: datetime
278
+ State: IndexStateType
279
+ ResponseMetadata: ResponseMetadataTypeDef
280
+
281
+
282
+ class DeleteViewOutputTypeDef(TypedDict):
283
+ ViewArn: str
284
+ ResponseMetadata: ResponseMetadataTypeDef
285
+
286
+
287
+ class EmptyResponseMetadataTypeDef(TypedDict):
288
+ ResponseMetadata: ResponseMetadataTypeDef
289
+
290
+
291
+ class GetDefaultViewOutputTypeDef(TypedDict):
292
+ ViewArn: str
293
+ ResponseMetadata: ResponseMetadataTypeDef
294
+
295
+
296
+ GetIndexOutputTypeDef = TypedDict(
297
+ "GetIndexOutputTypeDef",
298
+ {
299
+ "Arn": str,
300
+ "CreatedAt": datetime,
301
+ "LastUpdatedAt": datetime,
302
+ "ReplicatingFrom": List[str],
303
+ "ReplicatingTo": List[str],
304
+ "State": IndexStateType,
305
+ "Tags": Dict[str, str],
306
+ "Type": IndexTypeType,
307
+ "ResponseMetadata": ResponseMetadataTypeDef,
308
+ },
309
+ )
310
+
311
+
312
+ class ListManagedViewsOutputTypeDef(TypedDict):
313
+ ManagedViews: List[str]
314
+ ResponseMetadata: ResponseMetadataTypeDef
315
+ NextToken: NotRequired[str]
316
+
317
+
318
+ class ListTagsForResourceOutputTypeDef(TypedDict):
319
+ Tags: Dict[str, str]
320
+ ResponseMetadata: ResponseMetadataTypeDef
321
+
322
+
323
+ class ListViewsOutputTypeDef(TypedDict):
324
+ Views: List[str]
325
+ ResponseMetadata: ResponseMetadataTypeDef
326
+ NextToken: NotRequired[str]
327
+
328
+
329
+ UpdateIndexTypeOutputTypeDef = TypedDict(
330
+ "UpdateIndexTypeOutputTypeDef",
331
+ {
332
+ "Arn": str,
333
+ "LastUpdatedAt": datetime,
334
+ "State": IndexStateType,
335
+ "Type": IndexTypeType,
336
+ "ResponseMetadata": ResponseMetadataTypeDef,
337
+ },
338
+ )
339
+
340
+
341
+ class CreateViewInputRequestTypeDef(TypedDict):
342
+ ViewName: str
343
+ ClientToken: NotRequired[str]
344
+ Filters: NotRequired[SearchFilterTypeDef]
345
+ IncludedProperties: NotRequired[Sequence[IncludedPropertyTypeDef]]
346
+ Scope: NotRequired[str]
347
+ Tags: NotRequired[Mapping[str, str]]
348
+
349
+
350
+ class ListResourcesInputRequestTypeDef(TypedDict):
351
+ Filters: NotRequired[SearchFilterTypeDef]
352
+ MaxResults: NotRequired[int]
353
+ NextToken: NotRequired[str]
354
+ ViewArn: NotRequired[str]
355
+
356
+
357
+ class ManagedViewTypeDef(TypedDict):
358
+ Filters: NotRequired[SearchFilterTypeDef]
359
+ IncludedProperties: NotRequired[List[IncludedPropertyTypeDef]]
360
+ LastUpdatedAt: NotRequired[datetime]
361
+ ManagedViewArn: NotRequired[str]
362
+ ManagedViewName: NotRequired[str]
363
+ Owner: NotRequired[str]
364
+ ResourcePolicy: NotRequired[str]
365
+ Scope: NotRequired[str]
366
+ TrustedService: NotRequired[str]
367
+ Version: NotRequired[str]
368
+
369
+
370
+ class UpdateViewInputRequestTypeDef(TypedDict):
371
+ ViewArn: str
372
+ Filters: NotRequired[SearchFilterTypeDef]
373
+ IncludedProperties: NotRequired[Sequence[IncludedPropertyTypeDef]]
374
+
375
+
376
+ class ViewTypeDef(TypedDict):
377
+ Filters: NotRequired[SearchFilterTypeDef]
378
+ IncludedProperties: NotRequired[List[IncludedPropertyTypeDef]]
379
+ LastUpdatedAt: NotRequired[datetime]
380
+ Owner: NotRequired[str]
381
+ Scope: NotRequired[str]
382
+ ViewArn: NotRequired[str]
383
+
384
+
385
+ class GetAccountLevelServiceConfigurationOutputTypeDef(TypedDict):
386
+ OrgConfiguration: OrgConfigurationTypeDef
387
+ ResponseMetadata: ResponseMetadataTypeDef
388
+
389
+
390
+ class ListIndexesOutputTypeDef(TypedDict):
391
+ Indexes: List[IndexTypeDef]
392
+ ResponseMetadata: ResponseMetadataTypeDef
393
+ NextToken: NotRequired[str]
394
+
395
+
396
+ class ListIndexesForMembersInputPaginateTypeDef(TypedDict):
397
+ AccountIdList: Sequence[str]
398
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
399
+
400
+
401
+ ListIndexesInputPaginateTypeDef = TypedDict(
402
+ "ListIndexesInputPaginateTypeDef",
403
+ {
404
+ "Regions": NotRequired[Sequence[str]],
405
+ "Type": NotRequired[IndexTypeType],
406
+ "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
407
+ },
408
+ )
409
+
410
+
411
+ class ListManagedViewsInputPaginateTypeDef(TypedDict):
412
+ ServicePrincipal: NotRequired[str]
413
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
414
+
415
+
416
+ class ListResourcesInputPaginateTypeDef(TypedDict):
417
+ Filters: NotRequired[SearchFilterTypeDef]
418
+ ViewArn: NotRequired[str]
419
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
420
+
421
+
422
+ class ListSupportedResourceTypesInputPaginateTypeDef(TypedDict):
423
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
424
+
425
+
426
+ class ListViewsInputPaginateTypeDef(TypedDict):
427
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
428
+
429
+
430
+ class SearchInputPaginateTypeDef(TypedDict):
431
+ QueryString: str
432
+ ViewArn: NotRequired[str]
433
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
434
+
435
+
436
+ class ListIndexesForMembersOutputTypeDef(TypedDict):
437
+ Indexes: List[MemberIndexTypeDef]
438
+ ResponseMetadata: ResponseMetadataTypeDef
439
+ NextToken: NotRequired[str]
440
+
441
+
442
+ class ListSupportedResourceTypesOutputTypeDef(TypedDict):
443
+ ResourceTypes: List[SupportedResourceTypeTypeDef]
444
+ ResponseMetadata: ResponseMetadataTypeDef
445
+ NextToken: NotRequired[str]
446
+
447
+
448
+ class ResourceTypeDef(TypedDict):
449
+ Arn: NotRequired[str]
450
+ LastReportedAt: NotRequired[datetime]
451
+ OwningAccountId: NotRequired[str]
452
+ Properties: NotRequired[List[ResourcePropertyTypeDef]]
453
+ Region: NotRequired[str]
454
+ ResourceType: NotRequired[str]
455
+ Service: NotRequired[str]
456
+
457
+
458
+ class GetManagedViewOutputTypeDef(TypedDict):
459
+ ManagedView: ManagedViewTypeDef
460
+ ResponseMetadata: ResponseMetadataTypeDef
461
+
462
+
463
+ class BatchGetViewOutputTypeDef(TypedDict):
464
+ Errors: List[BatchGetViewErrorTypeDef]
465
+ Views: List[ViewTypeDef]
466
+ ResponseMetadata: ResponseMetadataTypeDef
467
+
468
+
469
+ class CreateViewOutputTypeDef(TypedDict):
470
+ View: ViewTypeDef
471
+ ResponseMetadata: ResponseMetadataTypeDef
472
+
473
+
474
+ class GetViewOutputTypeDef(TypedDict):
475
+ Tags: Dict[str, str]
476
+ View: ViewTypeDef
477
+ ResponseMetadata: ResponseMetadataTypeDef
478
+
479
+
480
+ class UpdateViewOutputTypeDef(TypedDict):
481
+ View: ViewTypeDef
482
+ ResponseMetadata: ResponseMetadataTypeDef
483
+
484
+
485
+ class ListResourcesOutputTypeDef(TypedDict):
486
+ Resources: List[ResourceTypeDef]
487
+ ViewArn: str
488
+ ResponseMetadata: ResponseMetadataTypeDef
489
+ NextToken: NotRequired[str]
490
+
491
+
492
+ class SearchOutputTypeDef(TypedDict):
493
+ Count: ResourceCountTypeDef
494
+ Resources: List[ResourceTypeDef]
495
+ ViewArn: str
496
+ ResponseMetadata: ResponseMetadataTypeDef
497
+ NextToken: NotRequired[str]