Module Values.StartExportRequestSource

Start export request.

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

    Start export request s3 bucket.

    *)
  2. s3Key : S3Key.t;
    (*

    Start export request s3key.

    *)
  3. s3BucketOwner : AccountID.t option;
    (*

    Start export request s3 bucket owner.

    *)
  4. tags : TagsMap.t option;
    (*

    Start import request tags.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3BucketOwner:??? -> ?tags:??? -> s3Bucket:S3BucketName.t -> s3Key:S3Key.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `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