@Stability(value=Stable)
public static interface CfnMesh.EgressFilterProperty
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.*;
EgressFilterProperty egressFilterProperty = EgressFilterProperty.builder()
.type("type")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMesh.EgressFilterProperty.Builder
A builder for
CfnMesh.EgressFilterProperty |
static class |
CfnMesh.EgressFilterProperty.Jsii$Proxy
An implementation for
CfnMesh.EgressFilterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMesh.EgressFilterProperty.Builder |
builder() |
String |
getType()
The egress filter type.
|
@Stability(value=Stable) @NotNull String getType()
By default, the type is DROP_ALL , which allows egress only from virtual nodes to other defined resources in the service mesh (and any traffic to *.amazonaws.com for AWS API calls). You can set the egress filter type to ALLOW_ALL to allow egress to any endpoint inside or outside of the service mesh.
@Stability(value=Stable) static CfnMesh.EgressFilterProperty.Builder builder()
Copyright © 2022. All rights reserved.