#[non_exhaustive]pub struct CreateHumanTaskUiInput {
pub human_task_ui_name: Option<String>,
pub ui_template: Option<UiTemplate>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.human_task_ui_name: Option<String>
The name of the user interface you are creating.
ui_template: Option<UiTemplate>
The Liquid template for the worker user interface.
An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.
Implementations§
source§impl CreateHumanTaskUiInput
impl CreateHumanTaskUiInput
sourcepub fn human_task_ui_name(&self) -> Option<&str>
pub fn human_task_ui_name(&self) -> Option<&str>
The name of the user interface you are creating.
sourcepub fn ui_template(&self) -> Option<&UiTemplate>
pub fn ui_template(&self) -> Option<&UiTemplate>
The Liquid template for the worker user interface.
An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateHumanTaskUiInput
impl CreateHumanTaskUiInput
sourcepub fn builder() -> CreateHumanTaskUiInputBuilder
pub fn builder() -> CreateHumanTaskUiInputBuilder
Creates a new builder-style object to manufacture CreateHumanTaskUiInput
.
Trait Implementations§
source§impl Clone for CreateHumanTaskUiInput
impl Clone for CreateHumanTaskUiInput
source§fn clone(&self) -> CreateHumanTaskUiInput
fn clone(&self) -> CreateHumanTaskUiInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateHumanTaskUiInput
impl Debug for CreateHumanTaskUiInput
source§impl PartialEq for CreateHumanTaskUiInput
impl PartialEq for CreateHumanTaskUiInput
source§fn eq(&self, other: &CreateHumanTaskUiInput) -> bool
fn eq(&self, other: &CreateHumanTaskUiInput) -> bool
self
and other
values to be equal, and is used
by ==
.