pub struct Cluster {Show 17 fields
pub cluster_name: String,
pub cluster_arn: String,
pub status: String,
pub registered_container_instances_count: i32,
pub running_tasks_count: i32,
pub pending_tasks_count: i32,
pub active_services_count: i32,
pub statistics: Vec<Value>,
pub tags: Vec<TagEntry>,
pub settings: Vec<Value>,
pub configuration: Option<Value>,
pub capacity_providers: Vec<String>,
pub default_capacity_provider_strategy: Vec<Value>,
pub attachments: Vec<Value>,
pub attachments_status: Option<String>,
pub service_connect_defaults: Option<Value>,
pub created_at: DateTime<Utc>,
}Fields§
§cluster_name: String§cluster_arn: String§status: String§registered_container_instances_count: i32§running_tasks_count: i32§pending_tasks_count: i32§active_services_count: i32§statistics: Vec<Value>§settings: Vec<Value>§configuration: Option<Value>§capacity_providers: Vec<String>§default_capacity_provider_strategy: Vec<Value>§attachments: Vec<Value>§attachments_status: Option<String>§service_connect_defaults: Option<Value>§created_at: DateTime<Utc>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cluster
impl<'de> Deserialize<'de> for Cluster
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 Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnsafeUnpin for Cluster
impl UnwindSafe for Cluster
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more