Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@aws-solutions-constructs/aws-cloudfront-apigateway-lambda
Advanced tools
CDK Constructs for AWS Cloudfront to AWS API Gateway to AWS Lambda integration.
All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
Reference Documentation: | https://docs.aws.amazon.com/solutions/latest/constructs/ |
---|
Language | Package |
---|---|
Python | aws_solutions_constructs.aws_cloudfront_apigateway_lambda |
Typescript | @aws-solutions-constructs/aws-cloudfront-apigateway-lambda |
Java | software.amazon.awsconstructs.services.cloudfrontapigatewaylambda |
This AWS Solutions Construct implements an AWS CloudFront fronting an Amazon API Gateway Lambda backed REST API.
Here is a minimal deployable pattern definition:
import * as defaults from '@aws-solutions-constructs/core';
import { CloudFrontToApiGatewayToLambda } from '@aws-solutions-constructs/aws-cloudfront-apigateway-lambda';
const stack = new Stack();
const lambdaProps: lambda.FunctionProps = {
code: lambda.Code.asset(`${__dirname}/lambda`),
runtime: lambda.Runtime.NODEJS_12_X,
handler: 'index.handler'
};
new CloudFrontToApiGatewayToLambda(stack, 'test-cloudfront-apigateway-lambda', {
lambdaFunctionProps: lambdaProps,
deployLambda: true
});
new CloudFrontToApiGatewayToLambda(scope: Construct, id: string, props: CloudFrontToApiGatewayToLambdaProps);
Parameters
Construct
string
CloudFrontToApiGatewayToLambdaProps
Name | Type | Description |
---|---|---|
deployLambda | boolean | Whether to create a new Lambda function or use an existing Lambda function |
existingLambdaObj? | lambda.Function | Existing instance of Lambda Function object |
lambdaFunctionProps? | lambda.FunctionProps | Optional user provided props to override the default props for Lambda function |
apiGatewayProps? | api.LambdaRestApiProps | Optional user provided props to override the default props for API Gateway |
cloudFrontDistributionProps? | cloudfront.CloudFrontWebDistributionProps | Optional user provided props to override the default props for CloudFront Distribution |
insertHttpSecurityHeaders? | boolean | Optional user provided props to turn on/off the automatic injection of best practice HTTP security headers in all responses from CloudFront |
Name | Type | Description |
---|---|---|
cloudFrontWebDistribution | cloudfront.CloudFrontWebDistribution | Returns an instance of cloudfront.CloudFrontWebDistribution created by the construct |
lambdaFunction | lambda.Function | Returns an instance of the Lambda function created by the pattern. |
apiGateway | api.RestApi | Returns an instance of the API Gateway REST API created by the pattern. |
Out of the box implementation of the Construct without any override will set the following defaults:
© Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
FAQs
CDK Constructs for AWS Cloudfront to AWS API Gateway to AWS Lambda integration.
The npm package @aws-solutions-constructs/aws-cloudfront-apigateway-lambda receives a total of 497 weekly downloads. As such, @aws-solutions-constructs/aws-cloudfront-apigateway-lambda popularity was classified as not popular.
We found that @aws-solutions-constructs/aws-cloudfront-apigateway-lambda demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.