Rekognition.Client.list_stream_processors(**kwargs)¶Gets a list of stream processors that you have created with CreateStreamProcessor.
See also: AWS API Documentation
Request Syntax
response = client.list_stream_processors(
    NextToken='string',
    MaxResults=123
)
dict
Response Syntax
{
    'NextToken': 'string',
    'StreamProcessors': [
        {
            'Name': 'string',
            'Status': 'STOPPED'|'STARTING'|'RUNNING'|'FAILED'|'STOPPING'|'UPDATING'
        },
    ]
}
Response Structure
(dict) --
NextToken (string) --
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of stream processors.
StreamProcessors (list) --
List of stream processors that you have created.
(dict) --
An object that recognizes faces or labels in a streaming video. An Amazon Rekognition stream processor is created by a call to  CreateStreamProcessor. The request parameters for CreateStreamProcessor describe the Kinesis video stream source for the streaming video, face recognition parameters, and where to stream the analysis resullts.
Name (string) --
Name of the Amazon Rekognition stream processor.
Status (string) --
Current status of the Amazon Rekognition stream processor.
Exceptions
Rekognition.Client.exceptions.AccessDeniedExceptionRekognition.Client.exceptions.InternalServerErrorRekognition.Client.exceptions.ThrottlingExceptionRekognition.Client.exceptions.InvalidParameterExceptionRekognition.Client.exceptions.InvalidPaginationTokenExceptionRekognition.Client.exceptions.ProvisionedThroughputExceededException