Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi: Adding Tributary lite samples links #7028

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
14 changes: 14 additions & 0 deletions .doc_gen/cross-content/tl_ServerlessApplication_DotNet_block.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "file://zonbook/docbookx.dtd"[
<!ENTITY % phrases-shared SYSTEM "file://AWSShared/common/phrases-shared.ent">
%phrases-shared;
]>
<block>
<para>
Shows how to build and test a serverless application that consists of an &ABP; with &LAM; and &DDB; using the .NET SDK.
</para>
<para>
For complete source code and instructions on how to set up and run, see the full example on
<ulink url="https://github.com/aws-samples/serverless-dotnet-demo">GitHub</ulink>.
</para>
</block>
14 changes: 14 additions & 0 deletions .doc_gen/cross-content/tl_ServerlessApplication_Go_block.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "file://zonbook/docbookx.dtd"[
<!ENTITY % phrases-shared SYSTEM "file://AWSShared/common/phrases-shared.ent">
%phrases-shared;
]>
<block>
<para>
Shows how to build and test a serverless application that consists of an &ABP; with &LAM; and &DDB; using the Go SDK.
</para>
<para>
For complete source code and instructions on how to set up and run, see the full example on
<ulink url="https://github.com/aws-samples/serverless-go-demo">GitHub</ulink>.
</para>
</block>
14 changes: 14 additions & 0 deletions .doc_gen/cross-content/tl_ServerlessApplication_Java_block.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "file://zonbook/docbookx.dtd"[
<!ENTITY % phrases-shared SYSTEM "file://AWSShared/common/phrases-shared.ent">
%phrases-shared;
]>
<block>
<para>
Shows how to build and test a serverless application that consists of an &ABP; with &LAM; and &DDB; using the Java SDK.
</para>
<para>
For complete source code and instructions on how to set up and run, see the full example on
<ulink url="https://github.com/aws-samples/serverless-java-frameworks-samples">GitHub</ulink>.
</para>
</block>
14 changes: 14 additions & 0 deletions .doc_gen/cross-content/tl_ServerlessApplication_Rust_block.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "file://zonbook/docbookx.dtd"[
<!ENTITY % phrases-shared SYSTEM "file://AWSShared/common/phrases-shared.ent">
%phrases-shared;
]>
<block>
<para>
Shows how to build and test a serverless application that consists of an &ABP; with &LAM; and &DDB; using the Rust SDK.
</para>
<para>
For complete source code and instructions on how to set up and run, see the full example on
<ulink url="https://github.com/aws-samples/serverless-rust-demo">GitHub</ulink>.
</para>
</block>
28 changes: 28 additions & 0 deletions .doc_gen/metadata/tributary-lite_metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# zexi 0.4.0
cross_tributary-lite_serverless-application:
title: Build and test a serverless application
title_abbrev: Build and test a serverless application
synopsis: build and test a serverless application using &ABP; with &LAM; and &DDB;
category: "&AWS; community contributions"
languages:
.NET:
versions:
- sdk_version: 3
block_content: tl_ServerlessApplication_DotNet_block.xml
Go:
versions:
- sdk_version: 2
block_content: tl_ServerlessApplication_Go_block.xml
Java:
versions:
- sdk_version: 2
block_content: tl_ServerlessApplication_Java_block.xml
Rust:
versions:
- sdk_version: 1
block_content: tl_ServerlessApplication_Rust_block.xml
service_main: lambda
services:
lambda:
dynamodb:
api-gateway:
3 changes: 3 additions & 0 deletions .tools/readmes/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ def load_crosses(self):
self.doc_gen.process_metadata(
self.doc_gen.root / ".doc_gen" / "metadata" / "cross_metadata.yaml"
)
self.doc_gen.process_metadata(
self.doc_gen.root / ".doc_gen" / "metadata" / "tributary-lite_metadata.yaml"
)

def _build_examples(self):
self.examples = defaultdict(list)
Expand Down
Loading