[][src]Struct rusoto_swf::WorkflowTypeDetail

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

Contains details about a workflow type.

Fields

configuration: WorkflowTypeConfiguration

Configuration settings of the workflow type registered through RegisterWorkflowType

type_info: 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 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 Clone for WorkflowTypeDetail[src]

impl Debug for WorkflowTypeDetail[src]

impl Default for WorkflowTypeDetail[src]

impl<'de> Deserialize<'de> for WorkflowTypeDetail[src]

impl PartialEq<WorkflowTypeDetail> for WorkflowTypeDetail[src]

impl StructuralPartialEq for WorkflowTypeDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.