8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05f5e80 commit 541fbcdCopy full SHA for 541fbcd
localstack-core/localstack/utils/aws/client_types.py
@@ -1,5 +1,4 @@
1
import abc
2
-from enum import StrEnum
3
from typing import TYPE_CHECKING, Union
4
5
"""
@@ -250,7 +249,7 @@ class TypedServiceClientFactory(abc.ABC):
250
249
xray: Union["XRayClient", "MetadataRequestInjector[XRayClient]"]
251
252
253
-class ServicePrincipal(StrEnum):
+class ServicePrincipal(str):
254
255
Class containing defined service principals.
256
To add to this list, please look up the correct service principal name for the service.
@@ -265,7 +264,6 @@ class ServicePrincipal(StrEnum):
265
264
266
267
apigateway = "apigateway"
268
- dms = "dms"
269
events = "events"
270
firehose = "firehose"
271
lambda_ = "lambda"
0 commit comments