Module Values.GetAnnotationStoreVersionResponseSource

Retrieves the metadata for an annotation store version.

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

    The store ID for 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 the annotation store.

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

    The name of the annotation store.

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

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

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

    The description for 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. tags : TagMap.t option;
    (*

    Any tags associated with an annotation store version.

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

    The options for an annotation store version.

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

    The status of an annotation store version.

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

    The size of the annotation store version in Bytes.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?storeId:??? -> ?id:??? -> ?status:??? -> ?versionArn:??? -> ?name:??? -> ?versionName:??? -> ?description:??? -> ?creationTime:??? -> ?updateTime:??? -> ?tags:??? -> ?versionOptions:??? -> ?statusMessage:??? -> ?versionSizeBytes:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceId.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 | `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