faucet-source-s3 1.0.0

AWS S3 source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-source-s3
//!
//! AWS S3 source connector for the faucet-stream ecosystem.
//!
//! Lists and reads objects from an S3 bucket/prefix, parsing them as JSON Lines,
//! JSON arrays, or raw text.

pub mod config;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::{S3FileFormat, S3SourceConfig};
pub use stream::S3Source;