Module Values.S3DataSourceConfigurationSource

The configuration information to connect to Amazon S3 as your data source.

Sourcetype nonrec t = {
  1. bucketArn : S3BucketArn.t;
    (*

    The Amazon Resource Name (ARN) of the S3 bucket that contains your data.

    *)
  2. inclusionPrefixes : S3Prefixes.t option;
    (*

    A list of S3 prefixes to include certain files or content. For more information, see Organizing objects using prefixes.

    *)
  3. bucketOwnerAccountId : BucketOwnerAccountId.t option;
    (*

    The account ID for the owner of the S3 bucket.

    *)
}
Sourceval context_ : string
Sourceval make : ?inclusionPrefixes:??? -> ?bucketOwnerAccountId:??? -> bucketArn:S3BucketArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of S3Prefix.t ] list | `String of S3BucketArn.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