Module Values_2.QuerySchemaVersionMetadataResponseSource

Queries for the schema version metadata information.

Sourcetype nonrec t = {
  1. metadataInfoMap : MetadataInfoMap.t option;
    (*

    A map of a metadata key and associated values.

    *)
  2. schemaVersionId : Values_0.SchemaVersionIdString.t option;
    (*

    The unique version ID of the schema version.

    *)
  3. nextToken : SchemaRegistryTokenString.t option;
    (*

    A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  3. | `InvalidInputException of Values_0.InvalidInputException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?metadataInfoMap:??? -> ?schemaVersionId:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InvalidInputException of Values_0.InvalidInputException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InvalidInputException of Values_0.InvalidInputException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MetadataKeyString.t ] * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of MetadataValueString.t ]) list ] list | `String of MetadataValueString.t ]) list ]) list | `String of Values_0.SchemaVersionIdString.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