Interface NetworkAclEntry.Builder

All Superinterfaces:
Buildable, CopyableBuilder<NetworkAclEntry.Builder,NetworkAclEntry>, SdkBuilder<NetworkAclEntry.Builder,NetworkAclEntry>, SdkPojo
Enclosing class:
NetworkAclEntry

public static interface NetworkAclEntry.Builder extends SdkPojo, CopyableBuilder<NetworkAclEntry.Builder,NetworkAclEntry>
  • Method Details

    • cidrBlock

      NetworkAclEntry.Builder cidrBlock(String cidrBlock)

      The IPv4 network range to allow or deny, in CIDR notation.

      Parameters:
      cidrBlock - The IPv4 network range to allow or deny, in CIDR notation.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • egress

      Indicates whether the rule is an egress rule (applied to traffic leaving the subnet).

      Parameters:
      egress - Indicates whether the rule is an egress rule (applied to traffic leaving the subnet).
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • icmpTypeCode

      NetworkAclEntry.Builder icmpTypeCode(IcmpTypeCode icmpTypeCode)

      ICMP protocol: The ICMP type and code.

      Parameters:
      icmpTypeCode - ICMP protocol: The ICMP type and code.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • icmpTypeCode

      default NetworkAclEntry.Builder icmpTypeCode(Consumer<IcmpTypeCode.Builder> icmpTypeCode)

      ICMP protocol: The ICMP type and code.

      This is a convenience method that creates an instance of the IcmpTypeCode.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).

      Parameters:
      icmpTypeCode - a consumer that will call methods on IcmpTypeCode.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ipv6CidrBlock

      NetworkAclEntry.Builder ipv6CidrBlock(String ipv6CidrBlock)

      The IPv6 network range to allow or deny, in CIDR notation.

      Parameters:
      ipv6CidrBlock - The IPv6 network range to allow or deny, in CIDR notation.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • portRange

      NetworkAclEntry.Builder portRange(PortRange portRange)

      TCP or UDP protocols: The range of ports the rule applies to.

      Parameters:
      portRange - TCP or UDP protocols: The range of ports the rule applies to.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • portRange

      default NetworkAclEntry.Builder portRange(Consumer<PortRange.Builder> portRange)

      TCP or UDP protocols: The range of ports the rule applies to.

      This is a convenience method that creates an instance of the PortRange.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).

      Parameters:
      portRange - a consumer that will call methods on PortRange.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • protocol

      NetworkAclEntry.Builder protocol(String protocol)

      The protocol number. A value of "-1" means all protocols.

      Parameters:
      protocol - The protocol number. A value of "-1" means all protocols.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • ruleAction

      NetworkAclEntry.Builder ruleAction(String ruleAction)

      Indicates whether to allow or deny the traffic that matches the rule.

      Parameters:
      ruleAction - Indicates whether to allow or deny the traffic that matches the rule.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ruleAction

      NetworkAclEntry.Builder ruleAction(RuleAction ruleAction)

      Indicates whether to allow or deny the traffic that matches the rule.

      Parameters:
      ruleAction - Indicates whether to allow or deny the traffic that matches the rule.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ruleNumber

      NetworkAclEntry.Builder ruleNumber(Integer ruleNumber)

      The rule number for the entry. ACL entries are processed in ascending order by rule number.

      Parameters:
      ruleNumber - The rule number for the entry. ACL entries are processed in ascending order by rule number.
      Returns:
      Returns a reference to this object so that method calls can be chained together.