Batch Delete Connection
glue_batch_delete_connection | R Documentation |
Deletes a list of connection definitions from the Data Catalog¶
Description¶
Deletes a list of connection definitions from the Data Catalog.
Usage¶
glue_batch_delete_connection(CatalogId, ConnectionNameList)
Arguments¶
CatalogId |
The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default. |
ConnectionNameList |
[required] A list of names of the connections to delete. |
Value¶
A list with the following syntax:
list(
Succeeded = list(
"string"
),
Errors = list(
list(
ErrorCode = "string",
ErrorMessage = "string"
)
)
)
Request syntax¶
svc$batch_delete_connection(
CatalogId = "string",
ConnectionNameList = list(
"string"
)
)