interface MemberInvitationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Detective.MemberInvitationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdetective#MemberInvitationReference |
Java | software.amazon.awscdk.services.detective.MemberInvitationReference |
Python | aws_cdk.aws_detective.MemberInvitationReference |
TypeScript | aws-cdk-lib » aws_detective » MemberInvitationReference |
A reference to a MemberInvitation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_detective as detective } from 'aws-cdk-lib';
const memberInvitationReference: detective.MemberInvitationReference = {
graphArn: 'graphArn',
memberId: 'memberId',
};
Properties
| Name | Type | Description |
|---|---|---|
| graph | string | The GraphArn of the MemberInvitation resource. |
| member | string | The MemberId of the MemberInvitation resource. |
graphArn
Type:
string
The GraphArn of the MemberInvitation resource.
memberId
Type:
string
The MemberId of the MemberInvitation resource.

.NET
Go
Java
Python
TypeScript