AwsGlobalacceleratorHealthCheckArgs
interface AwsGlobalacceleratorHealthCheckArgs {
intervalSeconds?: 10 | 30;
path?: Input<string>;
port?: number;
protocol: 'TCP' | 'HTTP' | 'HTTPS';
thresholdCount?: number;
}Optional health-check configuration for an endpoint group.
Example
CODE
const healthCheck: AwsGlobalacceleratorHealthCheckArgs = { protocol: 'HTTPS', path: '/health', intervalSeconds: 30 };Properties
intervalSeconds: 10 | 30
Health-check interval in seconds.
path: Input<string>
Optional HTTP or HTTPS health-check path.
port: number
Optional destination port for health checks.
protocol: 'TCP' | 'HTTP' | 'HTTPS'
Health-check protocol.
thresholdCount: number
Consecutive health-check threshold.