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, tags)
Arguments¶
policyStoreId |
[required] Specifies the ID of the policy store that you want information about. |
tags |
Specifies whether to return the tags that are attached to the policy store. If this parameter is included in the API call, the tags are returned, otherwise they are not returned. If this parameter is included in the API call but there are no tags
attached to the policy store, the |
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",
deletionProtection = "ENABLED"|"DISABLED",
cedarVersion = "CEDAR_2"|"CEDAR_4",
tags = list(
"string"
)
)
Request syntax¶
svc$get_policy_store(
policyStoreId = "string",
tags = TRUE|FALSE
)