Skip to content

Update Key Registration

quicksight_update_key_registration R Documentation

Updates a customer managed key in a Amazon QuickSight account

Description

Updates a customer managed key in a Amazon QuickSight account.

Usage

quicksight_update_key_registration(AwsAccountId, KeyRegistration)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.

KeyRegistration

[required] A list of RegisteredCustomerManagedKey objects to be updated to the Amazon QuickSight account.

Value

A list with the following syntax:

list(
  FailedKeyRegistration = list(
    list(
      KeyArn = "string",
      Message = "string",
      StatusCode = 123,
      SenderFault = TRUE|FALSE
    )
  ),
  SuccessfulKeyRegistration = list(
    list(
      KeyArn = "string",
      StatusCode = 123
    )
  ),
  RequestId = "string"
)

Request syntax

svc$update_key_registration(
  AwsAccountId = "string",
  KeyRegistration = list(
    list(
      KeyArn = "string",
      DefaultKey = TRUE|FALSE
    )
  )
)