Module Values.S3ManifestConfigSource

Specifies the S3 bucket where you're hosting the manifest that you want DataSync to use. For more information and configuration examples, see Specifying what DataSync transfers by using a manifest.

Sourcetype nonrec t = {
  1. manifestObjectPath : S3Subdirectory.t;
    (*

    Specifies the Amazon S3 object key of your manifest. This can include a prefix (for example, prefix/my-manifest.csv).

    *)
  2. bucketAccessRoleArn : IamRoleArn.t;
    (*

    Specifies the Identity and Access Management (IAM) role that allows DataSync to access your manifest. For more information, see Providing DataSync access to your manifest.

    *)
  3. s3BucketArn : S3BucketArn.t;
    (*

    Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.

    *)
  4. manifestObjectVersionId : S3ObjectVersionId.t option;
    (*

    Specifies the object version ID of the manifest that you want DataSync to use. If you don't set this, DataSync uses the latest version of the object.

    *)
}
Sourceval context_ : string
Sourceval make : ?manifestObjectVersionId:??? -> manifestObjectPath:S3Subdirectory.t -> bucketAccessRoleArn:IamRoleArn.t -> s3BucketArn:S3BucketArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Subdirectory.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