Interface CfnCustomDetectionRuleAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomDetectionRuleAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:11.360Z")
@Stability(Stable)
public interface CfnCustomDetectionRuleAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCustomDetectionRuleAssociation.
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.*;
CfnCustomDetectionRuleAssociationProps cfnCustomDetectionRuleAssociationProps = CfnCustomDetectionRuleAssociationProps.builder()
.mode("mode")
.ruleId("ruleId")
// the properties below are optional
.tags(List.of(TagItemProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomDetectionRuleAssociationPropsstatic final classAn implementation forCfnCustomDetectionRuleAssociationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
Whether the rule runs in LIVE mode (generates findings) or DRY_RUN mode (evaluates without generating findings).- See Also:
-
getRuleId
The catalog identifier of the custom detection rule to associate.- See Also:
-
getTags
@Stability(Stable) @Nullable default List<CfnCustomDetectionRuleAssociation.TagItemProperty> getTags()The tags applied to the association.- See Also:
-
builder
-