Module Values.GetCertificateSigningRequestInputSource

Creates a certificate signing request (CSR) from a key pair.

Sourcetype nonrec t = {
  1. keyIdentifier : KeyArnOrKeyAliasType.t;
    (*

    Asymmetric key used for generating the certificate signing request

    *)
  2. signingAlgorithm : SigningAlgorithmType.t;
    (*

    The cryptographic algorithm used to sign your CSR.

    *)
  3. certificateSubject : CertificateSubjectType.t;
    (*

    The metadata used to create the CSR.

    *)
}
Sourceval context_ : string
Sourceval make : keyIdentifier:KeyArnOrKeyAliasType.t -> signingAlgorithm:SigningAlgorithmType.t -> certificateSubject:CertificateSubjectType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KeyArnOrKeyAliasType.t | `Structure of (string * [> `String of CertificateSubjectTypeCommonNameString.t ]) list ]) 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