interface ListenerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.ListenerProperty |
Java | software.amazon.awscdk.services.appmesh.CfnVirtualNode.ListenerProperty |
Python | aws_cdk.aws_appmesh.CfnVirtualNode.ListenerProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnVirtualNode » ListenerProperty |
An object that represents a listener for a virtual node.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const listenerProperty: appmesh.CfnVirtualNode.ListenerProperty = {
portMapping: {
port: 123,
protocol: 'protocol',
},
// the properties below are optional
connectionPool: {
grpc: {
maxRequests: 123,
},
http: {
maxConnections: 123,
// the properties below are optional
maxPendingRequests: 123,
},
http2: {
maxRequests: 123,
},
tcp: {
maxConnections: 123,
},
},
healthCheck: {
healthyThreshold: 123,
intervalMillis: 123,
protocol: 'protocol',
timeoutMillis: 123,
unhealthyThreshold: 123,
// the properties below are optional
path: 'path',
port: 123,
},
outlierDetection: {
baseEjectionDuration: {
unit: 'unit',
value: 123,
},
interval: {
unit: 'unit',
value: 123,
},
maxEjectionPercent: 123,
maxServerErrors: 123,
},
timeout: {
grpc: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
http: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
http2: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
tcp: {
idle: {
unit: 'unit',
value: 123,
},
},
},
tls: {
certificate: {
acm: {
certificateArn: 'certificateArn',
},
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
mode: 'mode',
// the properties below are optional
validation: {
trust: {
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
// the properties below are optional
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| port | IResolvable | Port | The port mapping information for the listener. |
| connection | IResolvable | Virtual | The connection pool information for the listener. |
| health | IResolvable | Health | The health check information for the listener. |
| outlier | IResolvable | Outlier | The outlier detection information for the listener. |
| timeout? | IResolvable | Listener | An object that represents timeouts for different protocols. |
| tls? | IResolvable | Listener | A reference to an object that represents the Transport Layer Security (TLS) properties for a listener. |
portMapping
Type:
IResolvable | Port
The port mapping information for the listener.
connectionPool?
Type:
IResolvable | Virtual
(optional)
The connection pool information for the listener.
healthCheck?
Type:
IResolvable | Health
(optional)
The health check information for the listener.
outlierDetection?
Type:
IResolvable | Outlier
(optional)
The outlier detection information for the listener.
timeout?
Type:
IResolvable | Listener
(optional)
An object that represents timeouts for different protocols.
tls?
Type:
IResolvable | Listener
(optional)
A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.

.NET
Java
Python
TypeScript