You need to enable JavaScript to run this app.
IAM

IAM

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

Scenario: Restrict access to only all operations of the Application Load Balancer.
Policy example:

{ 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "alb:*" 
      ], 
      "Resource": [ 
        "*" 
      ] 
    } 
  ] 
}

Interpretation: This policy uses wild-card * to summarize all operations within the service alb.

For a detailed description of the policy syntax, refer to the policy basic structure description document .

Last updated: 2025.06.23 19:21:32