CustomDetectionRuleAssociationReference
- class aws_cdk.interfaces.aws_guardduty.CustomDetectionRuleAssociationReference(*, association_id, custom_detection_rule_association_arn, rule_id)
Bases:
objectA reference to a CustomDetectionRuleAssociation resource.
- Parameters:
association_id (
str) – The AssociationId of the CustomDetectionRuleAssociation resource.custom_detection_rule_association_arn (
str) – The ARN of the CustomDetectionRuleAssociation resource.rule_id (
str) – The RuleId of the CustomDetectionRuleAssociation resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_guardduty as interfaces_guardduty custom_detection_rule_association_reference = interfaces_guardduty.CustomDetectionRuleAssociationReference( association_id="associationId", custom_detection_rule_association_arn="customDetectionRuleAssociationArn", rule_id="ruleId" )
Attributes
- association_id
The AssociationId of the CustomDetectionRuleAssociation resource.
- custom_detection_rule_association_arn
The ARN of the CustomDetectionRuleAssociation resource.
- rule_id
The RuleId of the CustomDetectionRuleAssociation resource.