public static interface CreateNetworkAclEntryRequest.Builder extends Ec2Request.Builder, SdkPojo, CopyableBuilder<CreateNetworkAclEntryRequest.Builder,CreateNetworkAclEntryRequest>
Modifier and Type | Method and 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).
|
default CreateNetworkAclEntryRequest.Builder |
icmpTypeCode(Consumer<IcmpTypeCode.Builder> icmpTypeCode)
ICMP protocol: The ICMP or ICMPv6 type and code.
|
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 |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) |
CreateNetworkAclEntryRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) |
default CreateNetworkAclEntryRequest.Builder |
portRange(Consumer<PortRange.Builder> portRange)
TCP or UDP protocols: The range of ports the rule applies to.
|
CreateNetworkAclEntryRequest.Builder |
portRange(PortRange portRange)
TCP or UDP protocols: The range of ports the rule applies to.
|
CreateNetworkAclEntryRequest.Builder |
protocol(String protocol)
The protocol number.
|
CreateNetworkAclEntryRequest.Builder |
ruleAction(RuleAction ruleAction)
Indicates whether to allow or deny the traffic that matches the rule.
|
CreateNetworkAclEntryRequest.Builder |
ruleAction(String 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).
|
build
overrideConfiguration
equalsBySdkFields, sdkFields
copy
applyMutation, build
CreateNetworkAclEntryRequest.Builder cidrBlock(String cidrBlock)
The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24
). We modify
the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18
, we
modify it to 100.68.0.0/18
.
cidrBlock
- The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24
). We
modify the specified CIDR block to its canonical form; for example, if you specify
100.68.0.18/18
, we modify it to 100.68.0.0/18
.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 protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.
icmpTypeCode
- ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol
58 (ICMPv6) with an IPv6 CIDR block.default CreateNetworkAclEntryRequest.Builder icmpTypeCode(Consumer<IcmpTypeCode.Builder> icmpTypeCode)
ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying protocol 1 (ICMP) or protocol 58 (ICMPv6) with an IPv6 CIDR block.
This is a convenience that creates an instance of theIcmpTypeCode.Builder
avoiding the need to
create one manually via IcmpTypeCode.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to icmpTypeCode(IcmpTypeCode)
.icmpTypeCode
- a consumer that will call methods on IcmpTypeCode.Builder
icmpTypeCode(IcmpTypeCode)
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. Required if specifying protocol 6 (TCP) or 17 (UDP).
portRange
- TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP)
or 17 (UDP).default CreateNetworkAclEntryRequest.Builder portRange(Consumer<PortRange.Builder> portRange)
TCP or UDP protocols: The range of ports the rule applies to. Required if specifying protocol 6 (TCP) or 17 (UDP).
This is a convenience that creates an instance of thePortRange.Builder
avoiding the need to create
one manually via PortRange.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to portRange(PortRange)
.portRange
- a consumer that will call methods on PortRange.Builder
portRange(PortRange)
CreateNetworkAclEntryRequest.Builder protocol(String protocol)
The protocol number. A value of "-1" means all protocols. If you specify "-1" or a protocol number other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any ports or ICMP types or codes that 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 number. A value of "-1" means all protocols. If you specify "-1" or a protocol number
other than "6" (TCP), "17" (UDP), or "1" (ICMP), traffic on all ports is allowed, regardless of any
ports or ICMP types or codes that 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
,
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
,
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.
CreateNetworkAclEntryRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
overrideConfiguration
in interface AwsRequest.Builder
CreateNetworkAclEntryRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
overrideConfiguration
in interface AwsRequest.Builder
Copyright © 2021. All rights reserved.