Metadata-Version: 2.1
Name: ssm-tool-test
Version: 2.1.6
Summary: A small example package to get ssm parameters from aws
Author-email: Roldan Author <jdroldan@playvox.com>
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Tool to get SSM parameter store (test)

This is a simple example package to get parameter store from aws account.
Using boto3 and credentials from aws.

### Definitions

- **get_parameter(name)**
    params:
    - name: The name of ssm parameter (string)
  
- **get_parameters(names)**
    params:
    - names: The names of ssm parameter (list)

- **get_describe_parameters(attributes)**
    params:
    - attributes: The name of ssm parameter (string)


### USAGE:
```
from ssm_tool_test import ssm

new_obj = ssm.ParameterStore()
new_obj.get_parameter("ssm_parameter")
new_obj.get_parameters(["param_1", "param_2"])
new_obj.get_describe_parameters([{'Key': 'Name'|'Type', 'Option': 'Equals', 'Values': ['string']}])
```

##### by jdroldan@playvox.com
