[][src]Struct rusoto_swf::ActivityTypeDetail

pub struct ActivityTypeDetail {
    pub configuration: ActivityTypeConfiguration,
    pub type_info: ActivityTypeInfo,
}

Detailed information about an activity type.

Fields

configuration: ActivityTypeConfiguration

The configuration settings registered with the activity type.

type_info: ActivityTypeInfo

General information about the activity type.

The status of activity type (returned in the ActivityTypeInfo 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 DeprecateActivityType, but is still in use. You should keep workers supporting this type running. You cannot create new tasks of this type.

Trait Implementations

impl Clone for ActivityTypeDetail[src]

impl Debug for ActivityTypeDetail[src]

impl Default for ActivityTypeDetail[src]

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

impl PartialEq<ActivityTypeDetail> for ActivityTypeDetail[src]

impl StructuralPartialEq for ActivityTypeDetail[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, 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.