[][src]Struct rusoto_iotanalytics::Variable

pub struct Variable {
    pub dataset_content_version_value: Option<DatasetContentVersionValue>,
    pub double_value: Option<f64>,
    pub name: String,
    pub output_file_uri_value: Option<OutputFileUriValue>,
    pub string_value: Option<String>,
}

An instance of a variable to be passed to the "containerAction" execution. Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".

Fields

dataset_content_version_value: Option<DatasetContentVersionValue>

The value of the variable as a structure that specifies a data set content version.

double_value: Option<f64>

The value of the variable as a double (numeric).

name: String

The name of the variable.

output_file_uri_value: Option<OutputFileUriValue>

The value of the variable as a structure that specifies an output file URI.

string_value: Option<String>

The value of the variable as a string.

Trait Implementations

impl Clone for Variable[src]

impl Debug for Variable[src]

impl Default for Variable[src]

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

impl PartialEq<Variable> for Variable[src]

impl Serialize for Variable[src]

impl StructuralPartialEq for Variable[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.