Struct rusoto_iot::UpdateStreamRequest[][src]

pub struct UpdateStreamRequest {
    pub description: Option<String>,
    pub files: Option<Vec<StreamFile>>,
    pub role_arn: Option<String>,
    pub stream_id: String,
}

Fields

The description of the stream.

The files associated with the stream.

An IAM role that allows the IoT service principal assumes to access your S3 files.

The stream ID.

Trait Implementations

impl Default for UpdateStreamRequest
[src]

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

impl Debug for UpdateStreamRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateStreamRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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