Struct aws_sdk_apprunner::model::HealthCheckConfiguration
source · [−]#[non_exhaustive]pub struct HealthCheckConfiguration { /* private fields */ }
Expand description
Describes the settings for the health check that App Runner performs to monitor the health of a service.
Implementations
sourceimpl HealthCheckConfiguration
impl HealthCheckConfiguration
sourcepub fn protocol(&self) -> Option<&HealthCheckProtocol>
pub fn protocol(&self) -> Option<&HealthCheckProtocol>
The IP protocol that App Runner uses to perform health checks for your service.
If you set Protocol
to HTTP
, App Runner sends health check requests to the HTTP path specified by Path
.
Default: TCP
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&str>
The URL that health check requests are sent to.
Path
is only applicable when you set Protocol
to HTTP
.
Default: "/"
sourcepub fn interval(&self) -> Option<i32>
pub fn interval(&self) -> Option<i32>
The time interval, in seconds, between health checks.
Default: 5
sourcepub fn timeout(&self) -> Option<i32>
pub fn timeout(&self) -> Option<i32>
The time, in seconds, to wait for a health check response before deciding it failed.
Default: 2
sourcepub fn healthy_threshold(&self) -> Option<i32>
pub fn healthy_threshold(&self) -> Option<i32>
The number of consecutive checks that must succeed before App Runner decides that the service is healthy.
Default: 1
sourcepub fn unhealthy_threshold(&self) -> Option<i32>
pub fn unhealthy_threshold(&self) -> Option<i32>
The number of consecutive checks that must fail before App Runner decides that the service is unhealthy.
Default: 5
sourceimpl HealthCheckConfiguration
impl HealthCheckConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HealthCheckConfiguration
.
Trait Implementations
sourceimpl Clone for HealthCheckConfiguration
impl Clone for HealthCheckConfiguration
sourcefn clone(&self) -> HealthCheckConfiguration
fn clone(&self) -> HealthCheckConfiguration
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 HealthCheckConfiguration
impl Debug for HealthCheckConfiguration
sourceimpl PartialEq<HealthCheckConfiguration> for HealthCheckConfiguration
impl PartialEq<HealthCheckConfiguration> for HealthCheckConfiguration
sourcefn eq(&self, other: &HealthCheckConfiguration) -> bool
fn eq(&self, other: &HealthCheckConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HealthCheckConfiguration) -> bool
fn ne(&self, other: &HealthCheckConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for HealthCheckConfiguration
Auto Trait Implementations
impl RefUnwindSafe for HealthCheckConfiguration
impl Send for HealthCheckConfiguration
impl Sync for HealthCheckConfiguration
impl Unpin for HealthCheckConfiguration
impl UnwindSafe for HealthCheckConfiguration
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