HealthCheckBindOptions

class aws_cdk.aws_appmesh.HealthCheckBindOptions(*, default_port=None)

Bases: object

Options used for creating the Health Check object.

Parameters:

default_port (Union[int, float, None]) – Port for Health Check interface. Default: - no default port is provided

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_appmesh as appmesh

health_check_bind_options = appmesh.HealthCheckBindOptions(
    default_port=123
)

Attributes

default_port

Port for Health Check interface.

Default:
  • no default port is provided