@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.566Z") @Stability(value=Stable) public enum MeshFilterType extends Enum<MeshFilterType>
Default: DROP_ALL
Example:
// Example automatically generated from non-compiling source. May contain errors.
Mesh mesh = Mesh.Builder.create(this, "AppMesh")
.meshName("myAwsMesh")
.egressFilter(MeshFilterType.ALLOW_ALL)
.build();
| Enum Constant and Description |
|---|
ALLOW_ALL
Allows all outbound traffic.
|
DROP_ALL
Allows traffic only to other resources inside the mesh, or API calls to amazon resources.
|
| Modifier and Type | Method and Description |
|---|---|
static MeshFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeshFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final MeshFilterType ALLOW_ALL
@Stability(value=Stable) public static final MeshFilterType DROP_ALL
public static MeshFilterType[] values()
for (MeshFilterType c : MeshFilterType.values()) System.out.println(c);
public static MeshFilterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.