Enum AlbScheme

java.lang.Object
java.lang.Enum<AlbScheme>
software.amazon.awscdk.services.eks.AlbScheme
All Implemented Interfaces:
Serializable, Comparable<AlbScheme>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:29.562Z") @Stability(Stable) public enum AlbScheme extends Enum<AlbScheme>
ALB Scheme.

See Also:
  • Enum Constant Details

    • INTERNAL

      @Stability(Stable) public static final AlbScheme INTERNAL
      The nodes of an internal load balancer have only private IP addresses.

      The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can only route requests from clients with access to the VPC for the load balancer.

    • INTERNET_FACING

      @Stability(Stable) public static final AlbScheme INTERNET_FACING
      An internet-facing load balancer has a publicly resolvable DNS name, so it can route requests from clients over the internet to the EC2 instances that are registered with the load balancer.
  • Method Details

    • values

      public static AlbScheme[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AlbScheme valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null