Show / Hide Table of Contents

Class CfnVirtualRouter.PortMappingProperty

An object representing a virtual router listener port mapping.

Inheritance
object
CfnVirtualRouter.PortMappingProperty
Implements
CfnVirtualRouter.IPortMappingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualRouter.PortMappingProperty : CfnVirtualRouter.IPortMappingProperty
Syntax (vb)
Public Class CfnVirtualRouter.PortMappingProperty Implements CfnVirtualRouter.IPortMappingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html

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.AWS.AppMesh;

             var portMappingProperty = new PortMappingProperty {
                 Port = 123,
                 Protocol = "protocol"
             };

Synopsis

Constructors

PortMappingProperty()

An object representing a virtual router listener port mapping.

Properties

Port

The port used for the port mapping.

Protocol

The protocol used for the port mapping.

Constructors

PortMappingProperty()

An object representing a virtual router listener port mapping.

public PortMappingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html

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.AWS.AppMesh;

             var portMappingProperty = new PortMappingProperty {
                 Port = 123,
                 Protocol = "protocol"
             };

Properties

Port

The port used for the port mapping.

public double Port { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html#cfn-appmesh-virtualrouter-portmapping-port

Protocol

The protocol used for the port mapping.

public string Protocol { get; set; }
Property Value

string

Remarks

Specify one protocol.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualrouter-portmapping.html#cfn-appmesh-virtualrouter-portmapping-protocol

Implements

CfnVirtualRouter.IPortMappingProperty
Back to top Generated by DocFX