Class CfnVirtualService.VirtualServiceSpecProperty
An object that represents the specification of a virtual service.
Inheritance
System.Object
CfnVirtualService.VirtualServiceSpecProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VirtualServiceSpecProperty : Object, CfnVirtualService.IVirtualServiceSpecProperty
Syntax (vb)
Public Class VirtualServiceSpecProperty
Inherits Object
Implements CfnVirtualService.IVirtualServiceSpecProperty
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 virtualServiceSpecProperty = new VirtualServiceSpecProperty {
Provider = new VirtualServiceProviderProperty {
VirtualNode = new VirtualNodeServiceProviderProperty {
VirtualNodeName = "virtualNodeName"
},
VirtualRouter = new VirtualRouterServiceProviderProperty {
VirtualRouterName = "virtualRouterName"
}
}
};
Synopsis
Constructors
VirtualServiceSpecProperty() |
Properties
Provider | The App Mesh object that is acting as the provider for a virtual service. |
Constructors
VirtualServiceSpecProperty()
public VirtualServiceSpecProperty()
Properties
Provider
The App Mesh object that is acting as the provider for a virtual service.
public object Provider { get; set; }
Property Value
System.Object
Remarks
You can specify a single virtual node or virtual router.