Data
- class aws_cdk.aws_stepfunctions.Data(*args: Any, **kwargs)
Bases:
object(deprecated) Extract a field from the State Machine data that gets passed around between states.
- Deprecated:
replaced by
JsonPath- Stability:
deprecated
Attributes
- entire_payload = '${Token[TOKEN.251]}'
Static Methods
- classmethod is_json_path_string(value)
(deprecated) Determines if the indicated string is an encoded JSON path.
- Parameters:
value (
str) – string to be evaluated.- Stability:
deprecated
- Return type:
bool
- classmethod list_at(path)
(deprecated) Instead of using a literal string list, get the value from a JSON path.
- Parameters:
path (
str)- Stability:
deprecated
- Return type:
List[str]
- classmethod number_at(path)
(deprecated) Instead of using a literal number, get the value from a JSON path.
- Parameters:
path (
str)- Stability:
deprecated
- Return type:
Union[int,float]
- classmethod string_at(path)
(deprecated) Instead of using a literal string, get the value from a JSON path.
- Parameters:
path (
str)- Stability:
deprecated
- Return type:
str