Interface CfnDetector.CFNKubernetesConfigurationProperty

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

@Stability(Stable) public static interface CfnDetector.CFNKubernetesConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes which Kubernetes protection data sources are enabled for the detector.

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.guardduty.*;
 CFNKubernetesConfigurationProperty cFNKubernetesConfigurationProperty = CFNKubernetesConfigurationProperty.builder()
         .auditLogs(CFNKubernetesAuditLogsConfigurationProperty.builder()
                 .enable(false)
                 .build())
         .build();