Class MemberInvitationReference
A reference to a MemberInvitation resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Detective
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MemberInvitationReference : IMemberInvitationReference
Syntax (vb)
Public Class MemberInvitationReference Implements IMemberInvitationReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Detective;
var memberInvitationReference = new MemberInvitationReference {
GraphArn = "graphArn",
MemberId = "memberId"
};
Synopsis
Constructors
| MemberInvitationReference() | A reference to a MemberInvitation resource. |
Properties
| GraphArn | The GraphArn of the MemberInvitation resource. |
| MemberId | The MemberId of the MemberInvitation resource. |
Constructors
MemberInvitationReference()
A reference to a MemberInvitation resource.
public MemberInvitationReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Detective;
var memberInvitationReference = new MemberInvitationReference {
GraphArn = "graphArn",
MemberId = "memberId"
};
Properties
GraphArn
The GraphArn of the MemberInvitation resource.
public string GraphArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
MemberId
The MemberId of the MemberInvitation resource.
public string MemberId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated