Struct aws_sdk_swf::output::DescribeWorkflowTypeOutput
source · #[non_exhaustive]pub struct DescribeWorkflowTypeOutput { /* private fields */ }
Expand description
Contains details about a workflow type.
Implementations§
source§impl 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
source§impl DescribeWorkflowTypeOutput
impl DescribeWorkflowTypeOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeWorkflowTypeOutput
.
Trait Implementations§
source§impl Clone for DescribeWorkflowTypeOutput
impl Clone for DescribeWorkflowTypeOutput
source§fn clone(&self) -> DescribeWorkflowTypeOutput
fn clone(&self) -> DescribeWorkflowTypeOutput
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 DescribeWorkflowTypeOutput
impl Debug for DescribeWorkflowTypeOutput
source§impl PartialEq<DescribeWorkflowTypeOutput> for DescribeWorkflowTypeOutput
impl PartialEq<DescribeWorkflowTypeOutput> for DescribeWorkflowTypeOutput
source§fn eq(&self, other: &DescribeWorkflowTypeOutput) -> bool
fn eq(&self, other: &DescribeWorkflowTypeOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.