Struct aws_sdk_elasticloadbalancingv2::model::TargetGroup
source · #[non_exhaustive]pub struct TargetGroup { /* private fields */ }
Expand description
Information about a target group.
Implementations§
source§impl TargetGroup
impl TargetGroup
sourcepub fn target_group_arn(&self) -> Option<&str>
pub fn target_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the target group.
sourcepub fn target_group_name(&self) -> Option<&str>
pub fn target_group_name(&self) -> Option<&str>
The name of the target group.
sourcepub fn protocol(&self) -> Option<&ProtocolEnum>
pub fn protocol(&self) -> Option<&ProtocolEnum>
The protocol to use for routing traffic to the targets.
sourcepub fn port(&self) -> Option<i32>
pub fn port(&self) -> Option<i32>
The port on which the targets are listening. Not used if the target is a Lambda function.
sourcepub fn health_check_protocol(&self) -> Option<&ProtocolEnum>
pub fn health_check_protocol(&self) -> Option<&ProtocolEnum>
The protocol to use to connect with the target. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.
sourcepub fn health_check_port(&self) -> Option<&str>
pub fn health_check_port(&self) -> Option<&str>
The port to use to connect with the target.
sourcepub fn health_check_enabled(&self) -> Option<bool>
pub fn health_check_enabled(&self) -> Option<bool>
Indicates whether health checks are enabled.
sourcepub fn health_check_interval_seconds(&self) -> Option<i32>
pub fn health_check_interval_seconds(&self) -> Option<i32>
The approximate amount of time, in seconds, between health checks of an individual target.
sourcepub fn health_check_timeout_seconds(&self) -> Option<i32>
pub fn health_check_timeout_seconds(&self) -> Option<i32>
The amount of time, in seconds, during which no response means a failed health check.
sourcepub fn healthy_threshold_count(&self) -> Option<i32>
pub fn healthy_threshold_count(&self) -> Option<i32>
The number of consecutive health checks successes required before considering an unhealthy target healthy.
sourcepub fn unhealthy_threshold_count(&self) -> Option<i32>
pub fn unhealthy_threshold_count(&self) -> Option<i32>
The number of consecutive health check failures required before considering the target unhealthy.
sourcepub fn health_check_path(&self) -> Option<&str>
pub fn health_check_path(&self) -> Option<&str>
The destination for health checks on the targets.
sourcepub fn matcher(&self) -> Option<&Matcher>
pub fn matcher(&self) -> Option<&Matcher>
The HTTP or gRPC codes to use when checking for a successful response from a target.
sourcepub fn load_balancer_arns(&self) -> Option<&[String]>
pub fn load_balancer_arns(&self) -> Option<&[String]>
The Amazon Resource Names (ARN) of the load balancers that route traffic to this target group.
sourcepub fn target_type(&self) -> Option<&TargetTypeEnum>
pub fn target_type(&self) -> Option<&TargetTypeEnum>
The type of target that you must specify when registering targets with this target group. The possible values are instance
(register targets by instance ID), ip
(register targets by IP address), lambda
(register a single Lambda function as a target), or alb
(register a single Application Load Balancer as a target).
sourcepub fn protocol_version(&self) -> Option<&str>
pub fn protocol_version(&self) -> Option<&str>
[HTTP/HTTPS protocol] The protocol version. The possible values are GRPC
, HTTP1
, and HTTP2
.
sourcepub fn ip_address_type(&self) -> Option<&TargetGroupIpAddressTypeEnum>
pub fn ip_address_type(&self) -> Option<&TargetGroupIpAddressTypeEnum>
The type of IP address used for this target group. The possible values are ipv4
and ipv6
. This is an optional parameter. If not specified, the IP address type defaults to ipv4
.
source§impl TargetGroup
impl TargetGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TargetGroup
.
Trait Implementations§
source§impl Clone for TargetGroup
impl Clone for TargetGroup
source§fn clone(&self) -> TargetGroup
fn clone(&self) -> TargetGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TargetGroup
impl Debug for TargetGroup
source§impl PartialEq<TargetGroup> for TargetGroup
impl PartialEq<TargetGroup> for TargetGroup
source§fn eq(&self, other: &TargetGroup) -> bool
fn eq(&self, other: &TargetGroup) -> bool
self
and other
values to be equal, and is used
by ==
.