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 a6df13b commit a0ca9e4Copy full SHA for a0ca9e4
localstack-core/localstack/utils/aws/client_types.py
@@ -1,4 +1,5 @@
1
import abc
2
+from enum import StrEnum
3
from typing import TYPE_CHECKING, Union
4
5
"""
@@ -249,7 +250,7 @@ class TypedServiceClientFactory(abc.ABC):
249
250
xray: Union["XRayClient", "MetadataRequestInjector[XRayClient]"]
251
252
-class ServicePrincipal(str):
253
+class ServicePrincipal(StrEnum):
254
255
Class containing defined service principals.
256
To add to this list, please look up the correct service principal name for the service.
0 commit comments