DatasetContainerActionArgs

data class DatasetContainerActionArgs(val executionRoleArn: Output<String>, val image: Output<String>, val resourceConfiguration: Output<DatasetResourceConfigurationArgs>, val variables: Output<List<DatasetVariableArgs>>? = null) : ConvertibleToJava<DatasetContainerActionArgs>

Constructors

Link copied to clipboard
constructor(executionRoleArn: Output<String>, image: Output<String>, resourceConfiguration: Output<DatasetResourceConfigurationArgs>, variables: Output<List<DatasetVariableArgs>>? = null)

Properties

Link copied to clipboard

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.

Link copied to clipboard
val image: Output<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.

Link copied to clipboard

Configuration of the resource which executes the "containerAction".

Link copied to clipboard
val variables: Output<List<DatasetVariableArgs>>? = null

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".

Functions

Link copied to clipboard
open override fun toJava(): DatasetContainerActionArgs