Values.S3DataSourceConfigurationSourceThe configuration information to connect to Amazon S3 as your data source.
type nonrec t = {bucketArn : S3BucketArn.t;The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
*)inclusionPrefixes : S3Prefixes.t option;A list of S3 prefixes to include certain files or content. For more information, see Organizing objects using prefixes.
*)bucketOwnerAccountId : BucketOwnerAccountId.t option;The account ID for the owner of the S3 bucket.
*)}val make :
?inclusionPrefixes:??? ->
?bucketOwnerAccountId:??? ->
bucketArn:S3BucketArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of S3Prefix.t ] list
| `String of S3BucketArn.t ])
list ]