Interface AclTrafficConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AclTrafficConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:22.254Z") @Stability(Stable) public interface AclTrafficConfig extends software.amazon.jsii.JsiiSerializable
Acl Configuration for traffic.

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.*;
 AclTrafficConfig aclTrafficConfig = AclTrafficConfig.builder()
         .protocol(123)
         // the properties below are optional
         .icmp(AclIcmp.builder()
                 .code(123)
                 .type(123)
                 .build())
         .portRange(AclPortRange.builder()
                 .from(123)
                 .to(123)
                 .build())
         .build();
 
  • Method Details

    • getProtocol

      @Stability(Stable) @NotNull Number getProtocol()
      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.

      Default: 17

    • getIcmp

      @Stability(Stable) @Nullable default AclIcmp getIcmp()
      The Internet Control Message Protocol (ICMP) code and type.

      Default: - Required if specifying 1 (ICMP) for the protocol parameter.

    • getPortRange

      @Stability(Stable) @Nullable default AclPortRange getPortRange()
      The range of port numbers for the UDP/TCP protocol.

      Default: - Required if specifying 6 (TCP) or 17 (UDP) for the protocol parameter

    • builder

      @Stability(Stable) static AclTrafficConfig.Builder builder()
      Returns:
      a AclTrafficConfig.Builder of AclTrafficConfig