Class: Aws::SageMaker::Types::RenderUiTemplateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::RenderUiTemplateRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #human_task_ui_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘HumanTaskUiArn` of the worker UI that you want to render.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) that has access to the S3 objects that are used by the template.
 - 
  
    
      #task  ⇒ Types::RenderableTask 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A ‘RenderableTask` object containing a representative task to render.
 - 
  
    
      #ui_template  ⇒ Types::UiTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A ‘Template` object containing the worker UI template to render.
 
Instance Attribute Details
#human_task_ui_arn ⇒ String
The ‘HumanTaskUiArn` of the worker UI that you want to render. Do not provide a `HumanTaskUiArn` if you use the `UiTemplate` parameter.
See a list of available Human Ui Amazon Resource Names (ARNs) in [UiConfig].
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_UiConfig.html
      40921 40922 40923 40924 40925 40926 40927 40928  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40921 class RenderUiTemplateRequest < Struct.new( :ui_template, :task, :role_arn, :human_task_ui_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The Amazon Resource Name (ARN) that has access to the S3 objects that are used by the template.
      40921 40922 40923 40924 40925 40926 40927 40928  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40921 class RenderUiTemplateRequest < Struct.new( :ui_template, :task, :role_arn, :human_task_ui_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#task ⇒ Types::RenderableTask
A ‘RenderableTask` object containing a representative task to render.
      40921 40922 40923 40924 40925 40926 40927 40928  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40921 class RenderUiTemplateRequest < Struct.new( :ui_template, :task, :role_arn, :human_task_ui_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#ui_template ⇒ Types::UiTemplate
A ‘Template` object containing the worker UI template to render.
      40921 40922 40923 40924 40925 40926 40927 40928  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40921 class RenderUiTemplateRequest < Struct.new( :ui_template, :task, :role_arn, :human_task_ui_arn) SENSITIVE = [] include Aws::Structure end  |