Show / Hide Table of Contents

Class VirtualRouterAttributes

Interface with properties ncecessary to import a reusable VirtualRouter.

Inheritance
object
VirtualRouterAttributes
Implements
IVirtualRouterAttributes
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 VirtualRouterAttributes : IVirtualRouterAttributes
Syntax (vb)
Public Class VirtualRouterAttributes Implements IVirtualRouterAttributes
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.AWS.AppMesh;

            Mesh mesh;

            var virtualRouterAttributes = new VirtualRouterAttributes {
                Mesh = mesh,
                VirtualRouterName = "virtualRouterName"
            };

Synopsis

Constructors

VirtualRouterAttributes()

Interface with properties ncecessary to import a reusable VirtualRouter.

Properties

Mesh

The Mesh which the VirtualRouter belongs to.

VirtualRouterName

The name of the VirtualRouter.

Constructors

VirtualRouterAttributes()

Interface with properties ncecessary to import a reusable VirtualRouter.

public VirtualRouterAttributes()
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.AWS.AppMesh;

            Mesh mesh;

            var virtualRouterAttributes = new VirtualRouterAttributes {
                Mesh = mesh,
                VirtualRouterName = "virtualRouterName"
            };

Properties

Mesh

The Mesh which the VirtualRouter belongs to.

public IMesh Mesh { get; set; }
Property Value

IMesh

Remarks

ExampleMetadata: fixture=_generated

VirtualRouterName

The name of the VirtualRouter.

public string VirtualRouterName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IVirtualRouterAttributes
Back to top Generated by DocFX