Skip to content

Instantly share code, notes, and snippets.

@AdrianM10
Last active March 25, 2024 13:53
Initial rss_lambda_ddb_socialshare_stack.py
from aws_cdk import (
# Duration,
Stack,
# aws_sqs as sqs,
)
from constructs import Construct
class RssLambdaDdbSocialshareStack(Stack):
def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
super().__init__(scope, construct_id, **kwargs)
# The code that defines your stack goes here
# example resource
# queue = sqs.Queue(
# self, "RssLambdaDdbSocialshareQueue",
# visibility_timeout=Duration.seconds(300),
# )
@AdrianM10
Copy link
Author

Initial rss_lambda_ddb_socialshare_stack.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment