MasterReference
- class aws_cdk.aws_guardduty.MasterReference(*, detector_id, master_id)
Bases:
object
A reference to a Master resource.
- Parameters:
detector_id (
str
) – The DetectorId of the Master resource.master_id (
str
) – The MasterId of the Master 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 master_reference = guardduty.MasterReference( detector_id="detectorId", master_id="masterId" )
Attributes
- detector_id
The DetectorId of the Master resource.
- master_id
The MasterId of the Master resource.