SPLIT_COLUMN_SINGLE_DELIMITER - 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).

SPLIT_COLUMN_SINGLE_DELIMITER

Splits a column into one or more new columns, according to a specific delimiter.

Parameters
  • sourceColumn – The name of an existing column.

  • pattern – One or more characters to use as a separator, when splitting the data.

  • limit – How many splits to perform. The minimum is 1; the maximum is 20.

  • includeInSplit – If true, includes the pattern in the new column; otherwise, the pattern is discarded.

Example

{ "RecipeAction": { "Operation": "SPLIT_COLUMN_SINGLE_DELIMITER", "Parameters": { "includeInSplit": "true", "limit": "1", "pattern": "/", "sourceColumn": "info_url" } } }