An enterprise manages a multi-account AWS environment using AWS Organizations. The security team has established a centralized identity account containing a SAML 2.0 Identity Provider (IdP) integration. Users first authenticate via the IdP to assume a central broker role (`arn:aws:iam::111111111111:role/FederatedHubRole`) in the identity account. From this central hub, users must transition to target execution roles (e.g., `arn:aws:iam::222222222222:role/TargetExecutionRole`) in various member accounts to perform administrative tasks. During deployment, federated users receive an access denied error when attempting to assume the target execution roles in the member accounts. Which configuration of the target execution role's trust policy will resolve the access issues and permit users to access resources in the member accounts?
- AConfigure the trust policy of the target execution role to trust the SAML identity provider created in the member account, specifying the `sts:AssumeRoleWithSAML` action.
- BAttach a Service Control Policy (SCP) to the member account's Organizational Unit that permits the central broker role to perform actions, which implicitly grants trust across accounts without updating the target role's trust policy.
- Configure the trust policy of the target execution role to trust the ARN of the central broker role in the identity account, specifying the `sts:AssumeRole` action.Answer
- DConfigure the trust policy of the target execution role to trust the identity account's SAML provider ARN, specifying the `sts:AssumeRole` action.