Module Values.DataIntegrationFlowS3SourceConfigurationSource

The S3 DataIntegrationFlow source configuration parameters.

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

    The bucketName of the S3 source objects.

    *)
  2. prefix : DataIntegrationFlowS3Prefix.t;
    (*

    The prefix of the S3 source objects. To trigger data ingestion, S3 files need to be put under s3://bucketName/prefix/.

    *)
  3. options : DataIntegrationFlowS3Options.t option;
    (*

    The other options of the S3 DataIntegrationFlow source.

    *)
}
Sourceval context_ : string
Sourceval make : ?options:??? -> bucketName:S3BucketName.t -> prefix:DataIntegrationFlowS3Prefix.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketName.t | `Structure of (string * [> `Enum of string ]) 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