Show / Hide Table of Contents

Class CfnMeshPropsMixin.MeshSpecProperty

An object that represents the specification of a service mesh.

Inheritance
object
CfnMeshPropsMixin.MeshSpecProperty
Implements
CfnMeshPropsMixin.IMeshSpecProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMeshPropsMixin.MeshSpecProperty : CfnMeshPropsMixin.IMeshSpecProperty
Syntax (vb)
Public Class CfnMeshPropsMixin.MeshSpecProperty Implements CfnMeshPropsMixin.IMeshSpecProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var meshSpecProperty = new MeshSpecProperty {
                 EgressFilter = new EgressFilterProperty {
                     Type = "type"
                 },
                 ServiceDiscovery = new MeshServiceDiscoveryProperty {
                     IpPreference = "ipPreference"
                 }
             };

Synopsis

Constructors

MeshSpecProperty()

An object that represents the specification of a service mesh.

Properties

EgressFilter

The egress filter rules for the service mesh.

ServiceDiscovery

An object that represents the service discovery information for a service mesh.

Constructors

MeshSpecProperty()

An object that represents the specification of a service mesh.

public MeshSpecProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var meshSpecProperty = new MeshSpecProperty {
                 EgressFilter = new EgressFilterProperty {
                     Type = "type"
                 },
                 ServiceDiscovery = new MeshServiceDiscoveryProperty {
                     IpPreference = "ipPreference"
                 }
             };

Properties

EgressFilter

The egress filter rules for the service mesh.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.html#cfn-appmesh-mesh-meshspec-egressfilter

Type union: either IResolvable or CfnMeshPropsMixin.IEgressFilterProperty

ServiceDiscovery

An object that represents the service discovery information for a service mesh.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-meshspec.html#cfn-appmesh-mesh-meshspec-servicediscovery

Type union: either IResolvable or CfnMeshPropsMixin.IMeshServiceDiscoveryProperty

Implements

CfnMeshPropsMixin.IMeshSpecProperty
Back to top Generated by DocFX