Quiero métodos que me extraigan toda la información de las funciones lambda de Aws
def function_that(client, function_name): response = client.get_function( FunctionName=function_name, ) return response['Configuration']['FunctionArn'] function_that(client, 'my-function')