Module Values.SequenceStoreDetailSource

Details about a sequence store.

Sourcetype nonrec t = {
  1. arn : SequenceStoreArn.t option;
    (*

    The store's ARN.

    *)
  2. id : SequenceStoreId.t option;
    (*

    The store's ID.

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

    The store's name.

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

    The store's description.

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

    The store's server-side encryption (SSE) settings.

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

    Status of the sequence store.

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

    The status message of the sequence store.

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

    The last-updated time of the Sequence Store.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?sseConfig:??? -> ?creationTime:??? -> ?fallbackLocation:??? -> ?eTagAlgorithmFamily:??? -> ?status:??? -> ?statusMessage:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SequenceStoreArn.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