FilterReference

class aws_cdk.aws_guardduty.FilterReference(*, detector_id, filter_name)

Bases: object

A reference to a Filter resource.

Parameters:
  • detector_id (str) – The DetectorId of the Filter resource.

  • filter_name (str) – The Name of the Filter 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_guardduty as guardduty

filter_reference = guardduty.FilterReference(
    detector_id="detectorId",
    filter_name="filterName"
)

Attributes

detector_id

The DetectorId of the Filter resource.

filter_name

The Name of the Filter resource.