interface CfnMasterProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.GuardDuty.CfnMasterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#CfnMasterProps |
Java | software.amazon.awscdk.services.guardduty.CfnMasterProps |
Python | aws_cdk.aws_guardduty.CfnMasterProps |
TypeScript | aws-cdk-lib » aws_guardduty » CfnMasterProps |
Properties for defining a CfnMaster
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-master.html
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 cfnMasterProps: guardduty.CfnMasterProps = {
detectorId: 'detectorId',
masterId: 'masterId',
// the properties below are optional
invitationId: 'invitationId',
};
Properties
Name | Type | Description |
---|---|---|
detector | string | The unique ID of the detector of the GuardDuty member account. |
master | string | The AWS account ID of the account designated as the GuardDuty administrator account. |
invitation | string | The ID of the invitation that is sent to the account designated as a member account. |
detectorId
Type:
string
The unique ID of the detector of the GuardDuty member account.
To find the detectorId
in the current Region, see the
Settings page in the GuardDuty console, or run the ListDetectors API.
masterId
Type:
string
The AWS account ID of the account designated as the GuardDuty administrator account.
invitationId?
Type:
string
(optional)
The ID of the invitation that is sent to the account designated as a member account.
You can find the invitation ID by running the ListInvitations in the GuardDuty API Reference .