Module Values.S3DestinationSource

Configuration parameters for where in an S3 bucket to place the harvested content

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

    The name of an S3 bucket within which harvested content will be exported

    *)
  2. manifestKey : string;
    (*

    The key in the specified S3 bucket where the harvested top-level manifest will be placed.

    *)
  3. roleArn : string;
    (*

    The IAM role used to write to the specified S3 bucket

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:string -> manifestKey:string -> roleArn:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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