types-boto3-resource-explorer-2 1.35.71__py3-none-any.whl → 1.35.93__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 +1 -1
- types_boto3_resource_explorer_2/__init__.pyi +1 -1
- types_boto3_resource_explorer_2/__main__.py +9 -8
- types_boto3_resource_explorer_2/client.py +37 -33
- types_boto3_resource_explorer_2/client.pyi +37 -32
- types_boto3_resource_explorer_2/literals.py +10 -2
- types_boto3_resource_explorer_2/literals.pyi +10 -2
- types_boto3_resource_explorer_2/paginator.py +80 -47
- types_boto3_resource_explorer_2/paginator.pyi +74 -46
- types_boto3_resource_explorer_2/type_defs.py +26 -18
- types_boto3_resource_explorer_2/type_defs.pyi +26 -18
- types_boto3_resource_explorer_2/version.py +2 -2
- {types_boto3_resource_explorer_2-1.35.71.dist-info → types_boto3_resource_explorer_2-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_resource_explorer_2-1.35.71.dist-info → types_boto3_resource_explorer_2-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_resource_explorer_2-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_resource_explorer_2-1.35.71.dist-info → types_boto3_resource_explorer_2-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_resource_explorer_2-1.35.71.dist-info/RECORD +0 -18
- {types_boto3_resource_explorer_2-1.35.71.dist-info → types_boto3_resource_explorer_2-1.35.93.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Main CLI entrypoint.
|
3
3
|
|
4
|
-
Copyright
|
4
|
+
Copyright 2025 Vlad Emelianov
|
5
5
|
"""
|
6
6
|
|
7
7
|
import sys
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
11
11
|
"""
|
12
12
|
Print package info to stdout.
|
13
13
|
"""
|
14
|
-
|
15
|
-
"Type annotations for boto3 ResourceExplorer 1.35.
|
16
|
-
"Version: 1.35.
|
17
|
-
"Builder version: 8.
|
14
|
+
sys.stdout.write(
|
15
|
+
"Type annotations for boto3 ResourceExplorer 1.35.93\n"
|
16
|
+
"Version: 1.35.93\n"
|
17
|
+
"Builder version: 8.8.0\n"
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2//\n"
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#resourceexplorer\n"
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
22
22
|
)
|
23
23
|
|
24
24
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
26
26
|
"""
|
27
27
|
Print package version to stdout.
|
28
28
|
"""
|
29
|
-
|
29
|
+
sys.stdout.write("1.35.93\n")
|
30
30
|
|
31
31
|
|
32
32
|
def main() -> None:
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
34
34
|
Main CLI entrypoint.
|
35
35
|
"""
|
36
36
|
if "--version" in sys.argv:
|
37
|
-
|
37
|
+
print_version()
|
38
|
+
return
|
38
39
|
print_info()
|
39
40
|
|
40
41
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
|
-
Type annotations for resource-explorer-2 service
|
2
|
+
Type annotations for resource-explorer-2 service Client.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
13
13
|
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
14
14
|
```
|
15
15
|
|
16
|
-
Copyright
|
16
|
+
Copyright 2025 Vlad Emelianov
|
17
17
|
"""
|
18
18
|
|
19
|
+
from __future__ import annotations
|
20
|
+
|
19
21
|
import sys
|
20
|
-
from typing import Any,
|
22
|
+
from typing import Any, overload
|
21
23
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
23
27
|
|
24
28
|
from .paginator import (
|
25
29
|
ListIndexesForMembersPaginator,
|
@@ -75,6 +79,12 @@ from .type_defs import (
|
|
75
79
|
UpdateViewOutputTypeDef,
|
76
80
|
)
|
77
81
|
|
82
|
+
if sys.version_info >= (3, 9):
|
83
|
+
from builtins import dict as Dict
|
84
|
+
from builtins import type as Type
|
85
|
+
from collections.abc import Mapping
|
86
|
+
else:
|
87
|
+
from typing import Dict, Mapping, Type
|
78
88
|
if sys.version_info >= (3, 12):
|
79
89
|
from typing import Literal, Unpack
|
80
90
|
else:
|
@@ -84,15 +94,7 @@ else:
|
|
84
94
|
__all__ = ("ResourceExplorerClient",)
|
85
95
|
|
86
96
|
|
87
|
-
class
|
88
|
-
MSG_TEMPLATE: str
|
89
|
-
|
90
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
91
|
-
self.response: Dict[str, Any]
|
92
|
-
self.operation_name: str
|
93
|
-
|
94
|
-
|
95
|
-
class Exceptions:
|
97
|
+
class Exceptions(BaseClientExceptions):
|
96
98
|
AccessDeniedException: Type[BotocoreClientError]
|
97
99
|
ClientError: Type[BotocoreClientError]
|
98
100
|
ConflictException: Type[BotocoreClientError]
|
@@ -139,12 +141,6 @@ class ResourceExplorerClient(BaseClient):
|
|
139
141
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#generate_presigned_url)
|
140
142
|
"""
|
141
143
|
|
142
|
-
def close(self) -> None:
|
143
|
-
"""
|
144
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/close.html)
|
145
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#close)
|
146
|
-
"""
|
147
|
-
|
148
144
|
def associate_default_view(
|
149
145
|
self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
|
150
146
|
) -> AssociateDefaultViewOutputTypeDef:
|
@@ -393,8 +389,8 @@ class ResourceExplorerClient(BaseClient):
|
|
393
389
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_view)
|
394
390
|
"""
|
395
391
|
|
396
|
-
@overload
|
397
|
-
def get_paginator(
|
392
|
+
@overload # type: ignore[override]
|
393
|
+
def get_paginator( # type: ignore[override]
|
398
394
|
self, operation_name: Literal["list_indexes_for_members"]
|
399
395
|
) -> ListIndexesForMembersPaginator:
|
400
396
|
"""
|
@@ -404,8 +400,10 @@ class ResourceExplorerClient(BaseClient):
|
|
404
400
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
405
401
|
"""
|
406
402
|
|
407
|
-
@overload
|
408
|
-
def get_paginator(
|
403
|
+
@overload # type: ignore[override]
|
404
|
+
def get_paginator( # type: ignore[override]
|
405
|
+
self, operation_name: Literal["list_indexes"]
|
406
|
+
) -> ListIndexesPaginator:
|
409
407
|
"""
|
410
408
|
Create a paginator for an operation.
|
411
409
|
|
@@ -413,8 +411,8 @@ class ResourceExplorerClient(BaseClient):
|
|
413
411
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
414
412
|
"""
|
415
413
|
|
416
|
-
@overload
|
417
|
-
def get_paginator(
|
414
|
+
@overload # type: ignore[override]
|
415
|
+
def get_paginator( # type: ignore[override]
|
418
416
|
self, operation_name: Literal["list_managed_views"]
|
419
417
|
) -> ListManagedViewsPaginator:
|
420
418
|
"""
|
@@ -424,8 +422,10 @@ class ResourceExplorerClient(BaseClient):
|
|
424
422
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
425
423
|
"""
|
426
424
|
|
427
|
-
@overload
|
428
|
-
def get_paginator(
|
425
|
+
@overload # type: ignore[override]
|
426
|
+
def get_paginator( # type: ignore[override]
|
427
|
+
self, operation_name: Literal["list_resources"]
|
428
|
+
) -> ListResourcesPaginator:
|
429
429
|
"""
|
430
430
|
Create a paginator for an operation.
|
431
431
|
|
@@ -433,8 +433,8 @@ class ResourceExplorerClient(BaseClient):
|
|
433
433
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
434
434
|
"""
|
435
435
|
|
436
|
-
@overload
|
437
|
-
def get_paginator(
|
436
|
+
@overload # type: ignore[override]
|
437
|
+
def get_paginator( # type: ignore[override]
|
438
438
|
self, operation_name: Literal["list_supported_resource_types"]
|
439
439
|
) -> ListSupportedResourceTypesPaginator:
|
440
440
|
"""
|
@@ -444,8 +444,10 @@ class ResourceExplorerClient(BaseClient):
|
|
444
444
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
445
445
|
"""
|
446
446
|
|
447
|
-
@overload
|
448
|
-
def get_paginator(
|
447
|
+
@overload # type: ignore[override]
|
448
|
+
def get_paginator( # type: ignore[override]
|
449
|
+
self, operation_name: Literal["list_views"]
|
450
|
+
) -> ListViewsPaginator:
|
449
451
|
"""
|
450
452
|
Create a paginator for an operation.
|
451
453
|
|
@@ -453,8 +455,10 @@ class ResourceExplorerClient(BaseClient):
|
|
453
455
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
454
456
|
"""
|
455
457
|
|
456
|
-
@overload
|
457
|
-
def get_paginator(
|
458
|
+
@overload # type: ignore[override]
|
459
|
+
def get_paginator( # type: ignore[override]
|
460
|
+
self, operation_name: Literal["search"]
|
461
|
+
) -> SearchPaginator:
|
458
462
|
"""
|
459
463
|
Create a paginator for an operation.
|
460
464
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
|
-
Type annotations for resource-explorer-2 service
|
2
|
+
Type annotations for resource-explorer-2 service Client.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
13
13
|
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
14
14
|
```
|
15
15
|
|
16
|
-
Copyright
|
16
|
+
Copyright 2025 Vlad Emelianov
|
17
17
|
"""
|
18
18
|
|
19
|
+
from __future__ import annotations
|
20
|
+
|
19
21
|
import sys
|
20
|
-
from typing import Any,
|
22
|
+
from typing import Any, overload
|
21
23
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
23
27
|
|
24
28
|
from .paginator import (
|
25
29
|
ListIndexesForMembersPaginator,
|
@@ -75,6 +79,12 @@ from .type_defs import (
|
|
75
79
|
UpdateViewOutputTypeDef,
|
76
80
|
)
|
77
81
|
|
82
|
+
if sys.version_info >= (3, 9):
|
83
|
+
from builtins import dict as Dict
|
84
|
+
from builtins import type as Type
|
85
|
+
from collections.abc import Mapping
|
86
|
+
else:
|
87
|
+
from typing import Dict, Mapping, Type
|
78
88
|
if sys.version_info >= (3, 12):
|
79
89
|
from typing import Literal, Unpack
|
80
90
|
else:
|
@@ -82,14 +92,7 @@ else:
|
|
82
92
|
|
83
93
|
__all__ = ("ResourceExplorerClient",)
|
84
94
|
|
85
|
-
class
|
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:
|
95
|
+
class Exceptions(BaseClientExceptions):
|
93
96
|
AccessDeniedException: Type[BotocoreClientError]
|
94
97
|
ClientError: Type[BotocoreClientError]
|
95
98
|
ConflictException: Type[BotocoreClientError]
|
@@ -135,12 +138,6 @@ class ResourceExplorerClient(BaseClient):
|
|
135
138
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#generate_presigned_url)
|
136
139
|
"""
|
137
140
|
|
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
141
|
def associate_default_view(
|
145
142
|
self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
|
146
143
|
) -> AssociateDefaultViewOutputTypeDef:
|
@@ -389,8 +386,8 @@ class ResourceExplorerClient(BaseClient):
|
|
389
386
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_view)
|
390
387
|
"""
|
391
388
|
|
392
|
-
@overload
|
393
|
-
def get_paginator(
|
389
|
+
@overload # type: ignore[override]
|
390
|
+
def get_paginator( # type: ignore[override]
|
394
391
|
self, operation_name: Literal["list_indexes_for_members"]
|
395
392
|
) -> ListIndexesForMembersPaginator:
|
396
393
|
"""
|
@@ -400,8 +397,10 @@ class ResourceExplorerClient(BaseClient):
|
|
400
397
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
401
398
|
"""
|
402
399
|
|
403
|
-
@overload
|
404
|
-
def get_paginator(
|
400
|
+
@overload # type: ignore[override]
|
401
|
+
def get_paginator( # type: ignore[override]
|
402
|
+
self, operation_name: Literal["list_indexes"]
|
403
|
+
) -> ListIndexesPaginator:
|
405
404
|
"""
|
406
405
|
Create a paginator for an operation.
|
407
406
|
|
@@ -409,8 +408,8 @@ class ResourceExplorerClient(BaseClient):
|
|
409
408
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
410
409
|
"""
|
411
410
|
|
412
|
-
@overload
|
413
|
-
def get_paginator(
|
411
|
+
@overload # type: ignore[override]
|
412
|
+
def get_paginator( # type: ignore[override]
|
414
413
|
self, operation_name: Literal["list_managed_views"]
|
415
414
|
) -> ListManagedViewsPaginator:
|
416
415
|
"""
|
@@ -420,8 +419,10 @@ class ResourceExplorerClient(BaseClient):
|
|
420
419
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
421
420
|
"""
|
422
421
|
|
423
|
-
@overload
|
424
|
-
def get_paginator(
|
422
|
+
@overload # type: ignore[override]
|
423
|
+
def get_paginator( # type: ignore[override]
|
424
|
+
self, operation_name: Literal["list_resources"]
|
425
|
+
) -> ListResourcesPaginator:
|
425
426
|
"""
|
426
427
|
Create a paginator for an operation.
|
427
428
|
|
@@ -429,8 +430,8 @@ class ResourceExplorerClient(BaseClient):
|
|
429
430
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
430
431
|
"""
|
431
432
|
|
432
|
-
@overload
|
433
|
-
def get_paginator(
|
433
|
+
@overload # type: ignore[override]
|
434
|
+
def get_paginator( # type: ignore[override]
|
434
435
|
self, operation_name: Literal["list_supported_resource_types"]
|
435
436
|
) -> ListSupportedResourceTypesPaginator:
|
436
437
|
"""
|
@@ -440,8 +441,10 @@ class ResourceExplorerClient(BaseClient):
|
|
440
441
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
441
442
|
"""
|
442
443
|
|
443
|
-
@overload
|
444
|
-
def get_paginator(
|
444
|
+
@overload # type: ignore[override]
|
445
|
+
def get_paginator( # type: ignore[override]
|
446
|
+
self, operation_name: Literal["list_views"]
|
447
|
+
) -> ListViewsPaginator:
|
445
448
|
"""
|
446
449
|
Create a paginator for an operation.
|
447
450
|
|
@@ -449,8 +452,10 @@ class ResourceExplorerClient(BaseClient):
|
|
449
452
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
450
453
|
"""
|
451
454
|
|
452
|
-
@overload
|
453
|
-
def get_paginator(
|
455
|
+
@overload # type: ignore[override]
|
456
|
+
def get_paginator( # type: ignore[override]
|
457
|
+
self, operation_name: Literal["search"]
|
458
|
+
) -> SearchPaginator:
|
454
459
|
"""
|
455
460
|
Create a paginator for an operation.
|
456
461
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Type annotations for resource-explorer-2 service literal definitions.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/literals/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
11
11
|
data: AWSServiceAccessStatusType = "DISABLED"
|
12
12
|
```
|
13
13
|
|
14
|
-
Copyright
|
14
|
+
Copyright 2025 Vlad Emelianov
|
15
15
|
"""
|
16
16
|
|
17
17
|
import sys
|
@@ -87,12 +87,15 @@ ServiceName = Literal[
|
|
87
87
|
"b2bi",
|
88
88
|
"backup",
|
89
89
|
"backup-gateway",
|
90
|
+
"backupsearch",
|
90
91
|
"batch",
|
91
92
|
"bcm-data-exports",
|
92
93
|
"bcm-pricing-calculator",
|
93
94
|
"bedrock",
|
94
95
|
"bedrock-agent",
|
95
96
|
"bedrock-agent-runtime",
|
97
|
+
"bedrock-data-automation",
|
98
|
+
"bedrock-data-automation-runtime",
|
96
99
|
"bedrock-runtime",
|
97
100
|
"billing",
|
98
101
|
"billingconductor",
|
@@ -170,6 +173,7 @@ ServiceName = Literal[
|
|
170
173
|
"drs",
|
171
174
|
"ds",
|
172
175
|
"ds-data",
|
176
|
+
"dsql",
|
173
177
|
"dynamodb",
|
174
178
|
"dynamodbstreams",
|
175
179
|
"ebs",
|
@@ -226,6 +230,7 @@ ServiceName = Literal[
|
|
226
230
|
"inspector-scan",
|
227
231
|
"inspector2",
|
228
232
|
"internetmonitor",
|
233
|
+
"invoicing",
|
229
234
|
"iot",
|
230
235
|
"iot-data",
|
231
236
|
"iot-jobs-data",
|
@@ -312,6 +317,7 @@ ServiceName = Literal[
|
|
312
317
|
"neptune-graph",
|
313
318
|
"neptunedata",
|
314
319
|
"network-firewall",
|
320
|
+
"networkflowmonitor",
|
315
321
|
"networkmanager",
|
316
322
|
"networkmonitor",
|
317
323
|
"notifications",
|
@@ -378,6 +384,7 @@ ServiceName = Literal[
|
|
378
384
|
"s3",
|
379
385
|
"s3control",
|
380
386
|
"s3outposts",
|
387
|
+
"s3tables",
|
381
388
|
"sagemaker",
|
382
389
|
"sagemaker-a2i-runtime",
|
383
390
|
"sagemaker-edge",
|
@@ -390,6 +397,7 @@ ServiceName = Literal[
|
|
390
397
|
"schemas",
|
391
398
|
"sdb",
|
392
399
|
"secretsmanager",
|
400
|
+
"security-ir",
|
393
401
|
"securityhub",
|
394
402
|
"securitylake",
|
395
403
|
"serverlessrepo",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Type annotations for resource-explorer-2 service literal definitions.
|
3
3
|
|
4
|
-
[
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/literals/)
|
5
5
|
|
6
6
|
Usage::
|
7
7
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
11
11
|
data: AWSServiceAccessStatusType = "DISABLED"
|
12
12
|
```
|
13
13
|
|
14
|
-
Copyright
|
14
|
+
Copyright 2025 Vlad Emelianov
|
15
15
|
"""
|
16
16
|
|
17
17
|
import sys
|
@@ -85,12 +85,15 @@ ServiceName = Literal[
|
|
85
85
|
"b2bi",
|
86
86
|
"backup",
|
87
87
|
"backup-gateway",
|
88
|
+
"backupsearch",
|
88
89
|
"batch",
|
89
90
|
"bcm-data-exports",
|
90
91
|
"bcm-pricing-calculator",
|
91
92
|
"bedrock",
|
92
93
|
"bedrock-agent",
|
93
94
|
"bedrock-agent-runtime",
|
95
|
+
"bedrock-data-automation",
|
96
|
+
"bedrock-data-automation-runtime",
|
94
97
|
"bedrock-runtime",
|
95
98
|
"billing",
|
96
99
|
"billingconductor",
|
@@ -168,6 +171,7 @@ ServiceName = Literal[
|
|
168
171
|
"drs",
|
169
172
|
"ds",
|
170
173
|
"ds-data",
|
174
|
+
"dsql",
|
171
175
|
"dynamodb",
|
172
176
|
"dynamodbstreams",
|
173
177
|
"ebs",
|
@@ -224,6 +228,7 @@ ServiceName = Literal[
|
|
224
228
|
"inspector-scan",
|
225
229
|
"inspector2",
|
226
230
|
"internetmonitor",
|
231
|
+
"invoicing",
|
227
232
|
"iot",
|
228
233
|
"iot-data",
|
229
234
|
"iot-jobs-data",
|
@@ -310,6 +315,7 @@ ServiceName = Literal[
|
|
310
315
|
"neptune-graph",
|
311
316
|
"neptunedata",
|
312
317
|
"network-firewall",
|
318
|
+
"networkflowmonitor",
|
313
319
|
"networkmanager",
|
314
320
|
"networkmonitor",
|
315
321
|
"notifications",
|
@@ -376,6 +382,7 @@ ServiceName = Literal[
|
|
376
382
|
"s3",
|
377
383
|
"s3control",
|
378
384
|
"s3outposts",
|
385
|
+
"s3tables",
|
379
386
|
"sagemaker",
|
380
387
|
"sagemaker-a2i-runtime",
|
381
388
|
"sagemaker-edge",
|
@@ -388,6 +395,7 @@ ServiceName = Literal[
|
|
388
395
|
"schemas",
|
389
396
|
"sdb",
|
390
397
|
"secretsmanager",
|
398
|
+
"security-ir",
|
391
399
|
"securityhub",
|
392
400
|
"securitylake",
|
393
401
|
"serverlessrepo",
|