interface CfnCustomDetectionRuleAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty.CfnCustomDetectionRuleAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsguardduty#CfnCustomDetectionRuleAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.guardduty.CfnCustomDetectionRuleAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_guardduty.CfnCustomDetectionRuleAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_guardduty » CfnCustomDetectionRuleAssociationMixinProps |
Properties for CfnCustomDetectionRuleAssociationPropsMixin.
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 cfnCustomDetectionRuleAssociationMixinProps: guardduty.CfnCustomDetectionRuleAssociationMixinProps = {
mode: 'mode',
ruleId: 'ruleId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| mode? | string | Whether the rule runs in LIVE mode (generates findings) or DRY_RUN mode (evaluates without generating findings). |
| rule | string | The catalog identifier of the custom detection rule to associate. |
| tags? | Tag[] | The tags applied to the association. |
mode?
Type:
string
(optional)
Whether the rule runs in LIVE mode (generates findings) or DRY_RUN mode (evaluates without generating findings).
ruleId?
Type:
string
(optional)
The catalog identifier of the custom detection rule to associate.
tags?
Type:
Tag[]
(optional)
The tags applied to the association.

.NET
Go
Java
Python
TypeScript