Interface CfnMeshProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMeshProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:04.793Z")
@Stability(Stable)
public interface CfnMeshProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMesh.
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.*;
CfnMeshProps cfnMeshProps = CfnMeshProps.builder()
.meshName("meshName")
.spec(MeshSpecProperty.builder()
.egressFilter(EgressFilterProperty.builder()
.type("type")
.build())
.serviceDiscovery(MeshServiceDiscoveryProperty.builder()
.ipPreference("ipPreference")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMeshPropsstatic final classAn implementation forCfnMeshProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMeshProps.Builderbuilder()default StringThe name to use for the service mesh.default ObjectgetSpec()The service mesh specification to apply.getTags()Optional metadata that you can apply to the service mesh to assist with categorization and organization.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMeshName
The name to use for the service mesh.- See Also:
-
getSpec
The service mesh specification to apply.Returns union: either
IResolvableorCfnMesh.MeshSpecProperty- See Also:
-
getTags
Optional metadata that you can apply to the service mesh to assist with categorization and organization.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 Also:
-
builder
- Returns:
- a
CfnMeshProps.BuilderofCfnMeshProps
-