interface MasterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GuardDuty.MasterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#MasterReference |
Java | software.amazon.awscdk.services.guardduty.MasterReference |
Python | aws_cdk.aws_guardduty.MasterReference |
TypeScript | aws-cdk-lib » aws_guardduty » MasterReference |
A reference to a Master 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 guardduty } from 'aws-cdk-lib';
const masterReference: guardduty.MasterReference = {
detectorId: 'detectorId',
masterId: 'masterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The DetectorId of the Master resource. |
| master | string | The MasterId of the Master resource. |
detectorId
Type:
string
The DetectorId of the Master resource.
masterId
Type:
string
The MasterId of the Master resource.

.NET
Go
Java
Python
TypeScript