Module Values.UpdatePolicyStoreInputSource

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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. validationSettings : ValidationSettings.t;
    (*

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

    *)
  3. 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.

    *)
  4. description : PolicyStoreDescription.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?deletionProtection:??? -> ?description:??? -> policyStoreId:PolicyStoreId.t -> validationSettings:ValidationSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PolicyStoreId.t | `Structure of (string * [> `Enum of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t