Class CfnMeshPropsMixin.MeshSpecProperty
An object that represents the specification of a service mesh.
Implements
Inherited Members
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
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
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
Remarks
ServiceDiscovery
An object that represents the service discovery information for a service mesh.
public object? ServiceDiscovery { get; set; }