interface VirtualRouterSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualRouterPropsMixin.VirtualRouterSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualRouterPropsMixin_VirtualRouterSpecProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualRouterPropsMixin.VirtualRouterSpecProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualRouterPropsMixin.VirtualRouterSpecProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualRouterPropsMixin » VirtualRouterSpecProperty |
An object that represents the specification of a virtual router.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const virtualRouterSpecProperty: appmesh.CfnVirtualRouterPropsMixin.VirtualRouterSpecProperty = {
listeners: [{
portMapping: {
port: 123,
protocol: 'protocol',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| listeners? | IResolvable | (IResolvable | Virtual)[] | The listeners that the virtual router is expected to receive inbound traffic from. |
listeners?
Type:
IResolvable | (IResolvable | Virtual)[]
(optional)
The listeners that the virtual router is expected to receive inbound traffic from.

.NET
Go
Java
Python
TypeScript