PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::ELBv2::ModifyTargetGroup; use Moose; has HealthCheckEnabled => (is => 'ro', isa => 'Bool'); has HealthCheckIntervalSeconds => (is => 'ro', isa => 'Int'); has HealthCheckPath => (is => 'ro', isa => 'Str'); has HealthCheckPort => (is => 'ro', isa => 'Str'); has HealthCheckProtocol => (is => 'ro', isa => 'Str'); has HealthCheckTimeoutSeconds => (is => 'ro', isa => 'Int'); has HealthyThresholdCount => (is => 'ro', isa => 'Int'); has Matcher => (is => 'ro', isa => 'Paws::ELBv2::Matcher'); has TargetGroupArn => (is => 'ro', isa => 'Str', required => 1); has UnhealthyThresholdCount => (is => 'ro', isa => 'Int'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ModifyTargetGroup'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ELBv2::ModifyTargetGroupOutput'); class_has _result_key => (isa => 'Str', is => 'ro', default => 'ModifyTargetGroupResult'); 1; ### main pod documentation begin ### =head1 NAME Paws::ELBv2::ModifyTargetGroup - Arguments for method ModifyTargetGroup on L =head1 DESCRIPTION This class represents the parameters used for calling the method ModifyTargetGroup on the L service. Use the attributes of this class as arguments to method ModifyTargetGroup. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ModifyTargetGroup. =head1 SYNOPSIS my $elasticloadbalancing = Paws->service('ELBv2'); # To modify the health check configuration for a target group # This example changes the configuration of the health checks used to evaluate # the health of the targets for the specified target group. my $ModifyTargetGroupOutput = $elasticloadbalancing->ModifyTargetGroup( 'HealthCheckPort' => 443, 'HealthCheckProtocol' => 'HTTPS', 'TargetGroupArn' => 'arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f' ); # Results: my $TargetGroups = $ModifyTargetGroupOutput->TargetGroups; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 HealthCheckEnabled => Bool Indicates whether health checks are enabled. =head2 HealthCheckIntervalSeconds => Int 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. =head2 HealthCheckPath => Str [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. =head2 HealthCheckPort => Str The port the load balancer uses when performing health checks on targets. =head2 HealthCheckProtocol => Str 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. Valid values are: C<"HTTP">, C<"HTTPS">, C<"TCP">, C<"TLS">, C<"UDP">, C<"TCP_UDP">, C<"GENEVE"> =head2 HealthCheckTimeoutSeconds => Int [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. =head2 HealthyThresholdCount => Int The number of consecutive health checks successes required before considering an unhealthy target healthy. =head2 Matcher => L [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. =head2 B TargetGroupArn => Str The Amazon Resource Name (ARN) of the target group. =head2 UnhealthyThresholdCount => Int 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. =head1 SEE ALSO This class forms part of L, documenting arguments for method ModifyTargetGroup in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut