We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
hi,
Im not sure where this could go within the existing documentation, so I thought I could just quickly dump it into an issue (feel free to close it)
I had some trouble getting imagemagick-aws-lambda-2 to work with AWS-CDK the other night, so I thought I would share how I got it to work
const imageMagick = new CfnApplication(scope, 'imageMagick', { location: { applicationId: 'arn:aws:serverlessrepo:us-east-1:145266761615:applications/image-magick-lambda-layer', semanticVersion: '1.0.0' } }) const lambdaFn = new lambda.Function(this, 'myLambda', { ... layers: [ lambda.LayerVersion.fromLayerVersionArn(this, 'imageLayer', imageMagick.getAtt('Outputs.LayerVersion').toString()) ] })
The text was updated successfully, but these errors were encountered:
👍 definitely worth adding this to the README.md - thanks for sharing @nexus-uw!
README.md
Sorry, something went wrong.
No branches or pull requests
hi,
Im not sure where this could go within the existing documentation, so I thought I could just quickly dump it into an issue (feel free to close it)
I had some trouble getting imagemagick-aws-lambda-2
to work with AWS-CDK the other night, so I thought I would share how I got it to work
The text was updated successfully, but these errors were encountered: