Interface CfnDetectorPropsMixin.CFNDataSourceConfigurationsProperty

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

@Stability(Stable) public static interface CfnDetectorPropsMixin.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.mixins.preview.services.guardduty.mixins.*;
 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();
 

See Also: