Class VirtualNodeSpecListenerHealthCheckArgs
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.AppMesh.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class VirtualNodeSpecListenerHealthCheckArgs : ResourceArgs
Constructors
View SourceVirtualNodeSpecListenerHealthCheckArgs()
Declaration
public VirtualNodeSpecListenerHealthCheckArgs()
Properties
View SourceHealthyThreshold
The number of consecutive successful health checks that must occur before declaring listener healthy.
Declaration
public Input<int> HealthyThreshold { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
IntervalMillis
The time period in milliseconds between each health check execution.
Declaration
public Input<int> IntervalMillis { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Path
The destination path for the health check request. This is only required if the specified protocol is http.
Declaration
public Input<string> Path { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Port
The destination port for the health check request. This port must match the port defined in the port_mapping for the listener.
Declaration
public Input<int> Port { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Protocol
The protocol for the health check request. Valid values are http and tcp.
Declaration
public Input<string> Protocol { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
TimeoutMillis
The amount of time to wait when receiving a response from the health check, in milliseconds.
Declaration
public Input<int> TimeoutMillis { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UnhealthyThreshold
The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy.
Declaration
public Input<int> UnhealthyThreshold { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |