Get Data Catalog Encryption Settings
glue_get_data_catalog_encryption_settings | R Documentation |
Retrieves the security configuration for a specified catalog¶
Description¶
Retrieves the security configuration for a specified catalog.
Usage¶
glue_get_data_catalog_encryption_settings(CatalogId)
Arguments¶
CatalogId |
The ID of the Data Catalog to retrieve the security configuration for. If none is provided, the Amazon Web Services account ID is used by default. |
Value¶
A list with the following syntax:
list(
DataCatalogEncryptionSettings = list(
EncryptionAtRest = list(
CatalogEncryptionMode = "DISABLED"|"SSE-KMS"|"SSE-KMS-WITH-SERVICE-ROLE",
SseAwsKmsKeyId = "string",
CatalogEncryptionServiceRole = "string"
),
ConnectionPasswordEncryption = list(
ReturnConnectionPasswordEncrypted = TRUE|FALSE,
AwsKmsKeyId = "string"
)
)
)
Request syntax¶
svc$get_data_catalog_encryption_settings(
CatalogId = "string"
)