Struct aws_sdk_ecs::model::ContainerInstanceHealthStatus
source · [−]#[non_exhaustive]pub struct ContainerInstanceHealthStatus { /* private fields */ }
Expand description
An object representing the health status of the container instance.
Implementations
sourceimpl ContainerInstanceHealthStatus
impl ContainerInstanceHealthStatus
sourcepub fn overall_status(&self) -> Option<&InstanceHealthCheckState>
pub fn overall_status(&self) -> Option<&InstanceHealthCheckState>
The overall health status of the container instance. This is an aggregate status of all container instance health checks.
sourcepub fn details(&self) -> Option<&[InstanceHealthCheckResult]>
pub fn details(&self) -> Option<&[InstanceHealthCheckResult]>
An array of objects representing the details of the container instance health status.
sourceimpl ContainerInstanceHealthStatus
impl ContainerInstanceHealthStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ContainerInstanceHealthStatus
.
Trait Implementations
sourceimpl Clone for ContainerInstanceHealthStatus
impl Clone for ContainerInstanceHealthStatus
sourcefn clone(&self) -> ContainerInstanceHealthStatus
fn clone(&self) -> ContainerInstanceHealthStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ContainerInstanceHealthStatus
impl Debug for ContainerInstanceHealthStatus
sourceimpl PartialEq<ContainerInstanceHealthStatus> for ContainerInstanceHealthStatus
impl PartialEq<ContainerInstanceHealthStatus> for ContainerInstanceHealthStatus
sourcefn eq(&self, other: &ContainerInstanceHealthStatus) -> bool
fn eq(&self, other: &ContainerInstanceHealthStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ContainerInstanceHealthStatus
Auto Trait Implementations
impl RefUnwindSafe for ContainerInstanceHealthStatus
impl Send for ContainerInstanceHealthStatus
impl Sync for ContainerInstanceHealthStatus
impl Unpin for ContainerInstanceHealthStatus
impl UnwindSafe for ContainerInstanceHealthStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more