Class VirtualServiceAttributes
Interface with properties ncecessary to import a reusable VirtualService.
Implements
Inherited Members
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
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
Remarks
ExampleMetadata: fixture=_generated