Module Values_2.GetSchemaVersionResponseSource

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. schemaVersionId : Values_0.SchemaVersionIdString.t option;
    (*

    The SchemaVersionId of the schema version.

    *)
  2. schemaDefinition : Values_0.SchemaDefinitionString.t option;
    (*

    The schema definition for the schema ID.

    *)
  3. dataFormat : Values_0.DataFormat.t option;
    (*

    The data format of the schema definition. Currently AVRO, JSON and PROTOBUF are supported.

    *)
  4. schemaArn : Values_0.GlueResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the schema.

    *)
  5. versionNumber : Values_0.VersionLongNumber.t option;
    (*

    The version number of the schema.

    *)
  6. status : Values_1.SchemaVersionStatus.t option;
    (*

    The status of the schema version.

    *)
  7. createdTime : Values_1.CreatedTimestamp.t option;
    (*

    The date and time the schema version was created.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  3. | `InternalServiceException of Values_0.InternalServiceException.t
  4. | `InvalidInputException of Values_0.InvalidInputException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?schemaVersionId:??? -> ?schemaDefinition:??? -> ?dataFormat:??? -> ?schemaArn:??? -> ?versionNumber:??? -> ?status:??? -> ?createdTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.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 | `InternalServiceException of Values_0.InternalServiceException.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 * [> `Enum of string | `Long of Values_0.VersionLongNumber.t | `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