AWSSource
¶
A ConfigSource that loads values recursively from an AWS SSM path.
Warning
In order to use this source you must have
boto3
installed either directly or by including the "aws" extra when installing this package
(e.g. poetry install flex-config -E aws
).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str |
a prefix in AWS SSM to read from. |
required |
Info
You can pass any keyword arguments to this class that you would to boto3 directly (e.g. secret key).
items(self)
¶
Returns a generator for getting all path, value pairs
Source code in flex_config\aws_source.py
62 63 64 |
|
to_dict(self)
¶
Returns a generator for getting all path, value pairs
Source code in flex_config\aws_source.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|