paws.analytics (version 0.1.0)

glue_put_data_catalog_encryption_settings: Sets the security configuration for a specified catalog

Description

Sets the security configuration for a specified catalog. After the configuration has been set, the specified encryption is applied to every catalog write thereafter.

Usage

glue_put_data_catalog_encryption_settings(CatalogId,
  DataCatalogEncryptionSettings)

Arguments

CatalogId

The ID of the Data Catalog for which to set the security configuration. If none is provided, the AWS account ID is used by default.

DataCatalogEncryptionSettings

[required] The security configuration to set.

Request syntax

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