types-boto3-medialive 1.40.57__py3-none-any.whl → 1.40.74__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_medialive/__main__.py +4 -4
- types_boto3_medialive/client.py +23 -28
- types_boto3_medialive/client.pyi +23 -28
- types_boto3_medialive/literals.py +0 -7
- types_boto3_medialive/literals.pyi +0 -7
- types_boto3_medialive/type_defs.py +300 -305
- types_boto3_medialive/type_defs.pyi +300 -305
- types_boto3_medialive/version.py +1 -1
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/METADATA +11 -25
- types_boto3_medialive-1.40.74.dist-info/RECORD +20 -0
- types_boto3_medialive-1.40.57.dist-info/RECORD +0 -20
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/WHEEL +0 -0
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_medialive-1.40.57.dist-info → types_boto3_medialive-1.40.74.dist-info}/top_level.txt +0 -0
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 MediaLive 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 MediaLive 1.40.74\n"
|
|
16
|
+
"Version: 1.40.74\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_medialive//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/medialive.html#medialive\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.74\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_medialive/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -303,12 +304,6 @@ from .waiter import (
|
|
|
303
304
|
SignalMapUpdatedWaiter,
|
|
304
305
|
)
|
|
305
306
|
|
|
306
|
-
if sys.version_info >= (3, 9):
|
|
307
|
-
from builtins import dict as Dict
|
|
308
|
-
from builtins import type as Type
|
|
309
|
-
from collections.abc import Mapping
|
|
310
|
-
else:
|
|
311
|
-
from typing import Dict, Mapping, Type
|
|
312
307
|
if sys.version_info >= (3, 12):
|
|
313
308
|
from typing import Literal, Unpack
|
|
314
309
|
else:
|
|
@@ -319,16 +314,16 @@ __all__ = ("MediaLiveClient",)
|
|
|
319
314
|
|
|
320
315
|
|
|
321
316
|
class Exceptions(BaseClientExceptions):
|
|
322
|
-
BadGatewayException:
|
|
323
|
-
BadRequestException:
|
|
324
|
-
ClientError:
|
|
325
|
-
ConflictException:
|
|
326
|
-
ForbiddenException:
|
|
327
|
-
GatewayTimeoutException:
|
|
328
|
-
InternalServerErrorException:
|
|
329
|
-
NotFoundException:
|
|
330
|
-
TooManyRequestsException:
|
|
331
|
-
UnprocessableEntityException:
|
|
317
|
+
BadGatewayException: type[BotocoreClientError]
|
|
318
|
+
BadRequestException: type[BotocoreClientError]
|
|
319
|
+
ClientError: type[BotocoreClientError]
|
|
320
|
+
ConflictException: type[BotocoreClientError]
|
|
321
|
+
ForbiddenException: type[BotocoreClientError]
|
|
322
|
+
GatewayTimeoutException: type[BotocoreClientError]
|
|
323
|
+
InternalServerErrorException: type[BotocoreClientError]
|
|
324
|
+
NotFoundException: type[BotocoreClientError]
|
|
325
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
326
|
+
UnprocessableEntityException: type[BotocoreClientError]
|
|
332
327
|
|
|
333
328
|
|
|
334
329
|
class MediaLiveClient(BaseClient):
|
|
@@ -368,7 +363,7 @@ class MediaLiveClient(BaseClient):
|
|
|
368
363
|
|
|
369
364
|
def accept_input_device_transfer(
|
|
370
365
|
self, **kwargs: Unpack[AcceptInputDeviceTransferRequestTypeDef]
|
|
371
|
-
) ->
|
|
366
|
+
) -> dict[str, Any]:
|
|
372
367
|
"""
|
|
373
368
|
Accept an incoming input device transfer.
|
|
374
369
|
|
|
@@ -414,7 +409,7 @@ class MediaLiveClient(BaseClient):
|
|
|
414
409
|
|
|
415
410
|
def cancel_input_device_transfer(
|
|
416
411
|
self, **kwargs: Unpack[CancelInputDeviceTransferRequestTypeDef]
|
|
417
|
-
) ->
|
|
412
|
+
) -> dict[str, Any]:
|
|
418
413
|
"""
|
|
419
414
|
Cancel an input device transfer that you have requested.
|
|
420
415
|
|
|
@@ -422,7 +417,7 @@ class MediaLiveClient(BaseClient):
|
|
|
422
417
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#cancel_input_device_transfer)
|
|
423
418
|
"""
|
|
424
419
|
|
|
425
|
-
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) ->
|
|
420
|
+
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
426
421
|
"""
|
|
427
422
|
Send a request to claim an AWS Elemental device that you have purchased from a
|
|
428
423
|
third-party vendor.
|
|
@@ -511,7 +506,7 @@ class MediaLiveClient(BaseClient):
|
|
|
511
506
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_channel)
|
|
512
507
|
"""
|
|
513
508
|
|
|
514
|
-
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) ->
|
|
509
|
+
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) -> dict[str, Any]:
|
|
515
510
|
"""
|
|
516
511
|
Deletes the input end point.
|
|
517
512
|
|
|
@@ -521,7 +516,7 @@ class MediaLiveClient(BaseClient):
|
|
|
521
516
|
|
|
522
517
|
def delete_input_security_group(
|
|
523
518
|
self, **kwargs: Unpack[DeleteInputSecurityGroupRequestTypeDef]
|
|
524
|
-
) ->
|
|
519
|
+
) -> dict[str, Any]:
|
|
525
520
|
"""
|
|
526
521
|
Deletes an Input Security Group.
|
|
527
522
|
|
|
@@ -559,7 +554,7 @@ class MediaLiveClient(BaseClient):
|
|
|
559
554
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_reservation)
|
|
560
555
|
"""
|
|
561
556
|
|
|
562
|
-
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) ->
|
|
557
|
+
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) -> dict[str, Any]:
|
|
563
558
|
"""
|
|
564
559
|
Delete all schedule actions on a channel.
|
|
565
560
|
|
|
@@ -805,7 +800,7 @@ class MediaLiveClient(BaseClient):
|
|
|
805
800
|
|
|
806
801
|
def reboot_input_device(
|
|
807
802
|
self, **kwargs: Unpack[RebootInputDeviceRequestTypeDef]
|
|
808
|
-
) ->
|
|
803
|
+
) -> dict[str, Any]:
|
|
809
804
|
"""
|
|
810
805
|
Send a reboot command to the specified input device.
|
|
811
806
|
|
|
@@ -815,7 +810,7 @@ class MediaLiveClient(BaseClient):
|
|
|
815
810
|
|
|
816
811
|
def reject_input_device_transfer(
|
|
817
812
|
self, **kwargs: Unpack[RejectInputDeviceTransferRequestTypeDef]
|
|
818
|
-
) ->
|
|
813
|
+
) -> dict[str, Any]:
|
|
819
814
|
"""
|
|
820
815
|
Reject the transfer of the specified input device to your AWS account.
|
|
821
816
|
|
|
@@ -835,7 +830,7 @@ class MediaLiveClient(BaseClient):
|
|
|
835
830
|
|
|
836
831
|
def start_input_device(
|
|
837
832
|
self, **kwargs: Unpack[StartInputDeviceRequestTypeDef]
|
|
838
|
-
) ->
|
|
833
|
+
) -> dict[str, Any]:
|
|
839
834
|
"""
|
|
840
835
|
Start an input device that is attached to a MediaConnect flow.
|
|
841
836
|
|
|
@@ -845,7 +840,7 @@ class MediaLiveClient(BaseClient):
|
|
|
845
840
|
|
|
846
841
|
def start_input_device_maintenance_window(
|
|
847
842
|
self, **kwargs: Unpack[StartInputDeviceMaintenanceWindowRequestTypeDef]
|
|
848
|
-
) ->
|
|
843
|
+
) -> dict[str, Any]:
|
|
849
844
|
"""
|
|
850
845
|
Start a maintenance window for the specified input device.
|
|
851
846
|
|
|
@@ -873,7 +868,7 @@ class MediaLiveClient(BaseClient):
|
|
|
873
868
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#stop_channel)
|
|
874
869
|
"""
|
|
875
870
|
|
|
876
|
-
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) ->
|
|
871
|
+
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
877
872
|
"""
|
|
878
873
|
Stop an input device that is attached to a MediaConnect flow.
|
|
879
874
|
|
|
@@ -893,7 +888,7 @@ class MediaLiveClient(BaseClient):
|
|
|
893
888
|
|
|
894
889
|
def transfer_input_device(
|
|
895
890
|
self, **kwargs: Unpack[TransferInputDeviceRequestTypeDef]
|
|
896
|
-
) ->
|
|
891
|
+
) -> dict[str, Any]:
|
|
897
892
|
"""
|
|
898
893
|
Start an input device transfer to another AWS account.
|
|
899
894
|
|
types_boto3_medialive/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -303,12 +304,6 @@ from .waiter import (
|
|
|
303
304
|
SignalMapUpdatedWaiter,
|
|
304
305
|
)
|
|
305
306
|
|
|
306
|
-
if sys.version_info >= (3, 9):
|
|
307
|
-
from builtins import dict as Dict
|
|
308
|
-
from builtins import type as Type
|
|
309
|
-
from collections.abc import Mapping
|
|
310
|
-
else:
|
|
311
|
-
from typing import Dict, Mapping, Type
|
|
312
307
|
if sys.version_info >= (3, 12):
|
|
313
308
|
from typing import Literal, Unpack
|
|
314
309
|
else:
|
|
@@ -317,16 +312,16 @@ else:
|
|
|
317
312
|
__all__ = ("MediaLiveClient",)
|
|
318
313
|
|
|
319
314
|
class Exceptions(BaseClientExceptions):
|
|
320
|
-
BadGatewayException:
|
|
321
|
-
BadRequestException:
|
|
322
|
-
ClientError:
|
|
323
|
-
ConflictException:
|
|
324
|
-
ForbiddenException:
|
|
325
|
-
GatewayTimeoutException:
|
|
326
|
-
InternalServerErrorException:
|
|
327
|
-
NotFoundException:
|
|
328
|
-
TooManyRequestsException:
|
|
329
|
-
UnprocessableEntityException:
|
|
315
|
+
BadGatewayException: type[BotocoreClientError]
|
|
316
|
+
BadRequestException: type[BotocoreClientError]
|
|
317
|
+
ClientError: type[BotocoreClientError]
|
|
318
|
+
ConflictException: type[BotocoreClientError]
|
|
319
|
+
ForbiddenException: type[BotocoreClientError]
|
|
320
|
+
GatewayTimeoutException: type[BotocoreClientError]
|
|
321
|
+
InternalServerErrorException: type[BotocoreClientError]
|
|
322
|
+
NotFoundException: type[BotocoreClientError]
|
|
323
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
324
|
+
UnprocessableEntityException: type[BotocoreClientError]
|
|
330
325
|
|
|
331
326
|
class MediaLiveClient(BaseClient):
|
|
332
327
|
"""
|
|
@@ -365,7 +360,7 @@ class MediaLiveClient(BaseClient):
|
|
|
365
360
|
|
|
366
361
|
def accept_input_device_transfer(
|
|
367
362
|
self, **kwargs: Unpack[AcceptInputDeviceTransferRequestTypeDef]
|
|
368
|
-
) ->
|
|
363
|
+
) -> dict[str, Any]:
|
|
369
364
|
"""
|
|
370
365
|
Accept an incoming input device transfer.
|
|
371
366
|
|
|
@@ -411,7 +406,7 @@ class MediaLiveClient(BaseClient):
|
|
|
411
406
|
|
|
412
407
|
def cancel_input_device_transfer(
|
|
413
408
|
self, **kwargs: Unpack[CancelInputDeviceTransferRequestTypeDef]
|
|
414
|
-
) ->
|
|
409
|
+
) -> dict[str, Any]:
|
|
415
410
|
"""
|
|
416
411
|
Cancel an input device transfer that you have requested.
|
|
417
412
|
|
|
@@ -419,7 +414,7 @@ class MediaLiveClient(BaseClient):
|
|
|
419
414
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#cancel_input_device_transfer)
|
|
420
415
|
"""
|
|
421
416
|
|
|
422
|
-
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) ->
|
|
417
|
+
def claim_device(self, **kwargs: Unpack[ClaimDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
423
418
|
"""
|
|
424
419
|
Send a request to claim an AWS Elemental device that you have purchased from a
|
|
425
420
|
third-party vendor.
|
|
@@ -508,7 +503,7 @@ class MediaLiveClient(BaseClient):
|
|
|
508
503
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_channel)
|
|
509
504
|
"""
|
|
510
505
|
|
|
511
|
-
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) ->
|
|
506
|
+
def delete_input(self, **kwargs: Unpack[DeleteInputRequestTypeDef]) -> dict[str, Any]:
|
|
512
507
|
"""
|
|
513
508
|
Deletes the input end point.
|
|
514
509
|
|
|
@@ -518,7 +513,7 @@ class MediaLiveClient(BaseClient):
|
|
|
518
513
|
|
|
519
514
|
def delete_input_security_group(
|
|
520
515
|
self, **kwargs: Unpack[DeleteInputSecurityGroupRequestTypeDef]
|
|
521
|
-
) ->
|
|
516
|
+
) -> dict[str, Any]:
|
|
522
517
|
"""
|
|
523
518
|
Deletes an Input Security Group.
|
|
524
519
|
|
|
@@ -556,7 +551,7 @@ class MediaLiveClient(BaseClient):
|
|
|
556
551
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#delete_reservation)
|
|
557
552
|
"""
|
|
558
553
|
|
|
559
|
-
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) ->
|
|
554
|
+
def delete_schedule(self, **kwargs: Unpack[DeleteScheduleRequestTypeDef]) -> dict[str, Any]:
|
|
560
555
|
"""
|
|
561
556
|
Delete all schedule actions on a channel.
|
|
562
557
|
|
|
@@ -802,7 +797,7 @@ class MediaLiveClient(BaseClient):
|
|
|
802
797
|
|
|
803
798
|
def reboot_input_device(
|
|
804
799
|
self, **kwargs: Unpack[RebootInputDeviceRequestTypeDef]
|
|
805
|
-
) ->
|
|
800
|
+
) -> dict[str, Any]:
|
|
806
801
|
"""
|
|
807
802
|
Send a reboot command to the specified input device.
|
|
808
803
|
|
|
@@ -812,7 +807,7 @@ class MediaLiveClient(BaseClient):
|
|
|
812
807
|
|
|
813
808
|
def reject_input_device_transfer(
|
|
814
809
|
self, **kwargs: Unpack[RejectInputDeviceTransferRequestTypeDef]
|
|
815
|
-
) ->
|
|
810
|
+
) -> dict[str, Any]:
|
|
816
811
|
"""
|
|
817
812
|
Reject the transfer of the specified input device to your AWS account.
|
|
818
813
|
|
|
@@ -832,7 +827,7 @@ class MediaLiveClient(BaseClient):
|
|
|
832
827
|
|
|
833
828
|
def start_input_device(
|
|
834
829
|
self, **kwargs: Unpack[StartInputDeviceRequestTypeDef]
|
|
835
|
-
) ->
|
|
830
|
+
) -> dict[str, Any]:
|
|
836
831
|
"""
|
|
837
832
|
Start an input device that is attached to a MediaConnect flow.
|
|
838
833
|
|
|
@@ -842,7 +837,7 @@ class MediaLiveClient(BaseClient):
|
|
|
842
837
|
|
|
843
838
|
def start_input_device_maintenance_window(
|
|
844
839
|
self, **kwargs: Unpack[StartInputDeviceMaintenanceWindowRequestTypeDef]
|
|
845
|
-
) ->
|
|
840
|
+
) -> dict[str, Any]:
|
|
846
841
|
"""
|
|
847
842
|
Start a maintenance window for the specified input device.
|
|
848
843
|
|
|
@@ -870,7 +865,7 @@ class MediaLiveClient(BaseClient):
|
|
|
870
865
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_medialive/client/#stop_channel)
|
|
871
866
|
"""
|
|
872
867
|
|
|
873
|
-
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) ->
|
|
868
|
+
def stop_input_device(self, **kwargs: Unpack[StopInputDeviceRequestTypeDef]) -> dict[str, Any]:
|
|
874
869
|
"""
|
|
875
870
|
Stop an input device that is attached to a MediaConnect flow.
|
|
876
871
|
|
|
@@ -890,7 +885,7 @@ class MediaLiveClient(BaseClient):
|
|
|
890
885
|
|
|
891
886
|
def transfer_input_device(
|
|
892
887
|
self, **kwargs: Unpack[TransferInputDeviceRequestTypeDef]
|
|
893
|
-
) ->
|
|
888
|
+
) -> dict[str, Any]:
|
|
894
889
|
"""
|
|
895
890
|
Start an input device transfer to another AWS account.
|
|
896
891
|
|
|
@@ -1141,7 +1141,6 @@ ServiceName = Literal[
|
|
|
1141
1141
|
"apprunner",
|
|
1142
1142
|
"appstream",
|
|
1143
1143
|
"appsync",
|
|
1144
|
-
"apptest",
|
|
1145
1144
|
"arc-region-switch",
|
|
1146
1145
|
"arc-zonal-shift",
|
|
1147
1146
|
"artifact",
|
|
@@ -1309,7 +1308,6 @@ ServiceName = Literal[
|
|
|
1309
1308
|
"iotdeviceadvisor",
|
|
1310
1309
|
"iotevents",
|
|
1311
1310
|
"iotevents-data",
|
|
1312
|
-
"iotfleethub",
|
|
1313
1311
|
"iotfleetwise",
|
|
1314
1312
|
"iotsecuretunneling",
|
|
1315
1313
|
"iotsitewise",
|
|
@@ -1348,8 +1346,6 @@ ServiceName = Literal[
|
|
|
1348
1346
|
"location",
|
|
1349
1347
|
"logs",
|
|
1350
1348
|
"lookoutequipment",
|
|
1351
|
-
"lookoutmetrics",
|
|
1352
|
-
"lookoutvision",
|
|
1353
1349
|
"m2",
|
|
1354
1350
|
"machinelearning",
|
|
1355
1351
|
"macie2",
|
|
@@ -1424,8 +1420,6 @@ ServiceName = Literal[
|
|
|
1424
1420
|
"qapps",
|
|
1425
1421
|
"qbusiness",
|
|
1426
1422
|
"qconnect",
|
|
1427
|
-
"qldb",
|
|
1428
|
-
"qldb-session",
|
|
1429
1423
|
"quicksight",
|
|
1430
1424
|
"ram",
|
|
1431
1425
|
"rbin",
|
|
@@ -1440,7 +1434,6 @@ ServiceName = Literal[
|
|
|
1440
1434
|
"resource-explorer-2",
|
|
1441
1435
|
"resource-groups",
|
|
1442
1436
|
"resourcegroupstaggingapi",
|
|
1443
|
-
"robomaker",
|
|
1444
1437
|
"rolesanywhere",
|
|
1445
1438
|
"route53",
|
|
1446
1439
|
"route53-recovery-cluster",
|
|
@@ -1139,7 +1139,6 @@ ServiceName = Literal[
|
|
|
1139
1139
|
"apprunner",
|
|
1140
1140
|
"appstream",
|
|
1141
1141
|
"appsync",
|
|
1142
|
-
"apptest",
|
|
1143
1142
|
"arc-region-switch",
|
|
1144
1143
|
"arc-zonal-shift",
|
|
1145
1144
|
"artifact",
|
|
@@ -1307,7 +1306,6 @@ ServiceName = Literal[
|
|
|
1307
1306
|
"iotdeviceadvisor",
|
|
1308
1307
|
"iotevents",
|
|
1309
1308
|
"iotevents-data",
|
|
1310
|
-
"iotfleethub",
|
|
1311
1309
|
"iotfleetwise",
|
|
1312
1310
|
"iotsecuretunneling",
|
|
1313
1311
|
"iotsitewise",
|
|
@@ -1346,8 +1344,6 @@ ServiceName = Literal[
|
|
|
1346
1344
|
"location",
|
|
1347
1345
|
"logs",
|
|
1348
1346
|
"lookoutequipment",
|
|
1349
|
-
"lookoutmetrics",
|
|
1350
|
-
"lookoutvision",
|
|
1351
1347
|
"m2",
|
|
1352
1348
|
"machinelearning",
|
|
1353
1349
|
"macie2",
|
|
@@ -1422,8 +1418,6 @@ ServiceName = Literal[
|
|
|
1422
1418
|
"qapps",
|
|
1423
1419
|
"qbusiness",
|
|
1424
1420
|
"qconnect",
|
|
1425
|
-
"qldb",
|
|
1426
|
-
"qldb-session",
|
|
1427
1421
|
"quicksight",
|
|
1428
1422
|
"ram",
|
|
1429
1423
|
"rbin",
|
|
@@ -1438,7 +1432,6 @@ ServiceName = Literal[
|
|
|
1438
1432
|
"resource-explorer-2",
|
|
1439
1433
|
"resource-groups",
|
|
1440
1434
|
"resourcegroupstaggingapi",
|
|
1441
|
-
"robomaker",
|
|
1442
1435
|
"rolesanywhere",
|
|
1443
1436
|
"route53",
|
|
1444
1437
|
"route53-recovery-cluster",
|