[][src]Struct rusoto_rekognition::DescribeStreamProcessorResponse

pub struct DescribeStreamProcessorResponse {
    pub creation_timestamp: Option<f64>,
    pub input: Option<StreamProcessorInput>,
    pub last_update_timestamp: Option<f64>,
    pub name: Option<String>,
    pub output: Option<StreamProcessorOutput>,
    pub role_arn: Option<String>,
    pub settings: Option<StreamProcessorSettings>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub stream_processor_arn: Option<String>,
}

Fields

creation_timestamp: Option<f64>

Date and time the stream processor was created

input: Option<StreamProcessorInput>

Kinesis video stream that provides the source streaming video.

last_update_timestamp: Option<f64>

The time, in Unix format, the stream processor was last updated. For example, when the stream processor moves from a running state to a failed state, or when the user starts or stops the stream processor.

name: Option<String>

Name of the stream processor.

output: Option<StreamProcessorOutput>

Kinesis data stream to which Amazon Rekognition Video puts the analysis results.

role_arn: Option<String>

ARN of the IAM role that allows access to the stream processor.

settings: Option<StreamProcessorSettings>

Face recognition input parameters that are being used by the stream processor. Includes the collection to use for face recognition and the face attributes to detect.

status: Option<String>

Current status of the stream processor.

status_message: Option<String>

Detailed status message about the stream processor.

stream_processor_arn: Option<String>

ARN of the stream processor.

Trait Implementations

impl PartialEq<DescribeStreamProcessorResponse> for DescribeStreamProcessorResponse[src]

impl Default for DescribeStreamProcessorResponse[src]

impl Clone for DescribeStreamProcessorResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeStreamProcessorResponse[src]

impl<'de> Deserialize<'de> for DescribeStreamProcessorResponse[src]

Auto Trait Implementations

impl Send for DescribeStreamProcessorResponse

impl Sync for DescribeStreamProcessorResponse

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self