Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@
'ABORTED',
]

CurrencyType = Literal[
'iCredit'
]


class AnalysisPriceDict(TypedDict):
amount: float
currency: CurrencyType


class AnalysisUsageDict(TypedDict):
price: AnalysisPriceDict


class EngineParameters(TypedDict):
# Launch Configurations
Expand Down Expand Up @@ -41,7 +54,6 @@ class WESPatchRequest(TypedDict):
errorMessageUri: NotRequired[str]
stepsLaunchExecutionArn: NotRequired[str]


class WESResponse(TypedDict):
"""WES response object."""
id: str
Expand Down
Loading