Class CfnHumanTaskUi
Resource Type definition for AWS::SageMaker::HumanTaskUi.
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHumanTaskUi : CfnResource, IInspectable, IHumanTaskUiRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Syntax (vb)
Public Class CfnHumanTaskUi Inherits CfnResource Implements IInspectable, IHumanTaskUiRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cfnHumanTaskUi = new CfnHumanTaskUi(this, "MyCfnHumanTaskUi", new CfnHumanTaskUiProps {
HumanTaskUiName = "humanTaskUiName",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
UiTemplate = new UiTemplateProperty {
Content = "content"
}
});
Synopsis
Constructors
| CfnHumanTaskUi(Construct, string, ICfnHumanTaskUiProps) | Create a new |
Properties
| AttrCreationTime | The timestamp when the human task user interface was created. |
| AttrHumanTaskUiArn | The Amazon Resource Name (ARN) of the human task user interface. |
| CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
| CdkTagManager | Tag Manager which manages the tags for this resource. |
| CfnProperties | Resource Type definition for AWS::SageMaker::HumanTaskUi. |
| CfnPropertyNames | Resource Type definition for AWS::SageMaker::HumanTaskUi. |
| HumanTaskUiName | The name of the human task user interface. |
| HumanTaskUiRef | A reference to a HumanTaskUi resource. |
| Tags | An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. |
| UiTemplate | The Liquid template for the worker user interface. |
Methods
| ArnForHumanTaskUi(IHumanTaskUiRef) | Resource Type definition for AWS::SageMaker::HumanTaskUi. |
| Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
| IsCfnHumanTaskUi(object) | Checks whether the given object is a CfnHumanTaskUi. |
| RenderProperties(IDictionary<string, object>) | Resource Type definition for AWS::SageMaker::HumanTaskUi. |
Constructors
CfnHumanTaskUi(Construct, string, ICfnHumanTaskUiProps)
Create a new AWS::SageMaker::HumanTaskUi.
public CfnHumanTaskUi(Construct scope, string id, ICfnHumanTaskUiProps props)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnHumanTaskUiProps
Resource properties.
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
Properties
AttrCreationTime
The timestamp when the human task user interface was created.
public virtual string AttrCreationTime { get; }
Property Value
Remarks
CloudformationAttribute: CreationTime
AttrHumanTaskUiArn
The Amazon Resource Name (ARN) of the human task user interface.
public virtual string AttrHumanTaskUiArn { get; }
Property Value
Remarks
CloudformationAttribute: HumanTaskUiArn
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
CfnProperties
Resource Type definition for AWS::SageMaker::HumanTaskUi.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
CfnPropertyNames
Resource Type definition for AWS::SageMaker::HumanTaskUi.
protected override IDictionary<string, string> CfnPropertyNames { get; }
Property Value
Overrides
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
HumanTaskUiName
The name of the human task user interface.
public virtual string HumanTaskUiName { get; set; }
Property Value
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
HumanTaskUiRef
A reference to a HumanTaskUi resource.
public virtual IHumanTaskUiReference HumanTaskUiRef { get; }
Property Value
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
Tags
An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface.
public virtual ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
UiTemplate
The Liquid template for the worker user interface.
public virtual object? UiTemplate { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnHumanTaskUi.IUiTemplateProperty
Methods
ArnForHumanTaskUi(IHumanTaskUiRef)
Resource Type definition for AWS::SageMaker::HumanTaskUi.
public static string ArnForHumanTaskUi(IHumanTaskUiRef resource)
Parameters
- resource IHumanTaskUiRef
Returns
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cfnHumanTaskUi = new CfnHumanTaskUi(this, "MyCfnHumanTaskUi", new CfnHumanTaskUiProps {
HumanTaskUiName = "humanTaskUiName",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
UiTemplate = new UiTemplateProperty {
Content = "content"
}
});
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
IsCfnHumanTaskUi(object)
Checks whether the given object is a CfnHumanTaskUi.
public static bool IsCfnHumanTaskUi(object x)
Parameters
- x object
Returns
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
Resource Type definition for AWS::SageMaker::HumanTaskUi.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
CloudformationResource: AWS::SageMaker::HumanTaskUi
ExampleMetadata: fixture=_generated