Enum HttpCodeElb
- All Implemented Interfaces:
Serializable
,Comparable<HttpCodeElb>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:59.417Z")
@Stability(Stable)
public enum HttpCodeElb
extends Enum<HttpCodeElb>
Count of HTTP status originating from the load balancer.
This count does not include any response codes generated by the targets.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe number of HTTP 3XX redirection codes that originate from the load balancer.The number of HTTP 4XX client error codes that originate from the load balancer.The number of HTTP 500 server error codes that originate from the load balancer.The number of HTTP 502 server error codes that originate from the load balancer.The number of HTTP 503 server error codes that originate from the load balancer.The number of HTTP 504 server error codes that originate from the load balancer.The number of HTTP 5XX server error codes that originate from the load balancer. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpCodeElb
Returns the enum constant of this type with the specified name.static HttpCodeElb[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ELB_3XX_COUNT
The number of HTTP 3XX redirection codes that originate from the load balancer. -
ELB_4XX_COUNT
The number of HTTP 4XX client error codes that originate from the load balancer.Client errors are generated when requests are malformed or incomplete. These requests have not been received by the target. This count does not include any response codes generated by the targets.
-
ELB_5XX_COUNT
The number of HTTP 5XX server error codes that originate from the load balancer. -
ELB_500_COUNT
The number of HTTP 500 server error codes that originate from the load balancer. -
ELB_502_COUNT
The number of HTTP 502 server error codes that originate from the load balancer. -
ELB_503_COUNT
The number of HTTP 503 server error codes that originate from the load balancer. -
ELB_504_COUNT
The number of HTTP 504 server error codes that originate from the load balancer.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-