Skip to content

Batch Get Custom Entity Types

glue_batch_get_custom_entity_types R Documentation

Retrieves the details for the custom patterns specified by a list of names

Description

Retrieves the details for the custom patterns specified by a list of names.

Usage

glue_batch_get_custom_entity_types(Names)

Arguments

Names

[required] A list of names of the custom patterns that you want to retrieve.

Value

A list with the following syntax:

list(
  CustomEntityTypes = list(
    list(
      Name = "string",
      RegexString = "string",
      ContextWords = list(
        "string"
      )
    )
  ),
  CustomEntityTypesNotFound = list(
    "string"
  )
)

Request syntax

svc$batch_get_custom_entity_types(
  Names = list(
    "string"
  )
)