![]() |
![]()
| ![]() |
![]()
NAMEPaws::AppRunner::HealthCheckConfiguration USAGEThis 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 DESCRIPTIONDescribes the settings for the health check that AWS App Runner performs to monitor the health of a service. ATTRIBUTESHealthyThreshold => IntThe number of consecutive checks that must succeed before App Runner decides that the service is healthy. Default: 3 Interval => IntThe time interval, in seconds, between health checks. Default: 5 Path => StrThe URL that health check requests are sent to. "Path" is only applicable when you set "Protocol" to "HTTP". Default: "/" Protocol => StrThe 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 => IntThe time, in seconds, to wait for a health check response before deciding it failed. Default: 2 UnhealthyThreshold => IntThe number of consecutive checks that must fail before App Runner decides that the service is unhealthy. Default: 3 SEE ALSOThis class forms part of Paws, describing an object used in Paws::AppRunner BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|