Module Values.GetSequenceStoreResponseSource

Retrieves metadata for a sequence store using its ID and returns it in JSON format.

Sourcetype nonrec t = {
  1. id : SequenceStoreId.t option;
    (*

    The store's ID.

    *)
  2. arn : SequenceStoreArn.t option;
    (*

    The store's ARN.

    *)
  3. name : SequenceStoreName.t option;
    (*

    The store's name.

    *)
  4. description : SequenceStoreDescription.t option;
    (*

    The store's description.

    *)
  5. sseConfig : SseConfig.t option;
    (*

    The store's server-side encryption (SSE) settings.

    *)
  6. creationTime : SyntheticTimestamp_date_time.t option;
    (*

    When the store was created.

    *)
  7. fallbackLocation : FallbackLocation.t option;
    (*

    An S3 location that is used to store files that have failed a direct upload.

    *)
  8. s3Access : SequenceStoreS3Access.t option;
    (*

    The S3 metadata of a sequence store, including the ARN and S3 URI of the S3 bucket.

    *)
  9. eTagAlgorithmFamily : ETagAlgorithmFamily.t option;
    (*

    The algorithm family of the ETag.

    *)
  10. status : SequenceStoreStatus.t option;
    (*

    The status of the sequence store.

    *)
  11. statusMessage : SequenceStoreStatusMessage.t option;
    (*

    The status message of the sequence store.

    *)
  12. propagatedSetLevelTags : PropagatedSetLevelTags.t option;
    (*

    The tags keys to propagate to the S3 objects associated with read sets in the sequence store.

    *)
  13. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The last-updated time of the sequence store.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `RequestTimeoutException of RequestTimeoutException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?sseConfig:??? -> ?creationTime:??? -> ?fallbackLocation:??? -> ?s3Access:??? -> ?eTagAlgorithmFamily:??? -> ?status:??? -> ?statusMessage:??? -> ?propagatedSetLevelTags:??? -> ?updateTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.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 | `RequestTimeoutException of RequestTimeoutException.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 | `List of [> `String of TagKey.t ] list | `String of SequenceStoreId.t | `Structure of (string * [> `Enum of string | `String of SseConfigKeyArnString.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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