pub struct ContainerInstance {Show 18 fields
pub container_instance_arn: String,
pub ec2_instance_id: Option<String>,
pub cluster_name: String,
pub cluster_arn: String,
pub status: String,
pub version: i64,
pub version_info: Option<Value>,
pub agent_connected: bool,
pub agent_update_status: Option<String>,
pub remaining_resources: Vec<Value>,
pub registered_resources: Vec<Value>,
pub running_tasks_count: i32,
pub pending_tasks_count: i32,
pub registered_at: DateTime<Utc>,
pub attributes: Vec<AttributeRef>,
pub tags: Vec<TagEntry>,
pub capacity_provider_name: Option<String>,
pub health_status: Option<Value>,
}Fields§
§container_instance_arn: String§ec2_instance_id: Option<String>§cluster_name: String§cluster_arn: String§status: String§version: i64§version_info: Option<Value>§agent_connected: bool§agent_update_status: Option<String>§remaining_resources: Vec<Value>§registered_resources: Vec<Value>§running_tasks_count: i32§pending_tasks_count: i32§registered_at: DateTime<Utc>§attributes: Vec<AttributeRef>§capacity_provider_name: Option<String>§health_status: Option<Value>Trait Implementations§
Source§impl Clone for ContainerInstance
impl Clone for ContainerInstance
Source§fn clone(&self) -> ContainerInstance
fn clone(&self) -> ContainerInstance
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 ContainerInstance
impl Debug for ContainerInstance
Source§impl<'de> Deserialize<'de> for ContainerInstance
impl<'de> Deserialize<'de> for ContainerInstance
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
Auto Trait Implementations§
impl Freeze for ContainerInstance
impl RefUnwindSafe for ContainerInstance
impl Send for ContainerInstance
impl Sync for ContainerInstance
impl Unpin for ContainerInstance
impl UnsafeUnpin for ContainerInstance
impl UnwindSafe for ContainerInstance
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