Module Values.UpdateSequenceStoreRequestSource

Update one or more parameters for the sequence store.

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

    The ID of the sequence store.

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

    A name for the sequence store.

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

    A description for the sequence store.

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

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

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

    The S3 URI of a bucket and folder to store Read Sets that fail to upload.

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

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

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

    S3 access configuration parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?clientToken:??? -> ?fallbackLocation:??? -> ?propagatedSetLevelTags:??? -> ?s3AccessConfig:??? -> id:SequenceStoreId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of TagKey.t ] list | `String of SequenceStoreId.t | `Structure of (string * [> `String of AccessLogLocation.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