Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.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 AWS Systems Manager console at https://eusc-de-east-1.console.amazonaws-eusc.eu/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.
- AWS 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 AWS accounts. The following AWS 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"