[−][src]Struct rusoto_datapipeline::SetTaskStatusInput
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]
fn eq(&self, other: &SetTaskStatusInput) -> bool
[src]
fn ne(&self, other: &SetTaskStatusInput) -> bool
[src]
impl Default for SetTaskStatusInput
[src]
fn default() -> SetTaskStatusInput
[src]
impl Clone for SetTaskStatusInput
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self