CHAR - Amazon Glue DataBrew
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

CHAR

Returns in a new column the Unicode character for each integer in the source column, or for a custom integer value.

Parameters
  • sourceColumn – The name of an existing column.

  • value – An integer that represents a Unicode value.

  • targetColumn – The name of the new column to be created.

Note

You can specify either sourceColumn or value, but not both.

Examples

{ "RecipeAction": { "Operation": "CHAR", "Parameters": { "sourceColumn": "age", "targetColumn": "age_char" } } }

{ "RecipeAction": { "Operation": "CHAR", "Parameters": { "value": 42, "targetColumn": "asterisk" } } }