#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateHumanTaskUiInput
impl Debug for CreateHumanTaskUiInput
source§impl PartialEq<CreateHumanTaskUiInput> for CreateHumanTaskUiInput
impl PartialEq<CreateHumanTaskUiInput> for CreateHumanTaskUiInput
source§fn eq(&self, other: &CreateHumanTaskUiInput) -> bool
fn eq(&self, other: &CreateHumanTaskUiInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateHumanTaskUiInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateHumanTaskUiInput
impl Send for CreateHumanTaskUiInput
impl Sync for CreateHumanTaskUiInput
impl Unpin for CreateHumanTaskUiInput
impl UnwindSafe for CreateHumanTaskUiInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more