Before you create a file connector workspace
Amazon S3 configuration
Amazon S3 permissions
{
"Version": "2012-10-17",
"Statement": [
## Lists all buckets that are tied to given AWS account.
## Allows Structural to view the list of buckets during file group creation.
## If not granted, then users must type bucket names manually.
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "*"
},
## Allows Structural to list all objects within a specified bucket.
## Must be granted to both the source buckets and the output bucket.
## Use Resource to restrict the displayed buckets to a specific prefix
## or bucket name.
## Use Condition to restrict the listed files to a specific prefix.
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::*"
],
"Condition": {
"StringLike": {
"s3:prefix": "*"
}
}
},
## File level permissions for reading and writing.
## Can use Resource to restrict access based on bucket name or prefix.
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:GetObjectVersion",
"s3:DeleteObject",
"s3:PutObjectTagging"
],
"Resource": "arn:aws:s3:::*/*"
}
]
}Providing your custom Amazon S3 gateway endpoint
Google Cloud Storage permissions
MinIO configuration
Last updated
Was this helpful?