interface CfnMasterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMasterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMasterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMasterMixinProps |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMasterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMasterMixinProps |
Properties for CfnMasterPropsMixin.
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 { mixins as guardduty_mixins } from '@aws-cdk/mixins-preview/aws-guardduty';
const cfnMasterMixinProps: guardduty_mixins.CfnMasterMixinProps = {
detectorId: 'detectorId',
invitationId: 'invitationId',
masterId: 'masterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The unique ID of the detector of the GuardDuty member account. |
| invitation | string | The ID of the invitation that is sent to the account designated as a member account. |
| master | string | The AWS account ID of the account designated as the GuardDuty administrator account. |
detectorId?
Type:
string
(optional)
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.
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 .
masterId?
Type:
string
(optional)
The AWS account ID of the account designated as the GuardDuty administrator account.

.NET
Go
Java
Python
TypeScript