interface ThreatEntitySetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GuardDuty.ThreatEntitySetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsguardduty#ThreatEntitySetReference |
Java | software.amazon.awscdk.interfaces.guardduty.ThreatEntitySetReference |
Python | aws_cdk.interfaces.aws_guardduty.ThreatEntitySetReference |
TypeScript | aws-cdk-lib » interfaces » aws_guardduty » ThreatEntitySetReference |
A reference to a ThreatEntitySet 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_aws_guardduty } from 'aws-cdk-lib/interfaces';
const threatEntitySetReference: interfaces_aws_guardduty.ThreatEntitySetReference = {
detectorId: 'detectorId',
threatEntitySetId: 'threatEntitySetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The DetectorId of the ThreatEntitySet resource. |
| threat | string | The Id of the ThreatEntitySet resource. |
detectorId
Type:
string
The DetectorId of the ThreatEntitySet resource.
threatEntitySetId
Type:
string
The Id of the ThreatEntitySet resource.

.NET
Go
Java
Python
TypeScript