Show / Hide Table of Contents

Class CfnDetector.CFNDataSourceConfigurationsProperty

Describes whether S3 data event logs, Kubernetes audit logs, or Malware Protection will be enabled as a data source when the detector is created.

Inheritance
System.Object
CfnDetector.CFNDataSourceConfigurationsProperty
Implements
CfnDetector.ICFNDataSourceConfigurationsProperty
Namespace: Amazon.CDK.AWS.GuardDuty
Assembly: Amazon.CDK.AWS.GuardDuty.dll
Syntax (csharp)
public class CFNDataSourceConfigurationsProperty : Object, CfnDetector.ICFNDataSourceConfigurationsProperty
Syntax (vb)
Public Class CFNDataSourceConfigurationsProperty
    Inherits Object
    Implements CfnDetector.ICFNDataSourceConfigurationsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfndatasourceconfigurations.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GuardDuty;

var cFNDataSourceConfigurationsProperty = new CFNDataSourceConfigurationsProperty {
    Kubernetes = new CFNKubernetesConfigurationProperty {
        AuditLogs = new CFNKubernetesAuditLogsConfigurationProperty {
            Enable = false
        }
    },
    MalwareProtection = new CFNMalwareProtectionConfigurationProperty {
        ScanEc2InstanceWithFindings = new CFNScanEc2InstanceWithFindingsConfigurationProperty {
            EbsVolumes = false
        }
    },
    S3Logs = new CFNS3LogsConfigurationProperty {
        Enable = false
    }
};

Synopsis

Constructors

CFNDataSourceConfigurationsProperty()

Properties

Kubernetes

Describes which Kubernetes data sources are enabled for a detector.

MalwareProtection

Describes whether Malware Protection will be enabled as a data source.

S3Logs

Describes whether S3 data event logs are enabled as a data source.

Constructors

CFNDataSourceConfigurationsProperty()

public CFNDataSourceConfigurationsProperty()

Properties

Kubernetes

Describes which Kubernetes data sources are enabled for a detector.

public object Kubernetes { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfndatasourceconfigurations.html#cfn-guardduty-detector-cfndatasourceconfigurations-kubernetes

MalwareProtection

Describes whether Malware Protection will be enabled as a data source.

public object MalwareProtection { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfndatasourceconfigurations.html#cfn-guardduty-detector-cfndatasourceconfigurations-malwareprotection

S3Logs

Describes whether S3 data event logs are enabled as a data source.

public object S3Logs { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfndatasourceconfigurations.html#cfn-guardduty-detector-cfndatasourceconfigurations-s3logs

Implements

CfnDetector.ICFNDataSourceConfigurationsProperty
Back to top Generated by DocFX