AWS Lambda

With AWS Lambda, you can run code without provisioning or managing servers. You pay only for the compute time that you consume—there’s no charge when your code isn’t running. You can run code for virtually any type of application or backend service—all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.

Prerequisite Tasks

To use these operators, you must do a few things:

Operators

Create an AWS Lambda function

To create an AWS lambda function you can use LambdaCreateFunctionOperator.

tests/system/providers/amazon/aws/example_lambda.py[source]

create_lambda_function = LambdaCreateFunctionOperator(
    task_id="create_lambda_function",
    function_name=lambda_function_name,
    runtime="python3.9",
    role=role_arn,
    handler="lambda_function.test",
    code={
        "ZipFile": create_zip(CODE_CONTENT),
    },
)

Invoke an AWS Lambda function

To invoke an AWS lambda function you can use AwsLambdaInvokeFunctionOperator.

tests/system/providers/amazon/aws/example_lambda.py[source]

invoke_lambda_function = AwsLambdaInvokeFunctionOperator(
    task_id="invoke_lambda_function",
    function_name=lambda_function_name,
    payload=json.dumps({"SampleEvent": {"SampleData": {"Name": "XYZ", "DoB": "1993-01-01"}}}),
)

Sensors

Wait on an Amazon Lambda function state

To check the state of an Amazon Lambda function until it reaches the target state or another terminal state you can use LambdaFunctionStateSensor.

tests/system/providers/amazon/aws/example_lambda.py[source]

wait_lambda_function_state = LambdaFunctionStateSensor(
    task_id="wait_lambda_function_state",
    function_name=lambda_function_name,
)

Was this entry helpful?