/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource schema for AWS::Detective::MemberInvitation */ export interface AwsDetectiveMemberinvitation { /** * The ARN of the graph to which the member account will be invited */ GraphArn: string; /** * The AWS account ID to be invited to join the graph as a member */ MemberId: string; /** * The root email address for the account to be invited, for validation. Updating this field has no effect. */ MemberEmailAddress: string; /** * When set to true, invitation emails are not sent to the member accounts. Member accounts must still accept the invitation before they are added to the behavior graph. Updating this field has no effect. */ DisableEmailNotification?: boolean; /** * A message to be included in the email invitation sent to the invited account. Updating this field has no effect. */ Message?: string; }