pub struct SubmitTaskStateChangeRequest {
pub attachments: Option<Vec<AttachmentStateChange>>,
pub cluster: Option<String>,
pub containers: Option<Vec<ContainerStateChange>>,
pub execution_stopped_at: Option<f64>,
pub managed_agents: Option<Vec<ManagedAgentStateChange>>,
pub pull_started_at: Option<f64>,
pub pull_stopped_at: Option<f64>,
pub reason: Option<String>,
pub status: Option<String>,
pub task: Option<String>,
}
Fields§
§attachments: Option<Vec<AttachmentStateChange>>
Any attachments associated with the state change request.
cluster: Option<String>
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.
containers: Option<Vec<ContainerStateChange>>
Any containers associated with the state change request.
execution_stopped_at: Option<f64>
The Unix timestamp for when the task execution stopped.
managed_agents: Option<Vec<ManagedAgentStateChange>>
The details for the managed agent associated with the task.
pull_started_at: Option<f64>
The Unix timestamp for when the container image pull began.
pull_stopped_at: Option<f64>
The Unix timestamp for when the container image pull completed.
reason: Option<String>
The reason for the state change request.
status: Option<String>
The status of the state change request.
task: Option<String>
The task ID or full ARN of the task in the state change request.
Trait Implementations§
Source§impl Clone for SubmitTaskStateChangeRequest
impl Clone for SubmitTaskStateChangeRequest
Source§fn clone(&self) -> SubmitTaskStateChangeRequest
fn clone(&self) -> SubmitTaskStateChangeRequest
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 Debug for SubmitTaskStateChangeRequest
impl Debug for SubmitTaskStateChangeRequest
Source§impl Default for SubmitTaskStateChangeRequest
impl Default for SubmitTaskStateChangeRequest
Source§fn default() -> SubmitTaskStateChangeRequest
fn default() -> SubmitTaskStateChangeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SubmitTaskStateChangeRequest
impl PartialEq for SubmitTaskStateChangeRequest
Source§fn eq(&self, other: &SubmitTaskStateChangeRequest) -> bool
fn eq(&self, other: &SubmitTaskStateChangeRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SubmitTaskStateChangeRequest
Auto Trait Implementations§
impl Freeze for SubmitTaskStateChangeRequest
impl RefUnwindSafe for SubmitTaskStateChangeRequest
impl Send for SubmitTaskStateChangeRequest
impl Sync for SubmitTaskStateChangeRequest
impl Unpin for SubmitTaskStateChangeRequest
impl UnwindSafe for SubmitTaskStateChangeRequest
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