Module Values.AccessMethodSource

Describes the type and format of extension access. Only one of CustomObjectIdentifier or AccessMethodType may be provided. Providing both results in InvalidArgsException.

Sourcetype nonrec t = {
  1. customObjectIdentifier : CustomObjectIdentifier.t option;
    (*

    An object identifier (OID) specifying the AccessMethod. The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID).

    *)
  2. accessMethodType : AccessMethodType.t option;
    (*

    Specifies the AccessMethod.

    *)
}
Sourceval make : ?customObjectIdentifier:??? -> ?accessMethodType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CustomObjectIdentifier.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