public static interface CfnDetector.CFNDataSourceConfigurationsProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDetector.CFNDataSourceConfigurationsProperty.Builder
A builder for
CfnDetector.CFNDataSourceConfigurationsProperty |
static class |
CfnDetector.CFNDataSourceConfigurationsProperty.Jsii$Proxy
An implementation for
CfnDetector.CFNDataSourceConfigurationsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDetector.CFNDataSourceConfigurationsProperty.Builder |
builder() |
default java.lang.Object |
getKubernetes()
Describes which Kuberentes data sources are enabled for a detector.
|
default java.lang.Object |
getMalwareProtection()
Describes whether Malware Protection will be enabled as a data source.
|
default java.lang.Object |
getS3Logs()
Describes whether S3 data event logs are enabled as a data source.
|
default java.lang.Object getKubernetes()
default java.lang.Object getMalwareProtection()
default java.lang.Object getS3Logs()
static CfnDetector.CFNDataSourceConfigurationsProperty.Builder builder()