[][src]Struct rusoto_datapipeline::SetTaskStatusInput

pub struct SetTaskStatusInput {
    pub error_id: Option<String>,
    pub error_message: Option<String>,
    pub error_stack_trace: Option<String>,
    pub task_id: String,
    pub task_status: String,
}

Contains the parameters for SetTaskStatus.

Fields

If an error occurred during the task, this value specifies the error code. This value is set on the physical attempt object. It is used to display error information to the user. It should not start with string "Service_" which is reserved by the system.

If an error occurred during the task, this value specifies a text description of the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.

If an error occurred during the task, this value specifies the stack trace associated with the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.

The ID of the task assigned to the task runner. This value is provided in the response for PollForTask.

If FINISHED, the task successfully completed. If FAILED, the task ended unsuccessfully. Preconditions use false.

Trait Implementations

impl PartialEq<SetTaskStatusInput> for SetTaskStatusInput
[src]

impl Default for SetTaskStatusInput
[src]

impl Clone for SetTaskStatusInput
[src]

Performs copy-assignment from source. Read more

impl Debug for SetTaskStatusInput
[src]

impl Serialize for SetTaskStatusInput
[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T