Resource: aws_sagemaker_human_task_ui

Provides a SageMaker Human Task UI resource.

Example Usage

resource "aws_sagemaker_human_task_ui" "example" {
  human_task_ui_name = "example"

  ui_template {
    content = file("sagemaker-human-task-ui-template.html")
  }
}

Argument Reference

This resource supports the following arguments:

UI Template

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

UI Template

Import

In Terraform v1.5.0 and later, use an import block to import SageMaker Human Task UIs using the human_task_ui_name. For example:

import {
  to = aws_sagemaker_human_task_ui.example
  id = "example"
}

Using terraform import, import SageMaker Human Task UIs using the human_task_ui_name. For example:

% terraform import aws_sagemaker_human_task_ui.example example