2 Answers
- Newest
- Most votes
- Most comments
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.
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:
Relevant content
- asked 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 months ago
@Riku_Kobayashi - thanks. is it better to just store this in a s3 bucket?
There are two types of parameter store, and the standard type can be used for free, so if the JSON is not large, I think it is better to save it with parameter store. https://aws.amazon.com/systems-manager/pricing/?nc1=h_ls#Parameter_Store