Show / Hide Table of Contents

Class CfnVirtualServiceMixinProps

Properties for CfnVirtualServicePropsMixin.

Inheritance
object
CfnVirtualServiceMixinProps
Implements
ICfnVirtualServiceMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnVirtualServiceMixinProps : ICfnVirtualServiceMixinProps
Syntax (vb)
Public Class CfnVirtualServiceMixinProps Implements ICfnVirtualServiceMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.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.CfnPropertyMixins.AWS.AppMesh;

             var cfnVirtualServiceMixinProps = new CfnVirtualServiceMixinProps {
                 MeshName = "meshName",
                 MeshOwner = "meshOwner",
                 Spec = new VirtualServiceSpecProperty {
                     Provider = new VirtualServiceProviderProperty {
                         VirtualNode = new VirtualNodeServiceProviderProperty {
                             VirtualNodeName = "virtualNodeName"
                         },
                         VirtualRouter = new VirtualRouterServiceProviderProperty {
                             VirtualRouterName = "virtualRouterName"
                         }
                     }
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VirtualServiceName = "virtualServiceName"
             };

Synopsis

Constructors

CfnVirtualServiceMixinProps()

Properties for CfnVirtualServicePropsMixin.

Properties

MeshName

The name of the service mesh to create the virtual service in.

MeshOwner

The AWS IAM account ID of the service mesh owner.

Spec

The virtual service specification to apply.

Tags

Optional metadata that you can apply to the virtual service to assist with categorization and organization.

VirtualServiceName

The name to use for the virtual service.

Constructors

CfnVirtualServiceMixinProps()

Properties for CfnVirtualServicePropsMixin.

public CfnVirtualServiceMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.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.CfnPropertyMixins.AWS.AppMesh;

             var cfnVirtualServiceMixinProps = new CfnVirtualServiceMixinProps {
                 MeshName = "meshName",
                 MeshOwner = "meshOwner",
                 Spec = new VirtualServiceSpecProperty {
                     Provider = new VirtualServiceProviderProperty {
                         VirtualNode = new VirtualNodeServiceProviderProperty {
                             VirtualNodeName = "virtualNodeName"
                         },
                         VirtualRouter = new VirtualRouterServiceProviderProperty {
                             VirtualRouterName = "virtualRouterName"
                         }
                     }
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VirtualServiceName = "virtualServiceName"
             };

Properties

MeshName

The name of the service mesh to create the virtual service in.

public string? MeshName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshname

MeshOwner

The AWS IAM account ID of the service mesh owner.

public string? MeshOwner { get; set; }
Property Value

string

Remarks

If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-meshowner

Spec

The virtual service specification to apply.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-spec

Type union: either IResolvable or CfnVirtualServicePropsMixin.IVirtualServiceSpecProperty

Tags

Optional metadata that you can apply to the virtual service to assist with categorization and organization.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-tags

VirtualServiceName

The name to use for the virtual service.

public string? VirtualServiceName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appmesh-virtualservice.html#cfn-appmesh-virtualservice-virtualservicename

Implements

ICfnVirtualServiceMixinProps
Back to top Generated by DocFX