pub async fn validate_test_data_in_s3<Keys, Item>(
    client: &Client,
    test_data: &HashMap<String, TestObjectWithData>,
    bucket: &str,
    prefix: &str,
    expected_keys: Keys
) -> Result<()>where
    Keys: IntoIterator<Item = Item>,
    Item: Into<Cow<'static, str>>,
Expand description

Validate the test data in a hash map against an S3 bucket to which an archive containing the test data has been extracted.