[][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

error_id: Option<String>

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.

error_message: Option<String>

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.

error_stack_trace: Option<String>

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.

task_id: String

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

task_status: String

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

Trait Implementations

impl Clone for SetTaskStatusInput[src]

impl Debug for SetTaskStatusInput[src]

impl Default for SetTaskStatusInput[src]

impl PartialEq<SetTaskStatusInput> for SetTaskStatusInput[src]

impl Serialize for SetTaskStatusInput[src]

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