Best Python code snippet using localstack_python
put_subscription_filter.py
Source:put_subscription_filter.py
...18# Create CloudWatchLogs client19cloudwatch_logs = boto3.client('logs')2021# Create a subscription filter22cloudwatch_logs.put_subscription_filter(23 destinationArn='LAMBDA_FUNCTION_ARN',24 filterName='FILTER_NAME',25 filterPattern='ERROR',26 logGroupName='LOG_GROUP',27)28 29 30# snippet-end:[cloudwatch.python.put_subscription_filter.complete]31# snippet-comment:[These are tags for the AWS doc team's sample catalog. Do not remove.]32# snippet-sourcedescription:[put_subscription_filter.py demonstrates how to creates or updates a subscription filter and associates it with the specified log group.]33# snippet-keyword:[Python]34# snippet-keyword:[AWS SDK for Python (Boto3)]35# snippet-keyword:[Code Sample]36# snippet-keyword:[Amazon Cloudwatch Logs]
...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!