Struct aws_sdk_appmesh::types::HealthCheckPolicy
source · #[non_exhaustive]pub struct HealthCheckPolicy {
pub timeout_millis: i64,
pub interval_millis: i64,
pub protocol: PortProtocol,
pub port: i32,
pub path: Option<String>,
pub healthy_threshold: i32,
pub unhealthy_threshold: i32,
}
Expand description
An object that represents the health check policy for a virtual node's listener.
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.timeout_millis: i64
The amount of time to wait when receiving a response from the health check, in milliseconds.
interval_millis: i64
The time period in milliseconds between each health check execution.
protocol: PortProtocol
The protocol for the health check request. If you specify grpc
, then your service must conform to the GRPC Health Checking Protocol.
port: i32
The destination port for the health check request. This port must match the port defined in the PortMapping
for the listener.
path: Option<String>
The destination path for the health check request. This value is only used if the specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.
healthy_threshold: i32
The number of consecutive successful health checks that must occur before declaring listener healthy.
unhealthy_threshold: i32
The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy.
Implementations§
source§impl HealthCheckPolicy
impl HealthCheckPolicy
sourcepub fn timeout_millis(&self) -> i64
pub fn timeout_millis(&self) -> i64
The amount of time to wait when receiving a response from the health check, in milliseconds.
sourcepub fn interval_millis(&self) -> i64
pub fn interval_millis(&self) -> i64
The time period in milliseconds between each health check execution.
sourcepub fn protocol(&self) -> &PortProtocol
pub fn protocol(&self) -> &PortProtocol
The protocol for the health check request. If you specify grpc
, then your service must conform to the GRPC Health Checking Protocol.
sourcepub fn port(&self) -> i32
pub fn port(&self) -> i32
The destination port for the health check request. This port must match the port defined in the PortMapping
for the listener.
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&str>
The destination path for the health check request. This value is only used if the specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.
sourcepub fn healthy_threshold(&self) -> i32
pub fn healthy_threshold(&self) -> i32
The number of consecutive successful health checks that must occur before declaring listener healthy.
sourcepub fn unhealthy_threshold(&self) -> i32
pub fn unhealthy_threshold(&self) -> i32
The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy.
source§impl HealthCheckPolicy
impl HealthCheckPolicy
sourcepub fn builder() -> HealthCheckPolicyBuilder
pub fn builder() -> HealthCheckPolicyBuilder
Creates a new builder-style object to manufacture HealthCheckPolicy
.
Trait Implementations§
source§impl Clone for HealthCheckPolicy
impl Clone for HealthCheckPolicy
source§fn clone(&self) -> HealthCheckPolicy
fn clone(&self) -> HealthCheckPolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HealthCheckPolicy
impl Debug for HealthCheckPolicy
source§impl PartialEq for HealthCheckPolicy
impl PartialEq for HealthCheckPolicy
source§fn eq(&self, other: &HealthCheckPolicy) -> bool
fn eq(&self, other: &HealthCheckPolicy) -> bool
self
and other
values to be equal, and is used
by ==
.