pub struct TaskExecutionListEntry {
pub status: Option<String>,
pub task_execution_arn: Option<String>,
}
Expand description
Represents a single entry in a list of task executions. TaskExecutionListEntry
returns an array that contains a list of specific invocations of a task when ListTaskExecutions operation is called.
Fields§
§status: Option<String>
The status of a task execution.
task_execution_arn: Option<String>
The Amazon Resource Name (ARN) of the task that was executed.
Trait Implementations§
Source§impl Clone for TaskExecutionListEntry
impl Clone for TaskExecutionListEntry
Source§fn clone(&self) -> TaskExecutionListEntry
fn clone(&self) -> TaskExecutionListEntry
Returns a copy 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 Debug for TaskExecutionListEntry
impl Debug for TaskExecutionListEntry
Source§impl Default for TaskExecutionListEntry
impl Default for TaskExecutionListEntry
Source§fn default() -> TaskExecutionListEntry
fn default() -> TaskExecutionListEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskExecutionListEntry
impl<'de> Deserialize<'de> for TaskExecutionListEntry
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 TaskExecutionListEntry
impl PartialEq for TaskExecutionListEntry
impl StructuralPartialEq for TaskExecutionListEntry
Auto Trait Implementations§
impl Freeze for TaskExecutionListEntry
impl RefUnwindSafe for TaskExecutionListEntry
impl Send for TaskExecutionListEntry
impl Sync for TaskExecutionListEntry
impl Unpin for TaskExecutionListEntry
impl UnwindSafe for TaskExecutionListEntry
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