Skip to content

Get Policy Store

verifiedpermissions_get_policy_store R Documentation

Retrieves details about a policy store

Description

Retrieves details about a policy store.

Usage

verifiedpermissions_get_policy_store(policyStoreId)

Arguments

policyStoreId

[required] Specifies the ID of the policy store that you want information about.

Value

A list with the following syntax:

list(
  policyStoreId = "string",
  arn = "string",
  validationSettings = list(
    mode = "OFF"|"STRICT"
  ),
  createdDate = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedDate = as.POSIXct(
    "2015-01-01"
  ),
  description = "string"
)

Request syntax

svc$get_policy_store(
  policyStoreId = "string"
)