Module Values.AnnotationStoreVersionItemSource

Annotation store versions.

Sourcetype nonrec t = {
  1. storeId : ResourceId.t option;
    (*

    The store ID for an annotation store version.

    *)
  2. id : ResourceId.t option;
    (*

    The annotation store version ID.

    *)
  3. status : VersionStatus.t option;
    (*

    The status of an annotation store version.

    *)
  4. versionArn : Arn.t option;
    (*

    The Arn for an annotation store version.

    *)
  5. name : StoreName.t option;
    (*

    A name given to an annotation store version to distinguish it from others.

    *)
  6. versionName : VersionName.t option;
    (*

    The name of an annotation store version.

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

    The description of an annotation store version.

    *)
  8. creationTime : CreationTime.t option;
    (*

    The time stamp for when an annotation store version was created.

    *)
  9. updateTime : UpdateTime.t option;
    (*

    The time stamp for when an annotation store version was updated.

    *)
  10. statusMessage : StatusMessage.t option;
    (*

    The status of an annotation store version.

    *)
  11. versionSizeBytes : Long.t option;
    (*

    The size of an annotation store version in Bytes.

    *)
}
Sourceval make : ?storeId:??? -> ?id:??? -> ?status:??? -> ?versionArn:??? -> ?name:??? -> ?versionName:??? -> ?description:??? -> ?creationTime:??? -> ?updateTime:??? -> ?statusMessage:??? -> ?versionSizeBytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of ResourceId.t | `Timestamp of CreationTime.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