RunArgs | R Documentation |
Accepts parameters that correspond to ScriptProcessors.
code
This can be an S3 URI or a local path to a file with the framework script to run
inputs
Input files for the processing job
outputs
Outputs for the processing job
arguments
A list of string arguments to be passed to a processing job
new()
An instance of this class is returned from the “get_run_args()“ method on processors, and is used for normalizing the arguments so that they can be passed to :class:'~sagemaker.workflow.steps.ProcessingStep'
RunArgs$new(code, inputs = NULL, outputs = NULL, arguments = NULL)
code
(str): This can be an S3 URI or a local path to a file with the framework script to run.
inputs
(list[:class:'~sagemaker.processing.ProcessingInput']): Input files for the processing job. These must be provided as :class:'~sagemaker.processing.ProcessingInput' objects (default: None).
outputs
(list[:class:'~sagemaker.processing.ProcessingOutput']): Outputs for the processing job. These can be specified as either path strings or :class:'~sagemaker.processing.ProcessingOutput' objects (default: None).
arguments
(list[str]): A list of string arguments to be passed to a processing job (default: None).
clone()
The objects of this class are cloneable with this method.
RunArgs$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.