Show / Hide Table of Contents

Class CfnVirtualService.VirtualServiceSpecProperty

An object that represents the specification of a virtual service.

Inheritance
object
CfnVirtualService.VirtualServiceSpecProperty
Implements
CfnVirtualService.IVirtualServiceSpecProperty
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 CfnVirtualService.VirtualServiceSpecProperty : CfnVirtualService.IVirtualServiceSpecProperty
Syntax (vb)
Public Class CfnVirtualService.VirtualServiceSpecProperty Implements CfnVirtualService.IVirtualServiceSpecProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualservicespec.html

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()

An object that represents the specification of a virtual service.

Properties

Provider

The App Mesh object that is acting as the provider for a virtual service.

Constructors

VirtualServiceSpecProperty()

An object that represents the specification of a virtual service.

public VirtualServiceSpecProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualservicespec.html

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"
                     }
                 }
             };

Properties

Provider

The App Mesh object that is acting as the provider for a virtual service.

public object? Provider { get; set; }
Property Value

object

Remarks

You can specify a single virtual node or virtual router.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualservice-virtualservicespec.html#cfn-appmesh-virtualservice-virtualservicespec-provider

Type union: either IResolvable or CfnVirtualService.IVirtualServiceProviderProperty

Implements

CfnVirtualService.IVirtualServiceSpecProperty
Back to top Generated by DocFX