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

.NET
Go
Java
Python
TypeScript