Module Values.CreateSequenceStoreRequestSource

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. name : SequenceStoreName.t;
    (*

    A name for the store.

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

    A description for the store.

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

    Server-side encryption (SSE) settings for the store.

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

    Tags for the store. You can configure up to 50 tags.

    *)
  5. clientToken : ClientToken.t option;
    (*

    An idempotency token used to dedupe retry requests so that duplicate runs are not created.

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

    An S3 location that is used to store files that have failed a direct upload. You can add or change the fallbackLocation after creating a sequence store. This is not required if you are uploading files from a different S3 bucket.

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

    The ETag algorithm family to use for ingested read sets. The default value is MD5up. For more information on ETags, see ETags and data provenance in the Amazon Web Services HealthOmics User Guide.

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

    The tags keys to propagate to the S3 objects associated with read sets in the sequence store. These tags can be used as input to add metadata to your read sets.

    *)
  9. s3AccessConfig : S3AccessConfig.t option;
    (*

    S3 access configuration parameters. This specifies the parameters needed to access logs stored in S3 buckets. The S3 bucket must be in the same region and account as the sequence store.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?sseConfig:??? -> ?tags:??? -> ?clientToken:??? -> ?fallbackLocation:??? -> ?eTagAlgorithmFamily:??? -> ?propagatedSetLevelTags:??? -> ?s3AccessConfig:??? -> name:SequenceStoreName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of TagKey.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of SequenceStoreName.t | `Structure of (string * [> `Enum of string | `String of SseConfigKeyArnString.t ]) 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