Interface CfnCustomDetectionRuleAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomDetectionRuleAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:28.175Z")
@Stability(Stable)
public interface CfnCustomDetectionRuleAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCustomDetectionRuleAssociationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.guardduty.*;
CfnCustomDetectionRuleAssociationMixinProps cfnCustomDetectionRuleAssociationMixinProps = CfnCustomDetectionRuleAssociationMixinProps.builder()
.mode("mode")
.ruleId("ruleId")
.tags(List.of(TagItemProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomDetectionRuleAssociationMixinPropsstatic final classAn implementation forCfnCustomDetectionRuleAssociationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetMode()Whether the rule runs in LIVE mode (generates findings) or DRY_RUN mode (evaluates without generating findings).default StringThe catalog identifier of the custom detection rule to associate.getTags()The tags applied to the association.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<CfnCustomDetectionRuleAssociationPropsMixin.TagItemProperty> getTags()The tags applied to the association.- See Also:
-
builder
-