Struct rusoto_iot::StreamInfo[][src]

pub struct StreamInfo {
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub files: Option<Vec<StreamFile>>,
    pub last_updated_at: Option<f64>,
    pub role_arn: Option<String>,
    pub stream_arn: Option<String>,
    pub stream_id: Option<String>,
    pub stream_version: Option<i64>,
}

Information about a stream.

Fields

The date when the stream was created.

The description of the stream.

The files to stream.

The date when the stream was last updated.

An IAM role AWS IoT assumes to access your S3 files.

The stream ARN.

The stream ID.

The stream version.

Trait Implementations

impl Default for StreamInfo
[src]

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

impl Debug for StreamInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for StreamInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StreamInfo
[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

impl Send for StreamInfo

impl Sync for StreamInfo