CfnHumanTaskUiProps

class aws_cdk.aws_sagemaker.CfnHumanTaskUiProps(*, human_task_ui_name, tags=None, ui_template=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-humantaskui.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-humantaskui.html#cfn-sagemaker-humantaskui-humantaskuiname

tags

An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-humantaskui.html#cfn-sagemaker-humantaskui-tags

ui_template

The Liquid template for the worker user interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-humantaskui.html#cfn-sagemaker-humantaskui-uitemplate