pub struct LambdaClient<'a> { /* private fields */ }Expand description
Client for the AWS Lambda API
Implementations§
Source§impl<'a> LambdaClient<'a>
impl<'a> LambdaClient<'a>
Sourcepub async fn list_functions(
&self,
master_region: &str,
function_version: &str,
marker: &str,
max_items: &str,
) -> Result<ListFunctionsResponse>
pub async fn list_functions( &self, master_region: &str, function_version: &str, marker: &str, max_items: &str, ) -> Result<ListFunctionsResponse>
Returns a list of Lambda functions, with the version-specific configuration of each.
Sourcepub async fn get_function_configuration(
&self,
function_name: &str,
qualifier: &str,
) -> Result<FunctionConfiguration>
pub async fn get_function_configuration( &self, function_name: &str, qualifier: &str, ) -> Result<FunctionConfiguration>
Returns the version-specific settings of a Lambda function or version.
Sourcepub async fn update_function_configuration(
&self,
function_name: &str,
body: &UpdateFunctionConfigurationRequest,
) -> Result<FunctionConfiguration>
pub async fn update_function_configuration( &self, function_name: &str, body: &UpdateFunctionConfigurationRequest, ) -> Result<FunctionConfiguration>
Modify the version-specific settings of a Lambda function.
Auto Trait Implementations§
impl<'a> Freeze for LambdaClient<'a>
impl<'a> !RefUnwindSafe 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>
impl<'a> !UnwindSafe 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