agent-claw: automated task changes
This commit is contained in:
19
cdk/node_modules/aws-cdk/lib/init-templates/app/python/%name.PythonModule%/%name.PythonModule%_stack.template.py
generated
vendored
Normal file
19
cdk/node_modules/aws-cdk/lib/init-templates/app/python/%name.PythonModule%/%name.PythonModule%_stack.template.py
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
from aws_cdk import (
|
||||
# Duration,
|
||||
Stack,
|
||||
# aws_sqs as sqs,
|
||||
)
|
||||
from constructs import Construct
|
||||
|
||||
class %name.PascalCased%Stack(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, "%name.PascalCased%Queue",
|
||||
# visibility_timeout=Duration.seconds(300),
|
||||
# )
|
||||
0
cdk/node_modules/aws-cdk/lib/init-templates/app/python/%name.PythonModule%/__init__.py
generated
vendored
Normal file
0
cdk/node_modules/aws-cdk/lib/init-templates/app/python/%name.PythonModule%/__init__.py
generated
vendored
Normal file
Reference in New Issue
Block a user