Module Values.CreateSequenceStoreResponseSource

Creates a sequence store and returns its metadata. Sequence stores are used to store sequence data files called read sets that are saved in FASTQ, BAM, uBAM, or CRAM formats. For aligned formats (BAM and CRAM), a sequence store can only use one reference genome. For unaligned formats (FASTQ and uBAM), a reference genome is not required. You can create multiple sequence stores per region per account. The following are optional parameters you can specify for your sequence store: Use s3AccessConfig to configure your sequence store with S3 access logs (recommended). Use sseConfig to define your own KMS key for encryption. Use eTagAlgorithmFamily to define which algorithm to use for the HealthOmics eTag on objects. Use fallbackLocation to define a backup location for storing files that have failed a direct upload. Use propagatedSetLevelTags to configure tags that propagate to all objects in your store. For more information, see Creating a HealthOmics sequence store in the Amazon Web Services HealthOmics User Guide.

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;
    (*

    Server-side encryption (SSE) settings for the store. This contains the KMS key ARN that is used to encrypt read set objects.

    *)
  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. eTagAlgorithmFamily : ETagAlgorithmFamily.t option;
    (*

    The algorithm family of the ETag.

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

    The status of the sequence store.

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

    The status message of the sequence store.

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

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

    *)
  12. s3Access : SequenceStoreS3Access.t option;
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `RequestTimeoutException of RequestTimeoutException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.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:??? -> ?eTagAlgorithmFamily:??? -> ?status:??? -> ?statusMessage:??? -> ?propagatedSetLevelTags:??? -> ?s3Access:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ServiceQuotaExceededException of ServiceQuotaExceededException.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