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 個月前檢視次數 218 次
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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南