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

.NET
Go
Java
Python
TypeScript