#[non_exhaustive]pub struct DescribeEnvironmentHealthOutput {
pub environment_name: Option<String>,
pub health_status: Option<String>,
pub status: Option<EnvironmentHealth>,
pub color: Option<String>,
pub causes: Option<Vec<String>>,
pub application_metrics: Option<ApplicationMetrics>,
pub instances_health: Option<InstanceHealthSummary>,
pub refreshed_at: Option<DateTime>,
}
Expand description
Health details for an AWS Elastic Beanstalk environment.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.environment_name: Option<String>
The environment's name.
health_status: Option<String>
The health status of the environment. For example, Ok
.
status: Option<EnvironmentHealth>
The environment's operational status. Ready
, Launching
, Updating
, Terminating
, or Terminated
.
color: Option<String>
The health color of the environment.
causes: Option<Vec<String>>
Descriptions of the data that contributed to the environment's current health status.
application_metrics: Option<ApplicationMetrics>
Application request metrics for the environment.
instances_health: Option<InstanceHealthSummary>
Summary health information for the instances in the environment.
refreshed_at: Option<DateTime>
The date and time that the health information was retrieved.
Implementations
sourceimpl DescribeEnvironmentHealthOutput
impl DescribeEnvironmentHealthOutput
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The environment's name.
sourcepub fn health_status(&self) -> Option<&str>
pub fn health_status(&self) -> Option<&str>
The health status of the environment. For example, Ok
.
sourcepub fn status(&self) -> Option<&EnvironmentHealth>
pub fn status(&self) -> Option<&EnvironmentHealth>
The environment's operational status. Ready
, Launching
, Updating
, Terminating
, or Terminated
.
sourcepub fn color(&self) -> Option<&str>
pub fn color(&self) -> Option<&str>
The health color of the environment.
sourcepub fn causes(&self) -> Option<&[String]>
pub fn causes(&self) -> Option<&[String]>
Descriptions of the data that contributed to the environment's current health status.
sourcepub fn application_metrics(&self) -> Option<&ApplicationMetrics>
pub fn application_metrics(&self) -> Option<&ApplicationMetrics>
Application request metrics for the environment.
sourcepub fn instances_health(&self) -> Option<&InstanceHealthSummary>
pub fn instances_health(&self) -> Option<&InstanceHealthSummary>
Summary health information for the instances in the environment.
sourcepub fn refreshed_at(&self) -> Option<&DateTime>
pub fn refreshed_at(&self) -> Option<&DateTime>
The date and time that the health information was retrieved.
sourceimpl DescribeEnvironmentHealthOutput
impl DescribeEnvironmentHealthOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEnvironmentHealthOutput
Trait Implementations
sourceimpl Clone for DescribeEnvironmentHealthOutput
impl Clone for DescribeEnvironmentHealthOutput
sourcefn clone(&self) -> DescribeEnvironmentHealthOutput
fn clone(&self) -> DescribeEnvironmentHealthOutput
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 PartialEq<DescribeEnvironmentHealthOutput> for DescribeEnvironmentHealthOutput
impl PartialEq<DescribeEnvironmentHealthOutput> for DescribeEnvironmentHealthOutput
sourcefn eq(&self, other: &DescribeEnvironmentHealthOutput) -> bool
fn eq(&self, other: &DescribeEnvironmentHealthOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeEnvironmentHealthOutput) -> bool
fn ne(&self, other: &DescribeEnvironmentHealthOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeEnvironmentHealthOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeEnvironmentHealthOutput
impl Send for DescribeEnvironmentHealthOutput
impl Sync for DescribeEnvironmentHealthOutput
impl Unpin for DescribeEnvironmentHealthOutput
impl UnwindSafe for DescribeEnvironmentHealthOutput
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