Show / Hide Table of Contents

Class VirtualNodeSpecListenerHealthCheckArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VirtualNodeSpecListenerHealthCheckArgs
Inherited Members
ResourceArgs.Empty
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 Source

VirtualNodeSpecListenerHealthCheckArgs()

Declaration
public VirtualNodeSpecListenerHealthCheckArgs()

Properties

View Source

HealthyThreshold

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.