RecordsetChain could be a useful convention which allows multiple Recordset calls on the same Recordset. For instance, a data collection chain may have a these stages:
Retrieve initial data from API (AwsTask)
Unwind a field (Recordset.unwind())
Create an Arn (Recordset.add_key_from_keys())
Convert Tags from List[dict] to Dict (RecordSet.key_value_list_to_dict())
RecordsetChain could be a useful convention which allows multiple Recordset calls on the same Recordset. For instance, a data collection chain may have a these stages:
AwsTask
)Recordset.unwind()
)Recordset.add_key_from_keys()
)List[dict]
toDict
(RecordSet.key_value_list_to_dict()
)CacheTask
)