Which of the following is the correct JSON structure to define a custom IAM role binding?
A{"bindings": [{"role": "roles/customRole", "members": ["user:alice@example.com"]}]}
B{"roles": [{"binding": "roles/customRole", "users": ["alice@example.com"]}]}
C{"policy": [{"role": "customRole", "members": ["user:alice@example.com"]}]}
D{"bindings": [{"role": "customRole", "members": ["alice@example.com"]}]}