Skip to content

Update Policy Store

verifiedpermissions_update_policy_store R Documentation

Modifies the validation setting for a policy store

Description

Modifies the validation setting for a policy store.

Verified Permissions is eventually consistent . It can take a few seconds for a new or changed element to propagate through the service and be visible in the results of other Verified Permissions operations.

Usage

verifiedpermissions_update_policy_store(policyStoreId,
  validationSettings, description)

Arguments

policyStoreId

[required] Specifies the ID of the policy store that you want to update

validationSettings

[required] A structure that defines the validation settings that want to enable for the policy store.

description

Descriptive text that you can provide to help with identification of the current policy store.

Value

A list with the following syntax:

list(
  policyStoreId = "string",
  arn = "string",
  createdDate = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedDate = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_policy_store(
  policyStoreId = "string",
  validationSettings = list(
    mode = "OFF"|"STRICT"
  ),
  description = "string"
)