Module Values_0.TransferDataSource

Data used to transfer a certificate to an Amazon Web Services account.

Sourcetype nonrec t = {
  1. transferMessage : Message.t option;
    (*

    The transfer message.

    *)
  2. rejectReason : Message.t option;
    (*

    The reason why the transfer was rejected.

    *)
  3. transferDate : DateType.t option;
    (*

    The date the transfer took place.

    *)
  4. acceptDate : DateType.t option;
    (*

    The date the transfer was accepted.

    *)
  5. rejectDate : DateType.t option;
    (*

    The date the transfer was rejected.

    *)
}
Sourceval make : ?transferMessage:??? -> ?rejectReason:??? -> ?transferDate:??? -> ?acceptDate:??? -> ?rejectDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Message.t | `Timestamp of DateType.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