Dataset Container Action Args
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
Configuration of the resource which executes the "containerAction".
Link copied to clipboard
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".