Learn R Programming

paws.analytics (version 0.1.11)

glue_get_data_catalog_encryption_settings: 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 AWS account ID is used by default.

Value

A list with the following syntax:

list(
  DataCatalogEncryptionSettings = list(
    EncryptionAtRest = list(
      CatalogEncryptionMode = "DISABLED"|"SSE-KMS",
      SseAwsKmsKeyId = "string"
    ),
    ConnectionPasswordEncryption = list(
      ReturnConnectionPasswordEncrypted = TRUE|FALSE,
      AwsKmsKeyId = "string"
    )
  )
)

Request syntax

svc$get_data_catalog_encryption_settings(
  CatalogId = "string"
)