CfnMemberInvitationMixinProps
- class aws_cdk.mixins_preview.aws_detective.mixins.CfnMemberInvitationMixinProps(*, disable_email_notification=None, graph_arn=None, member_email_address=None, member_id=None, message=None)
Bases:
objectProperties for CfnMemberInvitationPropsMixin.
- Parameters:
disable_email_notification (
Union[bool,IResolvable,None]) – Whether to send an invitation email to the member account. If set to true, the member account does not receive an invitation email. Default: - falsegraph_arn (
Optional[str]) – The ARN of the behavior graph to invite the account to contribute data to.member_email_address (
Optional[str]) – 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.member_id (
Optional[str]) – The AWS account identifier of the invited account.message (
Optional[str]) – Customized text to include in the invitation email message.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_detective import mixins as detective_mixins cfn_member_invitation_mixin_props = detective_mixins.CfnMemberInvitationMixinProps( disable_email_notification=False, graph_arn="graphArn", member_email_address="memberEmailAddress", member_id="memberId", message="message" )
Attributes
- disable_email_notification
Whether to send an invitation email to the member account.
If set to true, the member account does not receive an invitation email.
- graph_arn
The ARN of the behavior graph to invite the account to contribute data to.
- member_email_address
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.
- member_id
The AWS account identifier of the invited account.
- message
Customized text to include in the invitation email message.