FindingsFilterReference
- class aws_cdk.aws_macie.FindingsFilterReference(*, findings_filter_arn, findings_filter_id)
Bases:
object
A reference to a FindingsFilter resource.
- Parameters:
findings_filter_arn (
str
) – The ARN of the FindingsFilter resource.findings_filter_id (
str
) – The Id of the FindingsFilter resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_macie as macie findings_filter_reference = macie.FindingsFilterReference( findings_filter_arn="findingsFilterArn", findings_filter_id="findingsFilterId" )
Attributes
- findings_filter_arn
The ARN of the FindingsFilter resource.
- findings_filter_id
The Id of the FindingsFilter resource.