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 ?

preguntada hace 3 meses218 visualizaciones
2 Respuestas
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
EXPERTO
respondido hace 3 meses
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
EXPERTO
respondido hace 3 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas