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: