Values.UpdatePolicyStoreInputSourceModifies 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.
type nonrec t = {policyStoreId : PolicyStoreId.t;Specifies the ID of the policy store that you want to update To specify a policy store, use its ID or alias name. When using an alias name, prefix it with policy-store-alias/. For example: ID: PSEXAMPLEabcdefg111111 Alias name: policy-store-alias/example-policy-store To view aliases, use ListPolicyStoreAliases.
*)validationSettings : ValidationSettings.t;A structure that defines the validation settings that want to enable for the policy store.
*)deletionProtection : DeletionProtection.t option;Specifies whether the policy store can be deleted. If enabled, the policy store can't be deleted. When you call UpdatePolicyStore, this parameter is unchanged unless explicitly included in the call.
*)description : PolicyStoreDescription.t option;Descriptive text that you can provide to help with identification of the current policy store.
*)}val make :
?deletionProtection:??? ->
?description:??? ->
policyStoreId:PolicyStoreId.t ->
validationSettings:ValidationSettings.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of PolicyStoreId.t
| `Structure of (string * [> `Enum of string ]) list ])
list ]