vector/sinks/aws_cloudwatch_logs/mod.rs
1mod config;
2mod healthcheck;
3mod request;
4mod request_builder;
5mod retry;
6mod service;
7mod sink;
8
9#[cfg(all(test, feature = "aws-cloudwatch-logs-integration-tests"))]
10mod integration_tests;
11
12pub use self::config::CloudwatchLogsSinkConfig;
13use crate::internal_events::TemplateRenderingError;
14
15#[derive(Debug, Clone, Hash, Eq, PartialEq)]
16pub struct CloudwatchKey {
17 group: String,
18 stream: String,
19}