Masking a field value inside an array

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
2.5/2.5/W10/ChromeV120

Describe the issue:
Hi, I am new to OpenSearch and Dashboards, and exploring the possibilities of encrypting sensitive information. I’m able to find documentations about field masking but I am not able to mask strings inside an array. Say we have a result that looks like this:

_source:
{
   "sender":"miko",
   "message":
   {
      "content": "hello, world!"
   },
   "settings":
   [
      {
         "config": "on",
         "description": "notification",
         "modifiedDate": "20240513",
      },
      {
         "config: "off",
         "description": "alert",
         "modifiedDate": "20240512"
      }
   ],
   "testArray": [ "a", "b", "c" ]
}

Is it possible to mask the entire settings? or the objects in it?
I can anonymize sender and message.content just fine. I tried settings*, but unlike message*, it does not work.

Or is this feature not yet available?

Thank you!

Configuration:

Relevant Logs or Screenshots: