Learn R Programming

paws.analytics (version 0.1.12)

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)

Value

An empty list.

Arguments

CatalogId

The ID of the Data Catalog to set the security configuration for. 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"
    )
  )
)