Module Values_2.GetSchemaVersionInputSource

Get the specified schema by its unique ID assigned when a version of the schema is created or registered. Schema versions in Deleted status will not be included in the results.

Sourcetype nonrec t = {
  1. schemaId : Values_0.SchemaId.t option;
    (*

    This is a wrapper structure to contain schema identity fields. The structure contains: SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided. SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

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

    The SchemaVersionId of the schema version. This field is required for fetching by schema ID. Either this or the SchemaId wrapper has to be provided.

    *)
  3. schemaVersionNumber : SchemaVersionNumber.t option;
    (*

    The version number of the schema.

    *)
}
Sourceval make : ?schemaId:??? -> ?schemaVersionId:??? -> ?schemaVersionNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.SchemaVersionIdString.t | `Structure of (string * [> `Boolean of LatestSchemaVersionBoolean.t | `Long of Values_0.VersionLongNumber.t | `String of string ]) 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