diff --git a/cottonformation/core/env.py b/cottonformation/core/env.py index 1188fbb..b6a4d2e 100644 --- a/cottonformation/core/env.py +++ b/cottonformation/core/env.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ -AWS Environment +AWS Environment and Deployment component. """ import hashlib diff --git a/cottonformation/core/helpers/awslambda.py b/cottonformation/core/helpers/awslambda.py index 395485f..090e3ce 100644 --- a/cottonformation/core/helpers/awslambda.py +++ b/cottonformation/core/helpers/awslambda.py @@ -2,6 +2,8 @@ class LambdaRuntime: """ + Aws Lambda related constant helpers. + This data is based on https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html """ nodejs14 = "nodejs14.x" diff --git a/cottonformation/core/model.py b/cottonformation/core/model.py index 09447e3..0fb7881 100644 --- a/cottonformation/core/model.py +++ b/cottonformation/core/model.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +""" +This module implements the AWS Object used in CloudFormation template. +""" + import typing from collections import OrderedDict import attr diff --git a/cottonformation/core/tagging.py b/cottonformation/core/tagging.py deleted file mode 100644 index 6da2d65..0000000 --- a/cottonformation/core/tagging.py +++ /dev/null @@ -1,5 +0,0 @@ -# -*- coding: utf-8 -*- - -from cottonformation.res import s3 - -s3.Bucket \ No newline at end of file diff --git a/cottonformation/core/template.py b/cottonformation/core/template.py index 8f98a6c..1b960ff 100644 --- a/cottonformation/core/template.py +++ b/cottonformation/core/template.py @@ -1,5 +1,10 @@ # -*- coding: utf-8 -*- +""" +This module implements the core component CloudFormation Template. Many +black magic features are provided. +""" + import json import attr import typing