interface CfnHumanTaskUiMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnHumanTaskUiMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnHumanTaskUiMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnHumanTaskUiMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnHumanTaskUiMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnHumanTaskUiMixinProps |
Properties for CfnHumanTaskUiPropsMixin.
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/cfn-property-mixins';
const cfnHumanTaskUiMixinProps: sagemaker.CfnHumanTaskUiMixinProps = {
humanTaskUiName: 'humanTaskUiName',
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
(optional)
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