interface CfnMemberInvitationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Detective.Mixins.CfnMemberInvitationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdetective/mixins#CfnMemberInvitationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.detective.mixins.CfnMemberInvitationMixinProps |
Python | aws_cdk.mixins_preview.aws_detective.mixins.CfnMemberInvitationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_detective » mixins » CfnMemberInvitationMixinProps |
Properties for CfnMemberInvitationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as detective_mixins } from '@aws-cdk/mixins-preview/aws-detective';
const cfnMemberInvitationMixinProps: detective_mixins.CfnMemberInvitationMixinProps = {
disableEmailNotification: false,
graphArn: 'graphArn',
memberEmailAddress: 'memberEmailAddress',
memberId: 'memberId',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| disable | boolean | IResolvable | Whether to send an invitation email to the member account. |
| graph | string | The ARN of the behavior graph to invite the account to contribute data to. |
| member | string | The root user email address of the invited account. |
| member | string | The AWS account identifier of the invited account. |
| message? | string | Customized text to include in the invitation email message. |
disableEmailNotification?
Type:
boolean | IResolvable
(optional, default: false)
Whether to send an invitation email to the member account.
If set to true, the member account does not receive an invitation email.
graphArn?
Type:
string
(optional)
The ARN of the behavior graph to invite the account to contribute data to.
memberEmailAddress?
Type:
string
(optional)
The root user email address of the invited account.
If the email address provided is not the root user email address for the provided account, the invitation creation fails.
memberId?
Type:
string
(optional)
The AWS account identifier of the invited account.
message?
Type:
string
(optional)
Customized text to include in the invitation email message.

.NET
Go
Java
Python
TypeScript