我有以下 AssumeRolePolicyDocument:
{
"Version": "2012-10-17",
"Statement": {
"Effect": "Allow",
"Principal": {"Service": "comprehend.amazonaws.com"},
"Action": "sts:AssumeRole"
}
}
和以下政策文件:
{
"Version": "2012-10-17",
"Statement": {
"Effect": "Allow",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::${bucket.name}/*"
}
}
不幸的是,我从 Amazon Comprehend 得到的是NO_READ_ACCESS_TO_INPUT: The provided data access role does not have proper access to the input data.
. 怎么了?