aws-cdk-lib.aws_appmesh.CfnMeshProps

interface CfnMeshProps

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnMeshProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnMeshProps
Javasoftware.amazon.awscdk.services.appmesh.CfnMeshProps
Pythonaws_cdk.aws_appmesh.CfnMeshProps
TypeScript aws-cdk-lib » aws_appmesh » CfnMeshProps

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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const cfnMeshProps: appmesh.CfnMeshProps = {
  meshName: 'meshName',
  spec: {
    egressFilter: {
      type: 'type',
    },
    serviceDiscovery: {
      ipPreference: 'ipPreference',
    },
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
meshName?stringThe name to use for the service mesh.
spec?IResolvable | MeshSpecPropertyThe service mesh specification to apply.
tags?CfnTag[]Optional metadata that you can apply to the service mesh to assist with categorization and organization.

meshName?

Type: string (optional)

The name to use for the service mesh.


spec?

Type: IResolvable | MeshSpecProperty (optional)

The service mesh specification to apply.


tags?

Type: CfnTag[] (optional)

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.