[][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 PartialEq<SetTaskStatusInput> for SetTaskStatusInput[src]

impl Default for SetTaskStatusInput[src]

impl Clone for SetTaskStatusInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SetTaskStatusInput[src]

impl Serialize for SetTaskStatusInput[src]

Auto Trait Implementations

impl Send for SetTaskStatusInput

impl Sync for SetTaskStatusInput

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

type Error = <U as TryFrom<T>>::Error

🔬 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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self