Module Values.ManifestConfigSource

Configures a manifest, which is a list of files or objects that you want DataSync to transfer. For more information and configuration examples, see Specifying what DataSync transfers by using a manifest.

Sourcetype nonrec t = {
  1. action : ManifestAction.t option;
    (*

    Specifies what DataSync uses the manifest for.

    *)
  2. format : ManifestFormat.t option;
    (*

    Specifies the file format of your manifest. For more information, see Creating a manifest.

    *)
  3. source : SourceManifestConfig.t option;
    (*

    Specifies the manifest that you want DataSync to use and where it's hosted. You must specify this parameter if you're configuring a new manifest on or after February 7, 2024. If you don't, you'll get a 400 status code and ValidationException error stating that you're missing the IAM role for DataSync to access the S3 bucket where you're hosting your manifest. For more information, see Providing DataSync access to your manifest.

    *)
}
Sourceval make : ?action:??? -> ?format:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of S3Subdirectory.t ]) list ]) list ]) 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