use super::Shard;
use aws_sdk_dynamodbstreams::types::Record;
#[derive(Debug, Clone)]
pub struct GetShardsOutput {
pub shards: Vec<Shard>,
pub last_shard_id: Option<String>,
}
#[derive(Debug, Clone)]
pub struct GetRecordsOutput {
pub shard: Option<Shard>,
pub records: Vec<Record>,
}