Struct aws_sdk_swf::model::ActivityTypeInfo [−][src]
#[non_exhaustive]pub struct ActivityTypeInfo {
pub activity_type: Option<ActivityType>,
pub status: Option<RegistrationStatus>,
pub description: Option<String>,
pub creation_date: Option<Instant>,
pub deprecation_date: Option<Instant>,
}
Expand description
Detailed information about an activity 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.activity_type: Option<ActivityType>
The ActivityType type structure representing the activity type.
status: Option<RegistrationStatus>
The current status of the activity type.
description: Option<String>
The description of the activity type provided in RegisterActivityType.
creation_date: Option<Instant>
The date and time this activity type was created through RegisterActivityType.
deprecation_date: Option<Instant>
If DEPRECATED, the date and time DeprecateActivityType was called.
Implementations
The ActivityType type structure representing the activity type.
The current status of the activity type.
The description of the activity type provided in RegisterActivityType.
The date and time this activity type was created through RegisterActivityType.
If DEPRECATED, the date and time DeprecateActivityType was called.
Creates a new builder-style object to manufacture ActivityTypeInfo
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 ActivityTypeInfo
impl Send for ActivityTypeInfo
impl Sync for ActivityTypeInfo
impl Unpin for ActivityTypeInfo
impl UnwindSafe for ActivityTypeInfo
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