I'm retrieving a list of rules from AWS EventBridge using the SDK in the following way:
var response = await ebClient.ListRulesAsync(rulesRequest, cancellationToken);
var rules = response.Rules;
Each rule in the list have Name
, ScheduleExpression
, etc. but not information such as last execution time or next execution time for that matter. I thought this information would be available or obtained in some other way through the SDK but can't figure it out. Is this possible?
Thanks in advance!