SharedResources¶
Parameters¶
Connects to the SSM Parameter Store service on AWS. This can be really handy for storing configuration parameters as well as things like passwords which can be stored securely. Another nice benefit is that the parameter store service tracks the history of the parameters so you can see if/how they have changed over time.
-
class
AwAws.SharedResources.parameters.
Parameters
(service, region_name=None, role_arn=None)¶ parameters are store as <service>.<param> = value
-
get_all
()¶ returns all of the params related to this service
-
get_param
(name=None)¶ returns a specific parameter from service
-
put_param
(name, value, secure=None)¶ stores a parameter in the SSM parameter store
-