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ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ