Module Values.CreateReferenceStoreRequestSource

Creates a reference store and returns metadata in JSON format. Reference stores are used to store reference genomes in FASTA format. A reference store is created when the first reference genome is imported. To import additional reference genomes from an Amazon S3 bucket, use the StartReferenceImportJob API operation. For more information, see Creating a HealthOmics reference store in the Amazon Web Services HealthOmics User Guide.

Sourcetype nonrec t = {
  1. name : ReferenceStoreName.t;
    (*

    A name for the store.

    *)
  2. description : ReferenceStoreDescription.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.

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

    To ensure that requests don't run multiple times, specify a unique token for each request.

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