interface CfnDetectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty.CfnDetectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsguardduty#CfnDetectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.guardduty.CfnDetectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_guardduty.CfnDetectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_guardduty » CfnDetectorMixinProps |
Properties for CfnDetectorPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_guardduty as guardduty } from '@aws-cdk/cfn-property-mixins';
const cfnDetectorMixinProps: guardduty.CfnDetectorMixinProps = {
dataSources: {
kubernetes: {
auditLogs: {
enable: false,
},
},
malwareProtection: {
scanEc2InstanceWithFindings: {
ebsVolumes: false,
},
},
s3Logs: {
enable: false,
},
},
enable: false,
features: [{
additionalConfiguration: [{
name: 'name',
status: 'status',
}],
name: 'name',
status: 'status',
}],
findingPublishingFrequency: 'findingPublishingFrequency',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | CFNData | Describes which data sources will be enabled for the detector. |
| enable? | boolean | IResolvable | Specifies whether the detector is to be enabled on creation. |
| features? | IResolvable | (IResolvable | CFNFeature)[] | A list of features that will be configured for the detector. |
| finding | string | Specifies how frequently updated findings are exported. |
| tags? | Tag[] | Specifies tags added to a new detector resource. |
dataSources?
Type:
IResolvable | CFNData
(optional)
Describes which data sources will be enabled for the detector.
enable?
Type:
boolean | IResolvable
(optional)
Specifies whether the detector is to be enabled on creation.
features?
Type:
IResolvable | (IResolvable | CFNFeature)[]
(optional)
A list of features that will be configured for the detector.
findingPublishingFrequency?
Type:
string
(optional)
Specifies how frequently updated findings are exported.
tags?
Type:
Tag[]
(optional)
Specifies tags added to a new detector resource.
Each tag consists of a key and an optional value, both of which you define.
Currently, support is available only for creating and deleting a tag. No support exists for updating the tags.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript