interface FindingsFilterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Macie.FindingsFilterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmacie#FindingsFilterReference |
Java | software.amazon.awscdk.interfaces.macie.FindingsFilterReference |
Python | aws_cdk.interfaces.aws_macie.FindingsFilterReference |
TypeScript | aws-cdk-lib » interfaces » aws_macie » FindingsFilterReference |
A reference to a FindingsFilter resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_macie as interfaces_macie } from 'aws-cdk-lib/interfaces';
const findingsFilterReference: interfaces_macie.FindingsFilterReference = {
findingsFilterArn: 'findingsFilterArn',
findingsFilterId: 'findingsFilterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| findings | string | The ARN of the FindingsFilter resource. |
| findings | string | The Id of the FindingsFilter resource. |
findingsFilterArn
Type:
string
The ARN of the FindingsFilter resource.
findingsFilterId
Type:
string
The Id of the FindingsFilter resource.

.NET
Go
Java
Python
TypeScript