search_flow_executions
(**kwargs)¶Searches for AWS IoT Things Graph workflow execution instances.
Danger
This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.
See also: AWS API Documentation
Request Syntax
response = client.search_flow_executions(
systemInstanceId='string',
flowExecutionId='string',
startTime=datetime(2015, 1, 1),
endTime=datetime(2015, 1, 1),
nextToken='string',
maxResults=123
)
[REQUIRED]
The ID of the system instance that contains the flow.
dict
Response Syntax
{
'summaries': [
{
'flowExecutionId': 'string',
'status': 'RUNNING'|'ABORTED'|'SUCCEEDED'|'FAILED',
'systemInstanceId': 'string',
'flowTemplateId': 'string',
'createdAt': datetime(2015, 1, 1),
'updatedAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
summaries (list) --
An array of objects that contain summary information about each workflow execution in the result set.
(dict) --
An object that contains summary information about a flow execution.
flowExecutionId (string) --
The ID of the flow execution.
status (string) --
The current status of the flow execution.
systemInstanceId (string) --
The ID of the system instance that contains the flow.
flowTemplateId (string) --
The ID of the flow.
createdAt (datetime) --
The date and time when the flow execution summary was created.
updatedAt (datetime) --
The date and time when the flow execution summary was last updated.
nextToken (string) --
The string to specify as nextToken
when you request the next page of results.
Exceptions
IoTThingsGraph.Client.exceptions.InvalidRequestException
IoTThingsGraph.Client.exceptions.ThrottlingException
IoTThingsGraph.Client.exceptions.InternalFailureException
IoTThingsGraph.Client.exceptions.ResourceNotFoundException