Interface CfnCluster.ClusterLoggingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.ClusterLoggingProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.ClusterLoggingProperty
extends software.amazon.jsii.JsiiSerializable
The cluster control plane logging configuration for your cluster.
When updating a resource, you must include this
ClusterLogging
property if the previous CloudFormation template of the resource had it.
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.eks.*; ClusterLoggingProperty clusterLoggingProperty = ClusterLoggingProperty.builder() .enabledTypes(List.of(LoggingTypeConfigProperty.builder() .type("type") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ClusterLoggingProperty
static final class
An implementation forCfnCluster.ClusterLoggingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabledTypes
The enabled control plane logs for your cluster. All log types are disabled if the array is empty.When updating a resource, you must include this
EnabledTypes
property if the previous CloudFormation template of the resource had it.- See Also:
-
builder
-