pub struct ContainerDatasetAction {
pub execution_role_arn: String,
pub image: String,
pub resource_configuration: ResourceConfiguration,
pub variables: Option<Vec<Variable>>,
}
Expand description
Information required to run the containerAction
to produce dataset contents.
Fields§
§execution_role_arn: String
The ARN of the role that gives permission to the system to access required resources to run the containerAction
. This includes, at minimum, permission to retrieve the dataset contents that 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 required support libraries and is used to generate dataset contents.
resource_configuration: ResourceConfiguration
Configuration of the resource that executes the containerAction
.
variables: Option<Vec<Variable>>
The values of variables used in 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§
Source§impl Clone for ContainerDatasetAction
impl Clone for ContainerDatasetAction
Source§fn clone(&self) -> ContainerDatasetAction
fn clone(&self) -> ContainerDatasetAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more