-
-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Labels
Description
The current --policy
option lets you set a custom policy, but leaves it to you to define one.
I find myself wanting to mix in the following to the policy that I use, for s3-ocr:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"textract:StartDocumentTextDetection",
"textract:StartDocumentAnalysis",
"textract:GetDocumentTextDetection",
"textract:GetDocumentAnalysis"
],
"Resource": "*"
}
]
}
Would be nice if there was a neat way to do this.