Struct aws_sdk_swf::model::WorkflowTypeInfo
source · [−]#[non_exhaustive]pub struct WorkflowTypeInfo {
pub workflow_type: Option<WorkflowType>,
pub status: Option<RegistrationStatus>,
pub description: Option<String>,
pub creation_date: Option<DateTime>,
pub deprecation_date: Option<DateTime>,
}
Expand description
Contains information about a workflow type.
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.workflow_type: Option<WorkflowType>
The workflow type this information is about.
status: Option<RegistrationStatus>
The current status of the workflow type.
description: Option<String>
The description of the type registered through RegisterWorkflowType
.
creation_date: Option<DateTime>
The date when this type was registered.
deprecation_date: Option<DateTime>
If the type is in deprecated state, then it is set to the date when the type was deprecated.
Implementations
The workflow type this information is about.
The current status of the workflow type.
The description of the type registered through RegisterWorkflowType
.
The date when this type was registered.
If the type is in deprecated state, then it is set to the date when the type was deprecated.
Creates a new builder-style object to manufacture WorkflowTypeInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for WorkflowTypeInfo
impl Send for WorkflowTypeInfo
impl Sync for WorkflowTypeInfo
impl Unpin for WorkflowTypeInfo
impl UnwindSafe for WorkflowTypeInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more