forked from aws-samples/serverless-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-pattern.json
More file actions
60 lines (60 loc) · 1.89 KB
/
Copy pathexample-pattern.json
File metadata and controls
60 lines (60 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"title": "Application Load Balancer (path-based-route) to AWS Lambda",
"description": "Create an Application Load Balancer with path-based routing with target as AWS Lambda",
"language": ".NET",
"level": "200",
"framework": "CDK",
"introBox": {
"headline": "How it works",
"text": [
"This pattern shows how to create an Application Load Balancer with path-based routing along with associated listener and target as AWS Lambda. Implemented in AWS CDK .NET."
]
},
"gitHub": {
"template": {
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/alb-path-based-route-lambda-cdk",
"templateURL": "serverless-patterns/alb-path-based-route-lambda-cdk",
"projectFolder": "alb-path-based-route-lambda-cdk",
"templateFile": "alb-path-based-route-lambda-cdk/src/AlbPathBasedRouteLambdaCdkStack.cs"
}
},
"resources": {
"bullets": [
{
"text": "Application Load Balancer",
"link": "https://docs.aws.amazon.com/elasticloadbalancing/latest/application/introduction.html"
},
{
"text": "AWS Lambda",
"link": "https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html"
},
{
"text": "ALB path-based routing",
"link": "https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html"
}
]
},
"deploy": {
"text": [
"cdk deploy"
]
},
"testing": {
"text": [
"See the GitHub repo for detailed testing instructions."
]
},
"cleanup": {
"text": [
"Delete the stack: <code>cdk destroy</code>."
]
},
"authors": [
{
"name": "Pushparaju Thangavel",
"image": "./Pushparaju.jpeg",
"bio": "Pushparaju is a Cloud Infrastructure Architect with Amazon Web Services",
"linkedin": "https://www.linkedin.com/in/pushparaju-thangavel/"
}
]
}