Interface CfnMeshMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMeshMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.779Z")
@Stability(Stable)
public interface CfnMeshMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMeshPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appmesh.*;
CfnMeshMixinProps cfnMeshMixinProps = CfnMeshMixinProps.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 forCfnMeshMixinPropsstatic final classAn implementation forCfnMeshMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMeshMixinProps.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
IResolvableorCfnMeshPropsMixin.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
CfnMeshMixinProps.BuilderofCfnMeshMixinProps
-