I have executed PutParameter using .net AWS SDK like so:
using (var client =
new AmazonSimpleSystemsManagementClient(_key, _secret, _region))
{
await client.PutParameterAsync(new PutParameterRequest
{
Name = "MyBlah",
Overwrite = true,
KeyId = keyId,
Value = "Blah",
Type = ParameterType.SecureString
});
}
I can see my data in the console.
However, when i click on 'show' i can see the value plaintext:
How can i hide this from users but still let them see that there is a value there?