Is your feature request related to a problem? Please describe.
docs currently does not show document how to modify or add policies to auth and unauth roles.
Describe the solution you'd like
import { Policy, PolicyStatement } from "aws-cdk-lib/aws-iam";
const backend = defineBackend({
auth,
});
const myPolicy = new Policy(backend.auth, "AuthenticatedUserIamRolePolicy",{})
backend.auth.resources.authenticatedUserIamRole.attachInlinePolicy(myPolicy);
Is your feature request related to a problem? Please describe. docs currently does not show document how to modify or add policies to auth and unauth roles.
Describe the solution you'd like