pub struct CancelDataRepositoryTaskResponse {
pub lifecycle: Option<String>,
pub task_id: Option<String>,
}Fields§
§lifecycle: Option<String>The lifecycle status of the data repository task, as follows:
-
PENDING- Amazon FSx has not started the task. -
EXECUTING- Amazon FSx is processing the task. -
FAILED- Amazon FSx was not able to complete the task. For example, there may be files the task failed to process. The DataRepositoryTaskFailureDetails property provides more information about task failures. -
SUCCEEDED- FSx completed the task successfully. -
CANCELED- Amazon FSx canceled the task and it did not complete. -
CANCELING- FSx is in process of canceling the task.
task_id: Option<String>The ID of the task being canceled.
Trait Implementations§
Source§impl Clone for CancelDataRepositoryTaskResponse
impl Clone for CancelDataRepositoryTaskResponse
Source§fn clone(&self) -> CancelDataRepositoryTaskResponse
fn clone(&self) -> CancelDataRepositoryTaskResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CancelDataRepositoryTaskResponse
impl Default for CancelDataRepositoryTaskResponse
Source§fn default() -> CancelDataRepositoryTaskResponse
fn default() -> CancelDataRepositoryTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CancelDataRepositoryTaskResponse
impl<'de> Deserialize<'de> for CancelDataRepositoryTaskResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CancelDataRepositoryTaskResponse
impl PartialEq for CancelDataRepositoryTaskResponse
Source§fn eq(&self, other: &CancelDataRepositoryTaskResponse) -> bool
fn eq(&self, other: &CancelDataRepositoryTaskResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CancelDataRepositoryTaskResponse
Auto Trait Implementations§
impl Freeze for CancelDataRepositoryTaskResponse
impl RefUnwindSafe for CancelDataRepositoryTaskResponse
impl Send for CancelDataRepositoryTaskResponse
impl Sync for CancelDataRepositoryTaskResponse
impl Unpin for CancelDataRepositoryTaskResponse
impl UnwindSafe for CancelDataRepositoryTaskResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more