Struct rusoto_swf::WorkflowTypeDetail [] [src]

pub struct WorkflowTypeDetail {
    pub configuration: WorkflowTypeConfiguration,
    pub type_info: WorkflowTypeInfo,
}

Contains details about a workflow type.

Fields

Configuration settings of the workflow type registered through RegisterWorkflowType

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 using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.

Trait Implementations

impl Default for WorkflowTypeDetail
[src]

Returns the "default value" for a type. Read more

impl Debug for WorkflowTypeDetail
[src]

Formats the value using the given formatter.

impl Clone for WorkflowTypeDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more