Show / Hide Table of Contents

Interface IVirtualGatewayAttributes

Unterface with properties necessary to import a reusable VirtualGateway.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualGatewayAttributes
Syntax (vb)
Public Interface IVirtualGatewayAttributes
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 virtualGatewayAttributes = new VirtualGatewayAttributes {
                Mesh = mesh,
                VirtualGatewayName = "virtualGatewayName"
            };

Synopsis

Properties

Mesh

The Mesh that the VirtualGateway belongs to.

VirtualGatewayName

The name of the VirtualGateway.

Properties

Mesh

The Mesh that the VirtualGateway belongs to.

IMesh Mesh { get; }
Property Value

IMesh

Remarks

ExampleMetadata: fixture=_generated

VirtualGatewayName

The name of the VirtualGateway.

string VirtualGatewayName { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX