Struct aws_sdk_swf::types::WorkflowTypeInfo
source · #[non_exhaustive]pub struct WorkflowTypeInfo { /* private fields */ }
Expand description
Contains information about a workflow type.
Implementations§
source§impl WorkflowTypeInfo
impl WorkflowTypeInfo
sourcepub fn workflow_type(&self) -> Option<&WorkflowType>
pub fn workflow_type(&self) -> Option<&WorkflowType>
The workflow type this information is about.
sourcepub fn status(&self) -> Option<&RegistrationStatus>
pub fn status(&self) -> Option<&RegistrationStatus>
The current status of the workflow type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the type registered through RegisterWorkflowType
.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date when this type was registered.
sourcepub fn deprecation_date(&self) -> Option<&DateTime>
pub fn deprecation_date(&self) -> Option<&DateTime>
If the type is in deprecated state, then it is set to the date when the type was deprecated.
source§impl WorkflowTypeInfo
impl WorkflowTypeInfo
sourcepub fn builder() -> WorkflowTypeInfoBuilder
pub fn builder() -> WorkflowTypeInfoBuilder
Creates a new builder-style object to manufacture WorkflowTypeInfo
.
Trait Implementations§
source§impl Clone for WorkflowTypeInfo
impl Clone for WorkflowTypeInfo
source§fn clone(&self) -> WorkflowTypeInfo
fn clone(&self) -> WorkflowTypeInfo
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 WorkflowTypeInfo
impl Debug for WorkflowTypeInfo
source§impl PartialEq<WorkflowTypeInfo> for WorkflowTypeInfo
impl PartialEq<WorkflowTypeInfo> for WorkflowTypeInfo
source§fn eq(&self, other: &WorkflowTypeInfo) -> bool
fn eq(&self, other: &WorkflowTypeInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.