CopyableBuilder<CreateNetworkAclEntryRequest.Builder,CreateNetworkAclEntryRequest>
, SdkBuilder<CreateNetworkAclEntryRequest.Builder,CreateNetworkAclEntryRequest>
public static interface CreateNetworkAclEntryRequest.Builder extends CopyableBuilder<CreateNetworkAclEntryRequest.Builder,CreateNetworkAclEntryRequest>
Modifier and Type | Method | Description |
---|---|---|
CreateNetworkAclEntryRequest.Builder |
cidrBlock(String cidrBlock) |
The IPv4 network range to allow or deny, in CIDR notation (for example
172.16.0.0/24 ). |
CreateNetworkAclEntryRequest.Builder |
egress(Boolean egress) |
Indicates whether this is an egress rule (rule is applied to traffic leaving the subnet).
|
CreateNetworkAclEntryRequest.Builder |
icmpTypeCode(IcmpTypeCode icmpTypeCode) |
ICMP protocol: The ICMP or ICMPv6 type and code.
|
CreateNetworkAclEntryRequest.Builder |
ipv6CidrBlock(String ipv6CidrBlock) |
The IPv6 network range to allow or deny, in CIDR notation (for example
2001:db8:1234:1a00::/64 ). |
CreateNetworkAclEntryRequest.Builder |
networkAclId(String networkAclId) |
The ID of the network ACL.
|
CreateNetworkAclEntryRequest.Builder |
portRange(PortRange portRange) |
TCP or UDP protocols: The range of ports the rule applies to.
|
CreateNetworkAclEntryRequest.Builder |
protocol(String protocol) |
The protocol.
|
CreateNetworkAclEntryRequest.Builder |
ruleAction(String ruleAction) |
Indicates whether to allow or deny the traffic that matches the rule.
|
CreateNetworkAclEntryRequest.Builder |
ruleAction(RuleAction ruleAction) |
Indicates whether to allow or deny the traffic that matches the rule.
|
CreateNetworkAclEntryRequest.Builder |
ruleNumber(Integer ruleNumber) |
The rule number for the entry (for example, 100).
|
copy
apply, build
CreateNetworkAclEntryRequest.Builder cidrBlock(String cidrBlock)
The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24
).
cidrBlock
- The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24
).CreateNetworkAclEntryRequest.Builder egress(Boolean egress)
Indicates whether this is an egress rule (rule is applied to traffic leaving the subnet).
egress
- Indicates whether this is an egress rule (rule is applied to traffic leaving the subnet).CreateNetworkAclEntryRequest.Builder icmpTypeCode(IcmpTypeCode icmpTypeCode)
ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying the ICMP protocol, or protocol 58 (ICMPv6) with an IPv6 CIDR block.
icmpTypeCode
- ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying the ICMP protocol, or protocol
58 (ICMPv6) with an IPv6 CIDR block.CreateNetworkAclEntryRequest.Builder ipv6CidrBlock(String ipv6CidrBlock)
The IPv6 network range to allow or deny, in CIDR notation (for example 2001:db8:1234:1a00::/64
).
ipv6CidrBlock
- The IPv6 network range to allow or deny, in CIDR notation (for example
2001:db8:1234:1a00::/64
).CreateNetworkAclEntryRequest.Builder networkAclId(String networkAclId)
The ID of the network ACL.
networkAclId
- The ID of the network ACL.CreateNetworkAclEntryRequest.Builder portRange(PortRange portRange)
TCP or UDP protocols: The range of ports the rule applies to.
portRange
- TCP or UDP protocols: The range of ports the rule applies to.CreateNetworkAclEntryRequest.Builder protocol(String protocol)
The protocol. A value of -1
or all
means all protocols. If you specify
all
, -1
, or a protocol number other than tcp
, udp
, or
icmp
, traffic on all ports is allowed, regardless of any ports or ICMP types or codes you
specify. If you specify protocol 58
(ICMPv6) and specify an IPv4 CIDR block, traffic for all
ICMP types and codes allowed, regardless of any that you specify. If you specify protocol 58
(ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.
protocol
- The protocol. A value of -1
or all
means all protocols. If you specify
all
, -1
, or a protocol number other than tcp
, udp
,
or icmp
, traffic on all ports is allowed, regardless of any ports or ICMP types or codes
you specify. If you specify protocol 58
(ICMPv6) and specify an IPv4 CIDR block, traffic
for all ICMP types and codes allowed, regardless of any that you specify. If you specify protocol
58
(ICMPv6) and specify an IPv6 CIDR block, you must specify an ICMP type and code.CreateNetworkAclEntryRequest.Builder ruleAction(String ruleAction)
Indicates whether to allow or deny the traffic that matches the rule.
ruleAction
- Indicates whether to allow or deny the traffic that matches the rule.RuleAction
CreateNetworkAclEntryRequest.Builder ruleAction(RuleAction ruleAction)
Indicates whether to allow or deny the traffic that matches the rule.
ruleAction
- Indicates whether to allow or deny the traffic that matches the rule.RuleAction
CreateNetworkAclEntryRequest.Builder ruleNumber(Integer ruleNumber)
The rule number for the entry (for example, 100). ACL entries are processed in ascending order by rule number.
Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is reserved for internal use.
ruleNumber
- The rule number for the entry (for example, 100). ACL entries are processed in ascending order by rule
number.
Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is reserved for internal use.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.