Show / Hide Table of Contents

Class HealthCheckBindOptions

Options used for creating the Health Check object.

Inheritance
object
HealthCheckBindOptions
Implements
IHealthCheckBindOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HealthCheckBindOptions : IHealthCheckBindOptions
Syntax (vb)
Public Class HealthCheckBindOptions Implements IHealthCheckBindOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.AppMesh;

            var healthCheckBindOptions = new HealthCheckBindOptions {
                DefaultPort = 123
            };

Synopsis

Constructors

HealthCheckBindOptions()

Options used for creating the Health Check object.

Properties

DefaultPort

Port for Health Check interface.

Constructors

HealthCheckBindOptions()

Options used for creating the Health Check object.

public HealthCheckBindOptions()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.AppMesh;

            var healthCheckBindOptions = new HealthCheckBindOptions {
                DefaultPort = 123
            };

Properties

DefaultPort

Port for Health Check interface.

public double? DefaultPort { get; set; }
Property Value

double?

Remarks

Default: - no default port is provided

Implements

IHealthCheckBindOptions
Back to top Generated by DocFX