awsマシン学習からの読み取りと書き込みアクセスを可能にするS3バケットポリシーを作成できますか?私はバケツポリシーの下で試してみましたが、動作しませんでした。AWSマシンの学習からの読み取り/書き込みアクセスを許可するAWS S3バケットポリシー
バケットポリシー:彼らは二つの別々のポリシーとして文書化されていたよう
{
"Version": "2008-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "machinelearning.amazonaws.com"
},
"Action": [
"s3:GetObject",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::cxra/*"
},
{
"Effect": "Allow",
"Principal": {
"Service": "machinelearning.amazonaws.com"
},
"Action": "s3:PutObjectAcl",
"Resource": "arn:aws:s3:::cxra/*",
"Condition": {
"StringEquals": {
"s3:x-amz-acl": "bucket-owner-full-control"
}
}
},
{
"Effect": "Allow",
"Principal": {
"Service": "machinelearning.amazonaws.com"
},
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::cxra"
},
{
"Effect": "Allow",
"Principal": {
"Service": "machinelearning.amazonaws.com"
},
"Action": [
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::cxra"
}
]
}
リソースの2の場所にarn:aws:s3 ::: cxra/*を設定してから – error2007s