Class LoadBalancerHealthCheckArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Elb.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class LoadBalancerHealthCheckArgs : ResourceArgs
Constructors
View SourceLoadBalancerHealthCheckArgs()
Declaration
public LoadBalancerHealthCheckArgs()
Properties
View SourceHealthyThreshold
The number of checks before the instance is declared healthy.
Declaration
public Input<int> HealthyThreshold { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Interval
The interval between checks.
Declaration
public Input<int> Interval { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Target
The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL values are:
HTTP,HTTPS- PORT and PATH are requiredTCP,SSL- PORT is required, PATH is not supported
Declaration
public Input<string> Target { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Timeout
The length of time before the check times out.
Declaration
public Input<int> Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UnhealthyThreshold
The number of checks before the instance is declared unhealthy.
Declaration
public Input<int> UnhealthyThreshold { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |