CfnHumanTaskUiProps
- class aws_cdk.aws_sagemaker.CfnHumanTaskUiProps(*, human_task_ui_name, tags=None, ui_template=None)
Bases:
objectProperties for defining a
CfnHumanTaskUi.- Parameters:
human_task_ui_name (
str) – The name of the human task user interface.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface.ui_template (
Union[IResolvable,UiTemplateProperty,Dict[str,Any],None]) – The Liquid template for the worker user interface.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sagemaker as sagemaker cfn_human_task_ui_props = sagemaker.CfnHumanTaskUiProps( human_task_ui_name="humanTaskUiName", # the properties below are optional tags=[CfnTag( key="key", value="value" )], ui_template=sagemaker.CfnHumanTaskUi.UiTemplateProperty( content="content" ) )
Attributes
- human_task_ui_name
The name of the human task user interface.
- tags
An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface.
- ui_template
The Liquid template for the worker user interface.