Configuring a Custom Bucket Policy (Coding Mode)

You can configure a custom bucket policy by coding. The size of a custom bucket policy cannot exceed 20 KB.

Procedure

  1. In the bucket list, click the bucket to be operated. The Overview page of the bucket is displayed.
  2. In the navigation pane on the left, click Permissions to go to the permission management page.
  3. On the Bucket Policies tab page, configure a custom bucket policy according to your needs.

    On the right of Custom Bucket Policies, select Coding mode to configure the policy in the coding mode.

  4. The following is an example policy edited in JSON:

    {
       "Statement":[
           {
               "Action":[
                   "CreateBucket",
                   "DeleteBucket"
               ],
               "Effect":"Allow",
               "Principal":{
                   "ID":[
                       "domain/account ID", 
                       "domain/account ID:user/User ID" 
                   ]
               },
               "Condition":{
                   "NumericNotEquals":{
                       "Referer":"sdf"
                   },
                   "StringNotLike":{
                       "Delimiter":"ouio"
                   }
               },
               "Resource":"000-02/key01"
           }
       ]
     }

    Table 1 Parameter description

    Parameter

    Description

    Action

    Actions on which the bucket policy takes effect. For details, see Actions.

    Effect

    For details about bucket policy effects, see Effect.

    Principal

    Authorized users on whom the bucket policy takes effect. You can obtain the user ID on the My Credential page by logging in to the console as the user to be authorized. Principal format:

    • "domain/account ID" (when the principal is an account)
    • "domain/account ID:user/User ID" (when the principal is a user under an account)
    NOTE:

    For Account ID, input the Domain ID that can be found on the My Credential page.

    Condition

    Conditions under which the bucket policy takes effect. For details, see Conditions.

    Resource

    Resources on which the bucket policy takes effect. For details, see Resources.

  5. Click Save.