Module Values.ConnectionSummarySource

A summary view of an active connection between partners containing key information.

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

    The catalog identifier where the connection exists.

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

    The unique identifier of the connection.

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

    The Amazon Resource Name (ARN) of the connection.

    *)
  4. otherParticipantAccountId : AwsAccountId.t option;
    (*

    The AWS account ID of the other participant in the connection.

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

    The timestamp when the connection was last updated.

    *)
  6. connectionTypes : ConnectionTypeSummaryMap.t option;
    (*

    A map of connection types and their summary information for this connection.

    *)
}
Sourceval make : ?catalog:??? -> ?id:??? -> ?arn:??? -> ?otherParticipantAccountId:??? -> ?updatedAt:??? -> ?connectionTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of PartnerProfileId.t ]) list ]) list ]) list ]) list | `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