HumanTaskUIArgs constructor

const HumanTaskUIArgs({
  1. required Input<String> humanTaskUiName,
  2. Input<String?>? region,
  3. Input<Map<String, String>?>? tags,
  4. required Input<HumanTaskUIUiTemplate> uiTemplate,
})

Creates a new HumanTaskUIArgs. humanTaskUiName The name of the Human Task UI. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags A map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. uiTemplate The Liquid template for the worker user interface. See UI Template below.

Implementation

const HumanTaskUIArgs({
  required this.humanTaskUiName,
  this.region,
  this.tags,
  required this.uiTemplate,
});