Interface FirewallStatefulRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FirewallStatefulRule.Builder,FirewallStatefulRule>,SdkBuilder<FirewallStatefulRule.Builder,FirewallStatefulRule>,SdkPojo
- Enclosing class:
- FirewallStatefulRule
public static interface FirewallStatefulRule.Builder extends SdkPojo, CopyableBuilder<FirewallStatefulRule.Builder,FirewallStatefulRule>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
ruleGroupArn
FirewallStatefulRule.Builder ruleGroupArn(String ruleGroupArn)
The ARN of the stateful rule group.
- Parameters:
ruleGroupArn- The ARN of the stateful rule group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
FirewallStatefulRule.Builder sources(Collection<String> sources)
The source IP addresses, in CIDR notation.
- Parameters:
sources- The source IP addresses, in CIDR notation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
FirewallStatefulRule.Builder sources(String... sources)
The source IP addresses, in CIDR notation.
- Parameters:
sources- The source IP addresses, in CIDR notation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinations
FirewallStatefulRule.Builder destinations(Collection<String> destinations)
The destination IP addresses, in CIDR notation.
- Parameters:
destinations- The destination IP addresses, in CIDR notation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinations
FirewallStatefulRule.Builder destinations(String... destinations)
The destination IP addresses, in CIDR notation.
- Parameters:
destinations- The destination IP addresses, in CIDR notation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourcePorts
FirewallStatefulRule.Builder sourcePorts(Collection<PortRange> sourcePorts)
The source ports.
- Parameters:
sourcePorts- The source ports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourcePorts
FirewallStatefulRule.Builder sourcePorts(PortRange... sourcePorts)
The source ports.
- Parameters:
sourcePorts- The source ports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourcePorts
FirewallStatefulRule.Builder sourcePorts(Consumer<PortRange.Builder>... sourcePorts)
The source ports.
This is a convenience method that creates an instance of thePortRange.Builderavoiding the need to create one manually viaPortRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sourcePorts(List.) - Parameters:
sourcePorts- a consumer that will call methods onPortRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sourcePorts(java.util.Collection)
-
destinationPorts
FirewallStatefulRule.Builder destinationPorts(Collection<PortRange> destinationPorts)
The destination ports.
- Parameters:
destinationPorts- The destination ports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationPorts
FirewallStatefulRule.Builder destinationPorts(PortRange... destinationPorts)
The destination ports.
- Parameters:
destinationPorts- The destination ports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationPorts
FirewallStatefulRule.Builder destinationPorts(Consumer<PortRange.Builder>... destinationPorts)
The destination ports.
This is a convenience method that creates an instance of thePortRange.Builderavoiding the need to create one manually viaPortRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#destinationPorts(List.) - Parameters:
destinationPorts- a consumer that will call methods onPortRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#destinationPorts(java.util.Collection)
-
protocol
FirewallStatefulRule.Builder protocol(String protocol)
The protocol.
- Parameters:
protocol- The protocol.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleAction
FirewallStatefulRule.Builder ruleAction(String ruleAction)
The rule action. The possible values are
pass,drop, andalert.- Parameters:
ruleAction- The rule action. The possible values arepass,drop, andalert.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
direction
FirewallStatefulRule.Builder direction(String direction)
The direction. The possible values are
FORWARDandANY.- Parameters:
direction- The direction. The possible values areFORWARDandANY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-