Module Values.ConnectionInvitationSummarySource

A summary view of a connection invitation containing key information without full details.

Sourcetype nonrec t = {
  1. catalog : Catalog.t option;
    (*

    The catalog identifier where the connection invitation exists.

    *)
  2. id : ConnectionInvitationId.t option;
    (*

    The unique identifier of the connection invitation.

    *)
  3. arn : ConnectionInvitationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the connection invitation.

    *)
  4. connectionId : ConnectionId.t option;
    (*

    The identifier of the connection associated with this invitation.

    *)
  5. connectionType : ConnectionType.t option;
    (*

    The type of connection being requested in the invitation.

    *)
  6. createdAt : DateTime.t option;
    (*

    The timestamp when the connection invitation was created.

    *)
  7. updatedAt : DateTime.t option;
    (*

    The timestamp when the connection invitation was last updated.

    *)
  8. expiresAt : DateTime.t option;
    (*

    The timestamp when the connection invitation will expire.

    *)
  9. otherParticipantIdentifier : ParticipantIdentifier.t option;
    (*

    The identifier of the other participant in the connection invitation.

    *)
  10. participantType : ParticipantType.t option;
    (*

    The type of participant (inviter or invitee) in the connection invitation.

    *)
  11. status : InvitationStatus.t option;
    (*

    The current status of the connection invitation.

    *)
}
Sourceval make : ?catalog:??? -> ?id:??? -> ?arn:??? -> ?connectionId:??? -> ?connectionType:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?expiresAt:??? -> ?otherParticipantIdentifier:??? -> ?participantType:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Catalog.t | `Timestamp of DateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t