-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from formkiq/v1.13.0
v1.13.0
- Loading branch information
Showing
20 changed files
with
1,023 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from diagrams import Cluster, Diagram, Edge | ||
from diagrams.aws.general import User | ||
from diagrams.aws.compute import Lambda | ||
from diagrams.aws.network import APIGateway | ||
from diagrams.aws.integration import SNS, SQS | ||
|
||
with Diagram("Document Event Processing", show=False): | ||
|
||
api = APIGateway("Documents API") | ||
lambda_processor = Lambda("Document Processor") | ||
sns_documentevents = SNS("Document Events") | ||
sqs_processing = SQS("Processing Queue") | ||
|
||
staging = User("User") | ||
staging - Edge(label="Create Document") - api - Edge(label="Document Event") - sns_documentevents - Edge(label="Create Event") - sqs_processing - Edge(label="Additional Document Processing") - lambda_processor |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 8 | ||
sidebar_position: 9 | ||
--- | ||
|
||
# Building from Source | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.