Interface CfnMeshProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMeshProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-11T15:55:53.090Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMeshProps
static final class
An implementation forCfnMeshProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMeshProps.Builder
builder()
default String
The name to use for the service mesh.default Object
getSpec()
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.- 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.Builder
ofCfnMeshProps
-