interface MeshProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.MeshProps |
![]() | software.amazon.awscdk.services.appmesh.MeshProps |
![]() | aws_cdk.aws_appmesh.MeshProps |
![]() | @aws-cdk/aws-appmesh » MeshProps |
The set of properties used when creating a Mesh.
Example
const mesh = new appmesh.Mesh(this, 'AppMesh', {
meshName: 'myAwsMesh',
egressFilter: appmesh.MeshFilterType.ALLOW_ALL,
});
Properties
Name | Type | Description |
---|---|---|
egress | Mesh | Egress filter to be applied to the Mesh. |
mesh | string | The name of the Mesh being defined. |
egressFilter?
Type:
Mesh
(optional, default: DROP_ALL)
Egress filter to be applied to the Mesh.
meshName?
Type:
string
(optional, default: A name is automatically generated)
The name of the Mesh being defined.