interface CfnMemberMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMemberMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMemberMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMemberMixinProps |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMemberMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMemberMixinProps |
Properties for CfnMemberPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.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 cfnMemberMixinProps: guardduty_mixins.CfnMemberMixinProps = {
detectorId: 'detectorId',
disableEmailNotification: false,
email: 'email',
memberId: 'memberId',
message: 'message',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The ID of the detector associated with the GuardDuty service to add the member to. |
| disable | boolean | IResolvable | Specifies whether or not to disable email notification for the member account that you invite. |
| email? | string | The email address associated with the member account. |
| member | string | The AWS account ID of the account to designate as a member. |
| message? | string | The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members. |
| status? | string | You can use the Status property to update the status of the relationship between the member account and its administrator account. |
detectorId?
Type:
string
(optional)
The ID of the detector associated with the GuardDuty service to add the member to.
disableEmailNotification?
Type:
boolean | IResolvable
(optional)
Specifies whether or not to disable email notification for the member account that you invite.
email?
Type:
string
(optional)
The email address associated with the member account.
memberId?
Type:
string
(optional)
The AWS account ID of the account to designate as a member.
message?
Type:
string
(optional)
The invitation message that you want to send to the accounts that you're inviting to GuardDuty as members.
status?
Type:
string
(optional)
You can use the Status property to update the status of the relationship between the member account and its administrator account.
Valid values are Created and Invited when using an AWS::GuardDuty::Member resource. If the value for this property is not provided or set to Created , a member account is created but not invited. If the value of this property is set to Invited , a member account is created and invited.

.NET
Go
Java
Python
TypeScript