Module Values.UpdateSequenceStoreResponseSource

Update one or more parameters for the sequence store.

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

    The ID of the sequence store.

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

    The ARN of the sequence store.

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

    The name of the sequence store.

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

    Description of the sequence store.

    *)
  5. sseConfig : SseConfig.t option;
  6. creationTime : SyntheticTimestamp_date_time.t option;
    (*

    The time when the store was created.

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

    The last-updated time of the Sequence Store.

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

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

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

    The status of the sequence store.

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

    The status message of the sequence store.

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

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

    *)
  12. s3Access : SequenceStoreS3Access.t option;
  13. eTagAlgorithmFamily : ETagAlgorithmFamily.t option;
    (*

    The ETag algorithm family to use on ingested read sets.

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