[][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 Clone for ContainerDatasetAction[src]

impl Debug for ContainerDatasetAction[src]

impl Default for ContainerDatasetAction[src]

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

impl PartialEq<ContainerDatasetAction> for ContainerDatasetAction[src]

impl Serialize for ContainerDatasetAction[src]

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