Member-only story
AWS::CloudFormation::Interface
This helps how to modify the ordering and presentation of parameters in the AWS CloudFormation console.
By default, parameters display in an alphabetical order by their logical IDs
The AWS::CloudFormation::Interface metadata key uses two child keys,
- ParameterGroups (you could group all EC2-related parameters in one group and all DB-related parameters in another group)
- Each entry in ParameterGroups is defined as an object with a Label key and Parameters key
2. ParameterLabels (A label is a friendly name or description that the console displays instead of a parameter’s logical ID.)
The ParameterLabels key takes a list of parameter logical IDs, each of which has a friendly description as a subkey.