I hereby claim:
- I am josyhbk on github.
- I am josyhbk (https://keybase.io/josyhbk) on keybase.
- I have a public key ASA-VtxKHrqOkjKIYp7mJKYk7lWNeRvshwZj0QgEvCQTBQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import boto3 | |
| from botocore.exceptions import ClientError | |
| import datetime | |
| class SSMParameterStore(object): | |
| """ | |
| Provide a dictionary-like interface to access AWS SSM Parameter Store | |
| """ | |
| def __init__(self, prefix=None, ssm_client=None, ttl=None): | |
| self._prefix = (prefix or "").rstrip("/") + "/" |