Enum ClusterLoggingTypes
- All Implemented Interfaces:
Serializable
,Comparable<ClusterLoggingTypes>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-11T15:55:57.860Z")
@Stability(Stable)
public enum ClusterLoggingTypes
extends Enum<ClusterLoggingTypes>
EKS cluster logging types.
Example:
Cluster cluster = Cluster.Builder.create(this, "Cluster") // ... .version(KubernetesVersion.V1_31) .clusterLogging(List.of(ClusterLoggingTypes.API, ClusterLoggingTypes.AUTHENTICATOR, ClusterLoggingTypes.SCHEDULER)) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLogs pertaining to API requests to the cluster.Logs pertaining to cluster access via the Kubernetes API.Logs pertaining to authentication requests into the cluster.Logs pertaining to state of cluster controllers.Logs pertaining to scheduling decisions. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterLoggingTypes
Returns the enum constant of this type with the specified name.static ClusterLoggingTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
API
Logs pertaining to API requests to the cluster. -
AUDIT
Logs pertaining to cluster access via the Kubernetes API. -
AUTHENTICATOR
Logs pertaining to authentication requests into the cluster. -
CONTROLLER_MANAGER
Logs pertaining to state of cluster controllers. -
SCHEDULER
Logs pertaining to scheduling decisions.
-
-
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
-