List Statements
glue_list_statements | R Documentation |
Lists statements for the session¶
Description¶
Lists statements for the session.
Usage¶
Arguments¶
SessionId
[required] The Session ID of the statements.
RequestOrigin
The origin of the request to list statements.
NextToken
A continuation token, if this is a continuation call.
Value¶
A list with the following syntax:
list(
Statements = list(
list(
Id = 123,
Code = "string",
State = "WAITING"|"RUNNING"|"AVAILABLE"|"CANCELLING"|"CANCELLED"|"ERROR",
Output = list(
Data = list(
TextPlain = "string"
),
ExecutionCount = 123,
Status = "WAITING"|"RUNNING"|"AVAILABLE"|"CANCELLING"|"CANCELLED"|"ERROR",
ErrorName = "string",
ErrorValue = "string",
Traceback = list(
"string"
)
),
Progress = 123.0,
StartedOn = 123,
CompletedOn = 123
)
),
NextToken = "string"
)