View a markdown version of this page

Changing a standard parameter to an advanced parameter - Amazon Systems Manager
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
  1. Open the Amazon Systems Manager console at https://console.amazonaws.cn/systems-manager/.

  2. In the navigation pane, choose Parameter Store.

  3. Choose a parameter, and then choose Edit.

  4. For Description, enter information about this parameter.

  5. Choose Advanced.

  6. For Value, enter the value of this parameter. Advanced parameters have a maximum value limit of 8 KB.

  7. 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"