Struct rusoto_rekognition::StreamProcessor[][src]

pub struct StreamProcessor {
    pub name: Option<String>,
    pub status: Option<String>,
}

An object that recognizes faces in a streaming video. An Amazon Rekognition stream processor is created by a call to . 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.

Fields

Name of the Amazon Rekognition stream processor.

Current status of the Amazon Rekognition stream processor.

Trait Implementations

impl Default for StreamProcessor
[src]

Returns the "default value" for a type. Read more

impl Debug for StreamProcessor
[src]

Formats the value using the given formatter. Read more

impl Clone for StreamProcessor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StreamProcessor
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations