NAME
Paws::AppRunner::HealthCheckConfiguration
USAGE
This class represents one of two things:
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::AppRunner::HealthCheckConfiguration object:
$service_obj->Method(Att1 => { HealthyThreshold => $value, ..., UnhealthyThreshold => $value  });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::AppRunner::HealthCheckConfiguration object:
$result = $service_obj->Method(...);
$result->Att1->HealthyThreshold
DESCRIPTION
Describes the settings for the health check that AWS App Runner performs to monitor the health of a service.
ATTRIBUTES
HealthyThreshold => Int
The number of consecutive checks that must succeed before App Runner decides that the service is healthy.
Default: 3
Interval => Int
The time interval, in seconds, between health checks.
Default: 5
Path => Str
The URL that health check requests are sent to.
Path is only applicable when you set Protocol to HTTP.
Default: "/"
Protocol => Str
The IP protocol that App Runner uses to perform health checks for your service.
If you set Protocol to HTTP, App Runner sends health check requests to the HTTP path specified by Path.
Default: TCP
Timeout => Int
The time, in seconds, to wait for a health check response before deciding it failed.
Default: 2
UnhealthyThreshold => Int
The number of consecutive checks that must fail before App Runner decides that the service is unhealthy.
Default: 3
SEE ALSO
This class forms part of Paws, describing an object used in Paws::AppRunner
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues