pub struct LambdaClient<'a> { /* private fields */ }Implementations§
Source§impl LambdaClient<'_>
impl LambdaClient<'_>
Sourcepub async fn get_invocations(&self) -> Result<LambdaInvocationsResponse, Error>
pub async fn get_invocations(&self) -> Result<LambdaInvocationsResponse, Error>
List recorded Lambda invocations.
Sourcepub async fn get_warm_containers(&self) -> Result<WarmContainersResponse, Error>
pub async fn get_warm_containers(&self) -> Result<WarmContainersResponse, Error>
List warm (cached) Lambda containers.
Sourcepub async fn evict_container(
&self,
function_name: &str,
) -> Result<EvictContainerResponse, Error>
pub async fn evict_container( &self, function_name: &str, ) -> Result<EvictContainerResponse, Error>
Evict the warm container for a specific function.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for LambdaClient<'a>
impl<'a> !UnwindSafe for LambdaClient<'a>
impl<'a> Freeze for LambdaClient<'a>
impl<'a> Send for LambdaClient<'a>
impl<'a> Sync for LambdaClient<'a>
impl<'a> Unpin for LambdaClient<'a>
impl<'a> UnsafeUnpin for LambdaClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more