Module Values.AnalyticsS3BucketDestinationSource

Contains information about where to publish the analytics results.

Sourcetype nonrec t = {
  1. format : AnalyticsS3ExportFileFormat.t;
    (*

    Specifies the file format used when exporting data to Amazon S3.

    *)
  2. bucketAccountId : AccountId.t option;
    (*

    The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data. Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.

    *)
  3. bucket : BucketName.t;
    (*

    The Amazon Resource Name (ARN) of the bucket to which data is exported.

    *)
  4. prefix : Prefix.t option;
    (*

    The prefix to use when exporting data. The prefix is prepended to all results.

    *)
}
Sourceval context_ : string
Sourceval make : ?bucketAccountId:??? -> ?prefix:??? -> format:AnalyticsS3ExportFileFormat.t -> bucket:BucketName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountId.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