Interface CfnMeshProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMeshProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.808Z") @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();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for CfnMeshProps
    static final class 
    An implementation for CfnMeshProps
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default String
    The name to use for the service mesh.
    default Object
    The service mesh specification to apply.
    default List<CfnTag>
    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

      @Stability(Stable) @Nullable default String getMeshName()
      The name to use for the service mesh.
    • getSpec

      @Stability(Stable) @Nullable default Object getSpec()
      The service mesh specification to apply.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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.

    • builder

      @Stability(Stable) static CfnMeshProps.Builder builder()
      Returns:
      a CfnMeshProps.Builder of CfnMeshProps