Interface CfnVirtualService.IVirtualServiceProviderProperty
An object that represents the provider for a virtual service.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualServiceProviderProperty
Syntax (vb)
Public Interface IVirtualServiceProviderProperty
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 virtualServiceProviderProperty = new VirtualServiceProviderProperty {
VirtualNode = new VirtualNodeServiceProviderProperty {
VirtualNodeName = "virtualNodeName"
},
VirtualRouter = new VirtualRouterServiceProviderProperty {
VirtualRouterName = "virtualRouterName"
}
};
Synopsis
Properties
VirtualNode | The virtual node associated with a virtual service. |
VirtualRouter | The virtual router associated with a virtual service. |
Properties
VirtualNode
The virtual node associated with a virtual service.
virtual object VirtualNode { get; }
Property Value
System.Object
Remarks
VirtualRouter
The virtual router associated with a virtual service.
virtual object VirtualRouter { get; }
Property Value
System.Object