[][src]Struct rusoto_iotanalytics::DatasetAction

pub struct DatasetAction {
    pub action_name: Option<String>,
    pub container_action: Option<ContainerDatasetAction>,
    pub query_action: Option<SqlQueryDatasetAction>,
}

A "DatasetAction" object that specifies how data set contents are automatically created.

Fields

action_name: Option<String>

The name of the data set action by which data set contents are automatically created.

container_action: Option<ContainerDatasetAction>

Information which allows the system to run a containerized application in order to create the data set contents. The application must be in a Docker container along with any needed support libraries.

query_action: Option<SqlQueryDatasetAction>

An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.

Trait Implementations

impl Clone for DatasetAction[src]

impl Debug for DatasetAction[src]

impl Default for DatasetAction[src]

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

impl PartialEq<DatasetAction> for DatasetAction[src]

impl Serialize for DatasetAction[src]

impl StructuralPartialEq for DatasetAction[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.