#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for ModifyTargetGroupInput
Implementations
sourceimpl Builder
impl Builder
sourcepub fn target_group_arn(self, input: impl Into<String>) -> Self
pub fn target_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the target group.
sourcepub fn set_target_group_arn(self, input: Option<String>) -> Self
pub fn set_target_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the target group.
sourcepub fn health_check_protocol(self, input: ProtocolEnum) -> Self
pub fn health_check_protocol(self, input: ProtocolEnum) -> Self
The protocol the load balancer uses when performing health checks on targets. For Application Load Balancers, the default is HTTP. For Network Load Balancers and Gateway Load Balancers, the default is TCP. The TCP protocol is not supported for health checks if the protocol of the target group is HTTP or HTTPS. It is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.
With Network Load Balancers, you can't modify this setting.
sourcepub fn set_health_check_protocol(self, input: Option<ProtocolEnum>) -> Self
pub fn set_health_check_protocol(self, input: Option<ProtocolEnum>) -> Self
The protocol the load balancer uses when performing health checks on targets. For Application Load Balancers, the default is HTTP. For Network Load Balancers and Gateway Load Balancers, the default is TCP. The TCP protocol is not supported for health checks if the protocol of the target group is HTTP or HTTPS. It is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.
With Network Load Balancers, you can't modify this setting.
sourcepub fn health_check_port(self, input: impl Into<String>) -> Self
pub fn health_check_port(self, input: impl Into<String>) -> Self
The port the load balancer uses when performing health checks on targets.
sourcepub fn set_health_check_port(self, input: Option<String>) -> Self
pub fn set_health_check_port(self, input: Option<String>) -> Self
The port the load balancer uses when performing health checks on targets.
sourcepub fn health_check_path(self, input: impl Into<String>) -> Self
pub fn health_check_path(self, input: impl Into<String>) -> Self
[HTTP/HTTPS health checks] The destination for health checks on the targets.
[HTTP1 or HTTP2 protocol version] The ping path. The default is /.
[GRPC protocol version] The path of a custom health check method with the format /package.service/method. The default is /Amazon Web Services.ALB/healthcheck.
sourcepub fn set_health_check_path(self, input: Option<String>) -> Self
pub fn set_health_check_path(self, input: Option<String>) -> Self
[HTTP/HTTPS health checks] The destination for health checks on the targets.
[HTTP1 or HTTP2 protocol version] The ping path. The default is /.
[GRPC protocol version] The path of a custom health check method with the format /package.service/method. The default is /Amazon Web Services.ALB/healthcheck.
sourcepub fn health_check_enabled(self, input: bool) -> Self
pub fn health_check_enabled(self, input: bool) -> Self
Indicates whether health checks are enabled.
sourcepub fn set_health_check_enabled(self, input: Option<bool>) -> Self
pub fn set_health_check_enabled(self, input: Option<bool>) -> Self
Indicates whether health checks are enabled.
sourcepub fn health_check_interval_seconds(self, input: i32) -> Self
pub fn health_check_interval_seconds(self, input: i32) -> Self
The approximate amount of time, in seconds, between health checks of an individual target. For TCP health checks, the supported values are 10 or 30 seconds.
With Network Load Balancers, you can't modify this setting.
sourcepub fn set_health_check_interval_seconds(self, input: Option<i32>) -> Self
pub fn set_health_check_interval_seconds(self, input: Option<i32>) -> Self
The approximate amount of time, in seconds, between health checks of an individual target. For TCP health checks, the supported values are 10 or 30 seconds.
With Network Load Balancers, you can't modify this setting.
sourcepub fn health_check_timeout_seconds(self, input: i32) -> Self
pub fn health_check_timeout_seconds(self, input: i32) -> Self
[HTTP/HTTPS health checks] The amount of time, in seconds, during which no response means a failed health check.
With Network Load Balancers, you can't modify this setting.
sourcepub fn set_health_check_timeout_seconds(self, input: Option<i32>) -> Self
pub fn set_health_check_timeout_seconds(self, input: Option<i32>) -> Self
[HTTP/HTTPS health checks] The amount of time, in seconds, during which no response means a failed health check.
With Network Load Balancers, you can't modify this setting.
sourcepub fn healthy_threshold_count(self, input: i32) -> Self
pub fn healthy_threshold_count(self, input: i32) -> Self
The number of consecutive health checks successes required before considering an unhealthy target healthy.
sourcepub fn set_healthy_threshold_count(self, input: Option<i32>) -> Self
pub fn set_healthy_threshold_count(self, input: Option<i32>) -> Self
The number of consecutive health checks successes required before considering an unhealthy target healthy.
sourcepub fn unhealthy_threshold_count(self, input: i32) -> Self
pub fn unhealthy_threshold_count(self, input: i32) -> Self
The number of consecutive health check failures required before considering the target unhealthy. For target groups with a protocol of TCP or TLS, this value must be the same as the healthy threshold count.
sourcepub fn set_unhealthy_threshold_count(self, input: Option<i32>) -> Self
pub fn set_unhealthy_threshold_count(self, input: Option<i32>) -> Self
The number of consecutive health check failures required before considering the target unhealthy. For target groups with a protocol of TCP or TLS, this value must be the same as the healthy threshold count.
sourcepub fn matcher(self, input: Matcher) -> Self
pub fn matcher(self, input: Matcher) -> Self
[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful response from a target.
With Network Load Balancers, you can't modify this setting.
sourcepub fn set_matcher(self, input: Option<Matcher>) -> Self
pub fn set_matcher(self, input: Option<Matcher>) -> Self
[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful response from a target.
With Network Load Balancers, you can't modify this setting.
sourcepub fn build(self) -> Result<ModifyTargetGroupInput, BuildError>
pub fn build(self) -> Result<ModifyTargetGroupInput, BuildError>
Consumes the builder and constructs a ModifyTargetGroupInput
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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