interface CustomDetectionRuleAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GuardDuty.CustomDetectionRuleAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsguardduty#CustomDetectionRuleAssociationReference |
Java | software.amazon.awscdk.interfaces.guardduty.CustomDetectionRuleAssociationReference |
Python | aws_cdk.interfaces.aws_guardduty.CustomDetectionRuleAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_guardduty » CustomDetectionRuleAssociationReference |
A reference to a CustomDetectionRuleAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_guardduty as interfaces_guardduty } from 'aws-cdk-lib/interfaces';
const customDetectionRuleAssociationReference: interfaces_guardduty.CustomDetectionRuleAssociationReference = {
associationId: 'associationId',
customDetectionRuleAssociationArn: 'customDetectionRuleAssociationArn',
ruleId: 'ruleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | string | The AssociationId of the CustomDetectionRuleAssociation resource. |
| custom | string | The ARN of the CustomDetectionRuleAssociation resource. |
| rule | string | The RuleId of the CustomDetectionRuleAssociation resource. |
associationId
Type:
string
The AssociationId of the CustomDetectionRuleAssociation resource.
customDetectionRuleAssociationArn
Type:
string
The ARN of the CustomDetectionRuleAssociation resource.
ruleId
Type:
string
The RuleId of the CustomDetectionRuleAssociation resource.

.NET
Go
Java
Python
TypeScript