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 45c3735 commit 957b4b9Copy full SHA for 957b4b9
1 file changed
localstack-core/localstack/services/sts/models.py
@@ -17,12 +17,12 @@
17
18
19
@dataclass
20
-class SingleValuedContextKey:
+class SingleValuedContextValue:
21
value: str
22
23
24
25
-class MultiValuedContextKey:
+class MultiValuedContextValue:
26
value: list[str]
27
28
@@ -46,7 +46,7 @@ class TemporaryCredentials:
46
# list of lowercase transitive tag keys
47
transitive_tags: list[str] = field(default_factory=list)
48
# other stored context variables
49
- iam_context: dict[str, SingleValuedContextKey | MultiValuedContextKey] = field(
+ iam_context: dict[str, SingleValuedContextValue | MultiValuedContextValue] = field(
50
default_factory=dict
51
)
52
0 commit comments