Interface CfnDetector.CFNDataSourceConfigurationsProperty

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

@Stability(Stable) public static interface CfnDetector.CFNDataSourceConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
Describes whether S3 data event logs, Kubernetes audit logs, or Malware Protection will be enabled as a data source when the detector is created.

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.*;
 CFNDataSourceConfigurationsProperty cFNDataSourceConfigurationsProperty = CFNDataSourceConfigurationsProperty.builder()
         .kubernetes(CFNKubernetesConfigurationProperty.builder()
                 .auditLogs(CFNKubernetesAuditLogsConfigurationProperty.builder()
                         .enable(false)
                         .build())
                 .build())
         .malwareProtection(CFNMalwareProtectionConfigurationProperty.builder()
                 .scanEc2InstanceWithFindings(CFNScanEc2InstanceWithFindingsConfigurationProperty.builder()
                         .ebsVolumes(false)
                         .build())
                 .build())
         .s3Logs(CFNS3LogsConfigurationProperty.builder()
                 .enable(false)
                 .build())
         .build();