Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions,
see Getting Started with Amazon Web Services in China
(PDF).
Changing a standard parameter to an advanced parameter
Use the following procedure to change an existing standard parameter to an advanced parameter. For information about how to create a new advanced
parameter, see Creating Parameter Store parameters in Systems Manager.
- Console
-
To change a standard parameter to an advanced parameter
Open the Amazon Systems Manager console at https://console.amazonaws.cn/systems-manager/.
In the navigation pane, choose Parameter Store.
-
Choose a parameter, and then choose Edit.
-
For Description, enter information about this
parameter.
-
Choose Advanced.
-
For Value, enter the value of this parameter.
Advanced parameters have a maximum value limit of 8 KB.
-
Choose Save changes.
- Amazon CLI
-
You can override the default setting by specifying the parameter tier using the PutParameter operation.
For example, you might want to share the default AMI value across Amazon accounts. The following Amazon CLI example explicitly sets the parameter tier to
Advanced for the default-ami parameter in Linux & macOS.
aws ssm put-parameter \
--region us-east-1 \
--name "default-ami" \
--type "String" \
--value "t3.micro" \
--tier "Advanced"