Module Values_0.OutgoingCertificateSource

A certificate that has been transferred but not yet accepted.

Sourcetype nonrec t = {
  1. certificateArn : CertificateArn.t option;
    (*

    The certificate ARN.

    *)
  2. certificateId : CertificateId.t option;
    (*

    The certificate ID.

    *)
  3. transferredTo : AwsAccountId.t option;
    (*

    The Amazon Web Services account to which the transfer was made.

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

    The date the transfer was initiated.

    *)
  5. transferMessage : Message.t option;
    (*

    The transfer message.

    *)
  6. creationDate : DateType.t option;
    (*

    The certificate creation date.

    *)
}
Sourceval make : ?certificateArn:??? -> ?certificateId:??? -> ?transferredTo:??? -> ?transferDate:??? -> ?transferMessage:??? -> ?creationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CertificateArn.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