what datatype can be stored in systems manager param store?

0

I have some configuration file , format wise , it can be a python dictionary or a json object. can I store dictionary or a json object directly in the param store ?

已提问 3 个月前219 查看次数
2 回答
0

Hello.

It is possible to register JSON as below.
The data type is registered as "String", so when referencing it from the AWS SDK etc., processing such as parsing the string is required.
a

profile picture
专家
已回答 3 个月前
0

AWS Systems Manager Parameter Store can store data as:

  • String: Plain text, including serialized JSON or XML.
  • StringList: A comma-separated list of plain text values.
  • SecureString: Encrypted text, suitable for sensitive data, encrypted with AWS KMS.

All types essentially store data as strings, meaning complex data structures must be serialized into a string format before storage and deserialized upon retrieval.

Resources:

profile picture
专家
已回答 3 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则