GrpcGatewayListenerOptions¶
-
class
aws_cdk.aws_appmesh.
GrpcGatewayListenerOptions
(*, health_check=None, port=None, tls_certificate=None)¶ Bases:
object
(experimental) Represents the properties needed to define GRPC Listeners for a VirtualGateway.
- Parameters
health_check (
Optional
[HealthCheck
]) – (experimental) The health check information for the listener. Default: - no healthcheckport (
Union
[int
,float
,None
]) – (experimental) Port to listen for connections on. Default: - 8080tls_certificate (
Optional
[TlsCertificate
]) – (experimental) Represents the listener certificate. Default: - none
- Stability
experimental
Attributes
-
health_check
¶ (experimental) The health check information for the listener.
- Default
no healthcheck
- Stability
experimental
- Return type
Optional
[HealthCheck
]
-
port
¶ (experimental) Port to listen for connections on.
- Default
8080
- Stability
experimental
- Return type
Union
[int
,float
,None
]
-
tls_certificate
¶ (experimental) Represents the listener certificate.
- Default
none
- Stability
experimental
- Return type
Optional
[TlsCertificate
]