#[non_exhaustive]pub struct DescribeHumanTaskUiOutput {
pub human_task_ui_arn: Option<String>,
pub human_task_ui_name: Option<String>,
pub human_task_ui_status: Option<HumanTaskUiStatus>,
pub creation_time: Option<DateTime>,
pub ui_template: Option<UiTemplateInfo>,
/* private fields */
}
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_arn: Option<String>
The Amazon Resource Name (ARN) of the human task user interface (worker task template).
human_task_ui_name: Option<String>
The name of the human task user interface (worker task template).
human_task_ui_status: Option<HumanTaskUiStatus>
The status of the human task user interface (worker task template). Valid values are listed below.
creation_time: Option<DateTime>
The timestamp when the human task user interface was created.
ui_template: Option<UiTemplateInfo>
Container for user interface template information.
Implementations§
source§impl DescribeHumanTaskUiOutput
impl DescribeHumanTaskUiOutput
sourcepub fn human_task_ui_arn(&self) -> Option<&str>
pub fn human_task_ui_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the human task user interface (worker task template).
sourcepub fn human_task_ui_name(&self) -> Option<&str>
pub fn human_task_ui_name(&self) -> Option<&str>
The name of the human task user interface (worker task template).
sourcepub fn human_task_ui_status(&self) -> Option<&HumanTaskUiStatus>
pub fn human_task_ui_status(&self) -> Option<&HumanTaskUiStatus>
The status of the human task user interface (worker task template). Valid values are listed below.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp when the human task user interface was created.
sourcepub fn ui_template(&self) -> Option<&UiTemplateInfo>
pub fn ui_template(&self) -> Option<&UiTemplateInfo>
Container for user interface template information.
source§impl DescribeHumanTaskUiOutput
impl DescribeHumanTaskUiOutput
sourcepub fn builder() -> DescribeHumanTaskUiOutputBuilder
pub fn builder() -> DescribeHumanTaskUiOutputBuilder
Creates a new builder-style object to manufacture DescribeHumanTaskUiOutput
.
Trait Implementations§
source§impl Clone for DescribeHumanTaskUiOutput
impl Clone for DescribeHumanTaskUiOutput
source§fn clone(&self) -> DescribeHumanTaskUiOutput
fn clone(&self) -> DescribeHumanTaskUiOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeHumanTaskUiOutput
impl Debug for DescribeHumanTaskUiOutput
source§impl PartialEq for DescribeHumanTaskUiOutput
impl PartialEq for DescribeHumanTaskUiOutput
source§fn eq(&self, other: &DescribeHumanTaskUiOutput) -> bool
fn eq(&self, other: &DescribeHumanTaskUiOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeHumanTaskUiOutput
impl RequestId for DescribeHumanTaskUiOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeHumanTaskUiOutput
Auto Trait Implementations§
impl Freeze for DescribeHumanTaskUiOutput
impl RefUnwindSafe for DescribeHumanTaskUiOutput
impl Send for DescribeHumanTaskUiOutput
impl Sync for DescribeHumanTaskUiOutput
impl Unpin for DescribeHumanTaskUiOutput
impl UnwindSafe for DescribeHumanTaskUiOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more