Module Values.CreateAnnotationStoreVersionRequestSource

Creates a new version of an annotation store.

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

    The name of an annotation store version from which versions are being created.

    *)
  2. versionName : VersionName.t;
    (*

    The name given to an annotation store version to distinguish it from other versions.

    *)
  3. description : Description.t option;
    (*

    The description of an annotation store version.

    *)
  4. versionOptions : VersionOptions.t option;
    (*

    The options for an annotation store version.

    *)
  5. tags : TagMap.t option;
    (*

    Any tags added to annotation store version.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?versionOptions:??? -> ?tags:??? -> name:StoreName.t -> versionName:VersionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of StoreName.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Map of ([> `String of SchemaItemKeyString.t ] * [> `Enum of string ]) list ] list | `Map of ([> `Enum of string ] * [> `String of FormatToHeaderValueString.t ]) list ]) list ]) 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