Class: Aws::SageMaker::Types::RenderableTask

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass RenderableTask data as a hash:

{
  input: "TaskInput", # required
}

Contains input values for a task.

Instance Attribute Summary collapse

Instance Attribute Details

#inputString

A JSON object that contains values for the variables defined in the template. It is made available to the template under the substitution variable ‘task.input`. For example, if you define a variable `task.input.text` in your template, you can supply the variable in the JSON object as `“text”: “sample text”`.

Returns:

  • (String)


9227
9228
9229
9230
# File 'lib/aws-sdk-sagemaker/types.rb', line 9227

class RenderableTask < Struct.new(
  :input)
  include Aws::Structure
end