[][src]Struct rusoto_iotanalytics::ContainerDatasetAction

pub struct ContainerDatasetAction {
    pub execution_role_arn: String,
    pub image: String,
    pub resource_configuration: ResourceConfiguration,
    pub variables: Option<Vec<Variable>>,
}

Information needed to run the "containerAction" to produce data set contents.

Fields

execution_role_arn: String

The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction". This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.

image: String

The ARN of the Docker container stored in your account. The Docker container contains an application and needed support libraries and is used to generate data set contents.

resource_configuration: ResourceConfiguration

Configuration of the resource which executes the "containerAction".

variables: Option<Vec<Variable>>

The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application). Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".

Trait Implementations

impl PartialEq<ContainerDatasetAction> for ContainerDatasetAction[src]

impl Default for ContainerDatasetAction[src]

impl Clone for ContainerDatasetAction[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ContainerDatasetAction[src]

impl Serialize for ContainerDatasetAction[src]

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

Auto Trait Implementations

impl Send for ContainerDatasetAction

impl Sync for ContainerDatasetAction

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self