Get Classifiers
| glue_get_classifiers | R Documentation |
Lists all classifier objects in the Data Catalog¶
Description¶
Lists all classifier objects in the Data Catalog.
Usage¶
Arguments¶
MaxResultsThe size of the list to return (optional).
NextTokenAn optional continuation token.
Value¶
A list with the following syntax:
list(
Classifiers = list(
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"
)
)
),
NextToken = "string"
)