Skip to content

Instantly share code, notes, and snippets.

@jgontrum
Last active January 15, 2021 08:55
Show Gist options
  • Save jgontrum/a20471e0545546f3f377d1d3df168705 to your computer and use it in GitHub Desktop.
Save jgontrum/a20471e0545546f3f377d1d3df168705 to your computer and use it in GitHub Desktop.
lambda_client = boto3.client('lambda')
lambda_client.add_permission(
FunctionName="MyLambdaFunctionARN",
StatementId="IUseTheSameHereAsTheRuleIdButYouDoAsYouPlease",
Action="lambda:InvokeFunction",
Principal="events.amazonaws.com",
SourceArn=rule["RuleArn"]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment