@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.489Z") @Stability(value=Stable) public interface NetworkAclEntryProps extends software.amazon.jsii.JsiiSerializable, CommonNetworkAclEntryOptions
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.ec2.*;
AclCidr aclCidr;
AclTraffic aclTraffic;
NetworkAcl networkAcl;
NetworkAclEntryProps networkAclEntryProps = NetworkAclEntryProps.builder()
.cidr(aclCidr)
.networkAcl(networkAcl)
.ruleNumber(123)
.traffic(aclTraffic)
// the properties below are optional
.direction(TrafficDirection.EGRESS)
.networkAclEntryName("networkAclEntryName")
.ruleAction(Action.ALLOW)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
NetworkAclEntryProps.Builder
A builder for
NetworkAclEntryProps |
static class |
NetworkAclEntryProps.Jsii$Proxy
An implementation for
NetworkAclEntryProps |
| Modifier and Type | Method and Description |
|---|---|
static NetworkAclEntryProps.Builder |
builder() |
INetworkAcl |
getNetworkAcl()
The network ACL this entry applies to.
|
getCidr, getDirection, getNetworkAclEntryName, getRuleAction, getRuleNumber, getTraffic@Stability(value=Stable) @NotNull INetworkAcl getNetworkAcl()
@Stability(value=Stable) static NetworkAclEntryProps.Builder builder()
builder in interface CommonNetworkAclEntryOptionsNetworkAclEntryProps.Builder of NetworkAclEntryPropsCopyright © 2022. All rights reserved.