You need to enable JavaScript to run this app.
IAM

IAM

Copy page
Download PDF
Policy Example
Deny access to the specified service
Copy page
Download PDF
Deny access to the specified service

Scenario: If you want to exclude permissions for some services, you can create and bind a policy with the effect of "Denied" when you grant a larger global policy such as Identity AdministratorAccess (including administrative permissions for all IAM-enabled products and services) or ReadOnlyAccess (including read-only permissions for all IAM-enabled products and services). For example, the following policy denies access to all modules of the expense center.
Policy example:

{ 
  "Statement": [ 
    { 
      "Effect": "Deny", 
      "Action": [ 
        "bill:*", 
				"bill_volcano_engine:*", 
				"billing:*", 
				"volc_contract_process:*" 
      ], 
      "Resource": [ 
        "*" 
      ] 
    } 
  ] 
}

Interpretation: This policy uses "Deny" to deny access to all services of the expense center.

Rejection effect instructions can be found in the Effect instructions .

Last updated: 2025.06.23 19:21:29