Skip to content

Commit

Permalink
Fixed error in readme rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew J. Sonne committed Jun 25, 2017
1 parent cec9bd8 commit 46f5cc8
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@ awslambdahelper 1.1.6
:target: https://codecov.io/github/drewsonne/awslambdahelper?branch=master
.. image:: https://travis-ci.org/drewsonne/awslambdahelper.svg?branch=master
:target: https://travis-ci.org/drewsonne/awslambdahelper
.. image:: https://img.shields.io/pypi/v/awslambdahelper.svg
:target: https://pypi.python.org/pypi/awslambdahelper

Abstracts the more mundane aspects of lambda resources

A lot of boilerplate code is required to implemented lambda's for AWS
Config and custom Cloudformation resources. We can abstract this away
and wrap our rule in data structures to improve development and
A lot of boilerplate code is required to implemented lambda's for AWS
Config and custom Cloudformation resources. We can abstract this away
and wrap our rule in data structures to improve development and
encourage a particular structure.

------------
Installation
------------

.. code-block:: bash
$ pip install awslambdahelper
Expand All @@ -38,7 +40,7 @@ Create a Python class
# my_lambda_code.py
from awslambdahelper import AWSConfigRule
class MyConfigRule(AWSConfigRule):
def find_violation_config_change(self, config, rule_parameters):
return [NonCompliantEvaluation(
Expand All @@ -64,4 +66,4 @@ Create AWS Config Rule
`Getting Started with Custom Rules <http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules_getting-started.html>`_.


That's it! For a more indepth guide, `read the docs<http://awslambdahelper.readthedocs.io/en/latest/>`_.
That's it! For a more indepth guide, `read the docs <http://awslambdahelper.readthedocs.io/en/latest/>`_.

0 comments on commit 46f5cc8

Please sign in to comment.