Module Values.AwsCertificateManagerCertificateExtendedKeyUsageSource

Contains information about an extended key usage X.509 v3 extension object.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of an extension value. Indicates the purpose for which the certificate public key can be used.

    *)
  2. oId : NonEmptyString.t option;
    (*

    An object identifier (OID) for the extension value. The format is numbers separated by periods.

    *)
}
Sourceval make : ?name:??? -> ?oId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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