Module Values.S3ConfigurationSource

Details on S3 location for error reports that result from running a query.

Sourcetype nonrec t = {
  1. bucketName : S3BucketName.t;
    (*

    Name of the S3 bucket under which error reports will be created.

    *)
  2. objectKeyPrefix : S3ObjectKeyPrefix.t option;
    (*

    Prefix for the error report key. Timestream by default adds the following prefix to the error report path.

    *)
  3. encryptionOption : S3EncryptionOption.t option;
    (*

    Encryption at rest options for the error reports. If no encryption option is specified, Timestream will choose SSE_S3 as default.

    *)
}
Sourceval context_ : string
Sourceval make : ?objectKeyPrefix:??? -> ?encryptionOption:??? -> bucketName:S3BucketName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3BucketName.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