Skip to main content

faucet_source_s3/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-source-s3
4//!
5//! AWS S3 source connector for the faucet-stream ecosystem.
6//!
7//! Lists and reads objects from an S3 bucket/prefix, parsing them as JSON Lines,
8//! JSON arrays, or raw text.
9
10pub mod config;
11pub mod stream;
12
13pub use faucet_core::{FaucetError, Source};
14
15pub use config::{S3FileFormat, S3SourceConfig};
16pub use stream::S3Source;