Values.ConnectionInvitationSummarySourceA summary view of a connection invitation containing key information without full details.
type nonrec t = {catalog : Catalog.t option;The catalog identifier where the connection invitation exists.
*)id : ConnectionInvitationId.t option;The unique identifier of the connection invitation.
*)arn : ConnectionInvitationArn.t option;The Amazon Resource Name (ARN) of the connection invitation.
*)connectionId : ConnectionId.t option;The identifier of the connection associated with this invitation.
*)connectionType : ConnectionType.t option;The type of connection being requested in the invitation.
*)createdAt : DateTime.t option;The timestamp when the connection invitation was created.
*)updatedAt : DateTime.t option;The timestamp when the connection invitation was last updated.
*)expiresAt : DateTime.t option;The timestamp when the connection invitation will expire.
*)otherParticipantIdentifier : ParticipantIdentifier.t option;The identifier of the other participant in the connection invitation.
*)participantType : ParticipantType.t option;The type of participant (inviter or invitee) in the connection invitation.
*)status : InvitationStatus.t option;The current status of the connection invitation.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Catalog.t
| `Timestamp of DateTime.t ])
list ]