vector/sinks/util/
auth.rs1#[derive(Debug, Clone)]
2pub enum Auth {
3 Basic(crate::http::Auth),
4 #[cfg(feature = "aws-core")]
5 Aws {
6 credentials_provider: aws_credential_types::provider::SharedCredentialsProvider,
7 region: aws_types::region::Region,
8 },
9}