Class: Aws::SageMaker::Types::RenderableTask
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::RenderableTask
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Contains input values for a task.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #input  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A JSON object that contains values for the variables defined in the template.
 
Instance Attribute Details
#input ⇒ String
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”`.
      41274 41275 41276 41277 41278  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 41274 class RenderableTask < Struct.new( :input) SENSITIVE = [] include Aws::Structure end  |