Struct rusoto_iot::OTAUpdateFile[][src]

pub struct OTAUpdateFile {
    pub attributes: Option<HashMap<String, String>>,
    pub code_signing: Option<CodeSigning>,
    pub file_name: Option<String>,
    pub file_source: Option<Stream>,
    pub file_version: Option<String>,
}

Describes a file to be associated with an OTA update.

Fields

A list of name/attribute pairs.

The code signing method of the file.

The name of the file.

The source of the file.

The file version.

Trait Implementations

impl Default for OTAUpdateFile
[src]

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

impl Debug for OTAUpdateFile
[src]

Formats the value using the given formatter. Read more

impl Clone for OTAUpdateFile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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