Show / Hide Table of Contents

Class VirtualServiceReference

A reference to a VirtualService resource.

Inheritance
object
VirtualServiceReference
Implements
IVirtualServiceReference
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 VirtualServiceReference : IVirtualServiceReference
Syntax (vb)
Public Class VirtualServiceReference Implements IVirtualServiceReference
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;

            var virtualServiceReference = new VirtualServiceReference {
                VirtualServiceArn = "virtualServiceArn",
                VirtualServiceId = "virtualServiceId"
            };

Synopsis

Constructors

VirtualServiceReference()

A reference to a VirtualService resource.

Properties

VirtualServiceArn

The ARN of the VirtualService resource.

VirtualServiceId

The Id of the VirtualService resource.

Constructors

VirtualServiceReference()

A reference to a VirtualService resource.

public VirtualServiceReference()
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;

            var virtualServiceReference = new VirtualServiceReference {
                VirtualServiceArn = "virtualServiceArn",
                VirtualServiceId = "virtualServiceId"
            };

Properties

VirtualServiceArn

The ARN of the VirtualService resource.

public string VirtualServiceArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

VirtualServiceId

The Id of the VirtualService resource.

public string VirtualServiceId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IVirtualServiceReference
Back to top Generated by DocFX