Updated on 2024-06-18 GMT+08:00

FlexusRDS Custom Policies

Custom policies can be created to supplement the system policies of FlexusRDS.

You can create custom policies in either of the following two ways:

  • Visual editor: Select cloud services, actions, resources, and request conditions without the need to know policy syntax.
  • JSON: Edit JSON policies from scratch or based on an existing policy.

For details, see Creating a Custom Policy. The following contains examples of common FlexusRDS custom policies.

Example Custom Policies

Example: Allowing users to create manual backups

{ 
	"Version": "1.1", 
	"Statement": [{ 
		"Effect": "Allow", 
		"Action": ["rds:backup:create"] 
	}] 
}