Show / Hide Table of Contents

Class VirtualServiceAttributes

Interface with properties ncecessary to import a reusable VirtualService.

Inheritance
object
VirtualServiceAttributes
Implements
IVirtualServiceAttributes
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 VirtualServiceAttributes : IVirtualServiceAttributes
Syntax (vb)
Public Class VirtualServiceAttributes Implements IVirtualServiceAttributes
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 virtualServiceAttributes = new VirtualServiceAttributes {
                Mesh = mesh,
                VirtualServiceName = "virtualServiceName"
            };

Synopsis

Constructors

VirtualServiceAttributes()

Interface with properties ncecessary to import a reusable VirtualService.

Properties

Mesh

The Mesh which the VirtualService belongs to.

VirtualServiceName

The name of the VirtualService, it is recommended this follows the fully-qualified domain name format.

Constructors

VirtualServiceAttributes()

Interface with properties ncecessary to import a reusable VirtualService.

public VirtualServiceAttributes()
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 virtualServiceAttributes = new VirtualServiceAttributes {
                Mesh = mesh,
                VirtualServiceName = "virtualServiceName"
            };

Properties

Mesh

The Mesh which the VirtualService belongs to.

public IMesh Mesh { get; set; }
Property Value

IMesh

Remarks

ExampleMetadata: fixture=_generated

VirtualServiceName

The name of the VirtualService, it is recommended this follows the fully-qualified domain name format.

public string VirtualServiceName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IVirtualServiceAttributes
Back to top Generated by DocFX