In my template, I can use a configured parameter from systems manager, like this:
Parameters:
DatabasePassword:
Type: 'AWS::SSM::Parameter::Value<String>'
Default: '/some/path/db_password'
However, I need help to be able to use a secure string.
I tried: AWS::SSM::Parameter::Value<SecureString>
and /some/path/db_password~true
Perhaps it is not worth the trouble to use a secure string in this context?