Interface CfnCluster.LoggingTypeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.LoggingTypeConfigProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.LoggingTypeConfigProperty extends software.amazon.jsii.JsiiSerializable
The enabled logging type.

For a list of the valid logging types, see the types property of LogSetup in the Amazon EKS API Reference .

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.*;
 LoggingTypeConfigProperty loggingTypeConfigProperty = LoggingTypeConfigProperty.builder()
         .type("type")
         .build();
 

See Also: