Your team lead has asked you to learn AWS CloudFormation to create a collection of related AWS resources and provision them in an orderly fashion. You decide to provide AWS-specific parameter types to catch invalid values. When specifying parameters which of the following is not a valid Parameter type?
Correct answer - "DependentParameter" : In CloudFormation, parameters are all independent and cannot depend on each other.
Incorrect:
"String" - A literal string
"CommaDelimitedList" - An array of literal strings that are separated by commas
"AWS::EC2::KeyPair::KeyName" - An Amazon EC2 key pair name
For more information visit