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` # Generated by default/object.tt package Paws::AppMesh::HealthCheckPolicy; use Moose; has HealthyThreshold => (is => 'ro', isa => 'Int', request_name => 'healthyThreshold', traits => ['NameInRequest'], required => 1); has IntervalMillis => (is => 'ro', isa => 'Int', request_name => 'intervalMillis', traits => ['NameInRequest'], required => 1); has Path => (is => 'ro', isa => 'Str', request_name => 'path', traits => ['NameInRequest']); has Port => (is => 'ro', isa => 'Int', request_name => 'port', traits => ['NameInRequest']); has Protocol => (is => 'ro', isa => 'Str', request_name => 'protocol', traits => ['NameInRequest'], required => 1); has TimeoutMillis => (is => 'ro', isa => 'Int', request_name => 'timeoutMillis', traits => ['NameInRequest'], required => 1); has UnhealthyThreshold => (is => 'ro', isa => 'Int', request_name => 'unhealthyThreshold', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::AppMesh::HealthCheckPolicy =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::AppMesh::HealthCheckPolicy object: $service_obj->Method(Att1 => { HealthyThreshold => $value, ..., UnhealthyThreshold => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::AppMesh::HealthCheckPolicy object: $result = $service_obj->Method(...); $result->Att1->HealthyThreshold =head1 DESCRIPTION An object that represents the health check policy for a virtual node's listener. =head1 ATTRIBUTES =head2 B HealthyThreshold => Int The number of consecutive successful health checks that must occur before declaring listener healthy. =head2 B IntervalMillis => Int The time period in milliseconds between each health check execution. =head2 Path => 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. =head2 Port => Int The destination port for the health check request. This port must match the port defined in the PortMapping for the listener. =head2 B Protocol => Str The protocol for the health check request. If you specify C, then your service must conform to the GRPC Health Checking Protocol (https://github.com/grpc/grpc/blob/master/doc/health-checking.md). =head2 B TimeoutMillis => Int The amount of time to wait when receiving a response from the health check, in milliseconds. =head2 B UnhealthyThreshold => Int The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut