Module Values.ChannelHandshakeSummarySource

Summary information about a channel handshake.

Sourcetype nonrec t = {
  1. id : ChannelHandshakeId.t option;
    (*

    The unique identifier of the handshake.

    *)
  2. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the handshake.

    *)
  3. catalog : Catalog.t option;
    (*

    The catalog identifier associated with the handshake.

    *)
  4. handshakeType : HandshakeType.t option;
    (*

    The type of the handshake.

    *)
  5. ownerAccountId : AccountId.t option;
    (*

    The AWS account ID of the handshake owner.

    *)
  6. senderAccountId : AccountId.t option;
    (*

    The AWS account ID of the handshake sender.

    *)
  7. senderDisplayName : PartnerProfileDisplayName.t option;
    (*

    The display name of the handshake sender.

    *)
  8. receiverAccountId : AccountId.t option;
    (*

    The AWS account ID of the handshake receiver.

    *)
  9. associatedResourceId : AssociatedResourceId.t option;
    (*

    The identifier of the resource associated with the handshake.

    *)
  10. detail : HandshakeDetail.t option;
    (*

    Detailed information about the handshake.

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

    The timestamp when the handshake was created.

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

    The timestamp when the handshake was last updated.

    *)
  13. status : HandshakeStatus.t option;
    (*

    The current status of the handshake.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?catalog:??? -> ?handshakeType:??? -> ?ownerAccountId:??? -> ?senderAccountId:??? -> ?senderDisplayName:??? -> ?receiverAccountId:??? -> ?associatedResourceId:??? -> ?detail:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ChannelHandshakeId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Note.t | `Timestamp of DateTime.t ]) list ]) list | `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