Interface CfnMesh.MeshSpecProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMesh.MeshSpecProperty.Jsii$Proxy
- Enclosing class:
CfnMesh
@Stability(Stable)
public static interface CfnMesh.MeshSpecProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the specification of a service mesh.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appmesh.*;
MeshSpecProperty meshSpecProperty = MeshSpecProperty.builder()
.egressFilter(EgressFilterProperty.builder()
.type("type")
.build())
.serviceDiscovery(MeshServiceDiscoveryProperty.builder()
.ipPreference("ipPreference")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMesh.MeshSpecPropertystatic final classAn implementation forCfnMesh.MeshSpecProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEgressFilter
The egress filter rules for the service mesh.Returns union: either
IResolvableorCfnMesh.EgressFilterProperty- See Also:
-
getServiceDiscovery
An object that represents the service discovery information for a service mesh.Returns union: either
IResolvableorCfnMesh.MeshServiceDiscoveryProperty- See Also:
-
builder
- Returns:
- a
CfnMesh.MeshSpecProperty.BuilderofCfnMesh.MeshSpecProperty
-