Trait vector::sinks::aws_kinesis::record::SendRecord
source · pub trait SendRecord {
type T;
type E;
// Required method
fn send(
&self,
records: Vec<Self::T>,
stream_name: String,
) -> impl Future<Output = Result<KinesisResponse, SdkError<Self::E, HttpResponse>>> + Send;
}
Expand description
Capable of sending records.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.