Get Classifier
| glue_get_classifier | R Documentation | 
Retrieve a classifier by name¶
Description¶
Retrieve a classifier by name.
Usage¶
glue_get_classifier(Name)
Arguments¶
Name | 
[required] Name of the classifier to retrieve.  | 
Value¶
A list with the following syntax:
list(
  Classifier = list(
    GrokClassifier = list(
      Name = "string",
      Classification = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdated = as.POSIXct(
        "2015-01-01"
      ),
      Version = 123,
      GrokPattern = "string",
      CustomPatterns = "string"
    ),
    XMLClassifier = list(
      Name = "string",
      Classification = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdated = as.POSIXct(
        "2015-01-01"
      ),
      Version = 123,
      RowTag = "string"
    ),
    JsonClassifier = list(
      Name = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdated = as.POSIXct(
        "2015-01-01"
      ),
      Version = 123,
      JsonPath = "string"
    ),
    CsvClassifier = list(
      Name = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdated = as.POSIXct(
        "2015-01-01"
      ),
      Version = 123,
      Delimiter = "string",
      QuoteSymbol = "string",
      ContainsHeader = "UNKNOWN"|"PRESENT"|"ABSENT",
      Header = list(
        "string"
      ),
      DisableValueTrimming = TRUE|FALSE,
      AllowSingleColumn = TRUE|FALSE,
      CustomDatatypeConfigured = TRUE|FALSE,
      CustomDatatypes = list(
        "string"
      ),
      Serde = "OpenCSVSerDe"|"LazySimpleSerDe"|"None"
    )
  )
)
Request syntax¶
svc$get_classifier(
  Name = "string"
)