Skip to content

Update Account Configuration

codegurusecurity_update_account_configuration R Documentation

Use to update the encryption configuration for an account

Description

Use to update the encryption configuration for an account.

Usage

codegurusecurity_update_account_configuration(encryptionConfig)

Arguments

encryptionConfig

[required] The customer-managed KMS key ARN you want to use for encryption. If not specified, CodeGuru Security will use an AWS-managed key for encryption. If you previously specified a customer-managed KMS key and want CodeGuru Security to use an AWS-managed key for encryption instead, pass nothing.

Value

A list with the following syntax:

list(
  encryptionConfig = list(
    kmsKeyArn = "string"
  )
)

Request syntax

svc$update_account_configuration(
  encryptionConfig = list(
    kmsKeyArn = "string"
  )
)