Module Values.SequenceStoreS3AccessSource

The S3 access metadata of the sequence store.

Sourcetype nonrec t = {
  1. s3Uri : S3Uri.t option;
    (*

    The S3 URI of the sequence store.

    *)
  2. s3AccessPointArn : S3AccessPointArn.t option;
    (*

    This is ARN of the access point associated with the S3 bucket storing read sets.

    *)
  3. accessLogLocation : AccessLogLocation.t option;
    (*

    Location of the access logs.

    *)
}
Sourceval make : ?s3Uri:??? -> ?s3AccessPointArn:??? -> ?accessLogLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Uri.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