Struct aws_sdk_swf::output::DescribeWorkflowTypeOutput
source · [−]#[non_exhaustive]pub struct DescribeWorkflowTypeOutput { /* private fields */ }
Expand description
Contains details about a workflow type.
Implementations
sourceimpl DescribeWorkflowTypeOutput
impl DescribeWorkflowTypeOutput
sourcepub fn type_info(&self) -> Option<&WorkflowTypeInfo>
pub fn type_info(&self) -> Option<&WorkflowTypeInfo>
General information about the workflow type.
The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.
-
REGISTERED
– The type is registered and available. Workers supporting this type should be running. -
DEPRECATED
– The type was deprecated usingDeprecateWorkflowType
, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.
sourcepub fn configuration(&self) -> Option<&WorkflowTypeConfiguration>
pub fn configuration(&self) -> Option<&WorkflowTypeConfiguration>
Configuration settings of the workflow type registered through RegisterWorkflowType
sourceimpl DescribeWorkflowTypeOutput
impl DescribeWorkflowTypeOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeWorkflowTypeOutput
.
Trait Implementations
sourceimpl Clone for DescribeWorkflowTypeOutput
impl Clone for DescribeWorkflowTypeOutput
sourcefn clone(&self) -> DescribeWorkflowTypeOutput
fn clone(&self) -> DescribeWorkflowTypeOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DescribeWorkflowTypeOutput
impl Debug for DescribeWorkflowTypeOutput
sourceimpl PartialEq<DescribeWorkflowTypeOutput> for DescribeWorkflowTypeOutput
impl PartialEq<DescribeWorkflowTypeOutput> for DescribeWorkflowTypeOutput
sourcefn eq(&self, other: &DescribeWorkflowTypeOutput) -> bool
fn eq(&self, other: &DescribeWorkflowTypeOutput) -> bool
impl StructuralPartialEq for DescribeWorkflowTypeOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeWorkflowTypeOutput
impl Send for DescribeWorkflowTypeOutput
impl Sync for DescribeWorkflowTypeOutput
impl Unpin for DescribeWorkflowTypeOutput
impl UnwindSafe for DescribeWorkflowTypeOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more