AWS S3
An overview of the AWS S3 integration with Secoda
S3 Metadata Extracted
Getting started with S3
Create a new AWS IAM User or AWS Role
{
"Statement": [
{
"Sid": "AllowS3Access",
"Action": [
"s3:PutObject",
"s3:PutObjectAcl",
"s3:ListBucket",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::<your-bucket-name>",
"arn:aws:s3:::<your-bucket-name>/*"
]
},
{
"Sid": "AllowSTSAssumeRole",
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": "*"
}
],
"Version": "2012-10-17"
}Connect S3 to Secoda
Last updated
Was this helpful?