pub trait SecretsManagerEventsApi: Send + Sync {
// Required method
fn get_service_account_events<'a, 'life0, 'async_trait>(
&'life0 self,
service_account_id: Uuid,
start: Option<String>,
end: Option<String>,
continuation_token: Option<&'a str>,
) -> Pin<Box<dyn Future<Output = Result<EventResponseModelListResponseModel, Error<GetServiceAccountEventsError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
Sourcefn get_service_account_events<'a, 'life0, 'async_trait>(
&'life0 self,
service_account_id: Uuid,
start: Option<String>,
end: Option<String>,
continuation_token: Option<&'a str>,
) -> Pin<Box<dyn Future<Output = Result<EventResponseModelListResponseModel, Error<GetServiceAccountEventsError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_service_account_events<'a, 'life0, 'async_trait>(
&'life0 self,
service_account_id: Uuid,
start: Option<String>,
end: Option<String>,
continuation_token: Option<&'a str>,
) -> Pin<Box<dyn Future<Output = Result<EventResponseModelListResponseModel, Error<GetServiceAccountEventsError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /sm/events/service-accounts/{serviceAccountId}