WaitTime¶
-
class
aws_cdk.aws_stepfunctions.
WaitTime
(*args: Any, **kwargs)¶ Bases:
object
Represents the Wait state which delays a state machine from continuing for a specified time.
Static Methods
-
classmethod
duration
(duration)¶ Wait a fixed amount of time.
-
classmethod
seconds_path
(path)¶ Wait for a number of seconds stored in the state object.
- Parameters
path (
str
) –
Example:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826 $.wait_seconds
- Return type
-
classmethod
timestamp
(timestamp)¶ Wait until the given ISO8601 timestamp.
- Parameters
timestamp (
str
) –
Example:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826 2016 - 03 - 14T01:5900Z
- Return type
-
classmethod