Module Values.S3DestinationSource

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.

Sourcetype nonrec t = {
  1. bucket : DestinationBucket.t option;
    (*

    The name of the Amazon S3 bucket used as the destination of an export file.

    *)
  2. key : DestinationKey.t option;
    (*

    The Amazon S3 bucket key of an export file. The key uniquely identifies the object, or export file, in the S3 bucket.

    *)
  3. metadataKey : MetadataKey.t option;
    (*

    The Amazon S3 bucket key of a metadata file. The key uniquely identifies the object, or metadata file, in the S3 bucket.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> ?metadataKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DestinationBucket.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