MemberInvitationReference
- class aws_cdk.aws_detective.MemberInvitationReference(*, graph_arn, member_id)
Bases:
object
A reference to a MemberInvitation resource.
- Parameters:
graph_arn (
str
) – The GraphArn of the MemberInvitation resource.member_id (
str
) – The MemberId of the MemberInvitation resource.
- 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 import aws_detective as detective member_invitation_reference = detective.MemberInvitationReference( graph_arn="graphArn", member_id="memberId" )
Attributes
- graph_arn
The GraphArn of the MemberInvitation resource.
- member_id
The MemberId of the MemberInvitation resource.