@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.465Z") @Stability(value=Stable) public interface CfnMeshProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMeshProps.Builder
A builder for
CfnMeshProps |
static class |
CfnMeshProps.Jsii$Proxy
An implementation for
CfnMeshProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnMeshProps.Builder |
builder() |
default String |
getMeshName()
The name to use for the service mesh.
|
default Object |
getSpec()
The service mesh specification to apply.
|
default List<CfnTag> |
getTags()
Optional metadata that you can apply to the service mesh to assist with categorization and organization.
|
@Stability(value=Stable) @Nullable default String getMeshName()
@Stability(value=Stable) @Nullable default Object getSpec()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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.
@Stability(value=Stable) static CfnMeshProps.Builder builder()
CfnMeshProps.Builder of CfnMeshPropsCopyright © 2022. All rights reserved.