Struct rusoto_swf::ActivityTaskCanceledEventAttributes [] [src]

pub struct ActivityTaskCanceledEventAttributes {
    pub details: Option<String>,
    pub latest_cancel_requested_event_id: Option<i64>,
    pub scheduled_event_id: i64,
    pub started_event_id: i64,
}

Provides the details of the ActivityTaskCanceled event.

Fields

Details of the cancellation.

If set, contains the ID of the last ActivityTaskCancelRequested event recorded for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

The ID of the ActivityTaskScheduled event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

The ID of the ActivityTaskStarted event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Trait Implementations

impl Default for ActivityTaskCanceledEventAttributes
[src]

[src]

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

impl Debug for ActivityTaskCanceledEventAttributes
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ActivityTaskCanceledEventAttributes
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations