Class CfnVirtualRouterPropsMixin.VirtualRouterListenerProperty
An object that represents a virtual router listener.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualRouterPropsMixin.VirtualRouterListenerProperty : CfnVirtualRouterPropsMixin.IVirtualRouterListenerProperty
Syntax (vb)
Public Class CfnVirtualRouterPropsMixin.VirtualRouterListenerProperty Implements CfnVirtualRouterPropsMixin.IVirtualRouterListenerProperty
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.Mixins.Preview.AWS.AppMesh.Mixins;
var virtualRouterListenerProperty = new VirtualRouterListenerProperty {
PortMapping = new PortMappingProperty {
Port = 123,
Protocol = "protocol"
}
};
Synopsis
Constructors
| VirtualRouterListenerProperty() | An object that represents a virtual router listener. |
Properties
| PortMapping | The port mapping information for the listener. |
Constructors
VirtualRouterListenerProperty()
An object that represents a virtual router listener.
public VirtualRouterListenerProperty()
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.Mixins.Preview.AWS.AppMesh.Mixins;
var virtualRouterListenerProperty = new VirtualRouterListenerProperty {
PortMapping = new PortMappingProperty {
Port = 123,
Protocol = "protocol"
}
};
Properties
PortMapping
The port mapping information for the listener.
public object? PortMapping { get; set; }