interface CfnHumanTaskUiProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnHumanTaskUiProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnHumanTaskUiProps |
Java | software.amazon.awscdk.services.sagemaker.CfnHumanTaskUiProps |
Python | aws_cdk.aws_sagemaker.CfnHumanTaskUiProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnHumanTaskUiProps |
Properties for defining a CfnHumanTaskUi.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnHumanTaskUiProps: sagemaker.CfnHumanTaskUiProps = {
humanTaskUiName: 'humanTaskUiName',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
uiTemplate: {
content: 'content',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| human | string | The name of the human task user interface. |
| tags? | Cfn[] | An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. |
| ui | IResolvable | Ui | The Liquid template for the worker user interface. |
humanTaskUiName
Type:
string
The name of the human task user interface.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface.
uiTemplate?
Type:
IResolvable | Ui
(optional)
The Liquid template for the worker user interface.

.NET
Go
Java
Python
TypeScript