Interface IVirtualServiceAttributes
Interface with properties ncecessary to import a reusable VirtualService.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualServiceAttributes
Syntax (vb)
Public Interface 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
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. |
Properties
Mesh
VirtualServiceName
The name of the VirtualService, it is recommended this follows the fully-qualified domain name format.
string VirtualServiceName { get; }
Property Value
System.String