Skip to content

Commit

Permalink
Added documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew J. Sonne committed Jun 25, 2017
1 parent 64a1213 commit cec9bd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/python/awslambdahelper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@


class AWSConfigRule(object):
"""
Defines the business logic for processing either scheduled or config change AWS Config rules
"""
#: Specifies an AWS Config Rule which is triggered by a resource configuration
CALL_TYPE_CONFIGURATION_CHANGE = 'ConfigurationItemChangeNotification'
#: Specifies an AWS Config Rule which is triggered on a scheduled basis
Expand Down
3 changes: 3 additions & 0 deletions src/main/python/awslambdahelper/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@


class AWSConfigEvaluation(object):
"""
Represents a response payload to an evaluation event
"""
#: Define an evaluation of a resource as compliant to a rule. See `Evaluation.ComplianceType <http://docs.aws.amazon.com/config/latest/APIReference/API_Evaluation.html#config-Type-Evaluation-ComplianceType>`_. # noqa
TYPE_COMPLIANT = 'COMPLIANT'
#: Define an evaluation of a resource as not being compliant to a rule. See `Evaluation.ComplianceType <http://docs.aws.amazon.com/config/latest/APIReference/API_Evaluation.html#config-Type-Evaluation-ComplianceType>`_. # noqa
Expand Down

0 comments on commit cec9bd8

Please sign in to comment.