Legacy Product

Fusion 5.4

Amazon AWS S3 V2 Connector Configuration Reference

The Amazon AWS S3 V2 connector crawls items in a single bucket. You must specify the bucket name and AWS region in which that bucket is located.

You may crawl specific items in a bucket. If no items are specified, the entire bucket will be crawled.

When entering configuration values in the UI, use unescaped characters, such as \t for the tab character. When entering configuration values in the API, use escaped characters, such as \\t for the tab character.

Required permissions

The connector requires ListBucket and GetObject permissions.

The following is an IAM policy example. When you set permissions, replace bucketname with the value used in your implementation.

"Statement": [
         {
            "Action": [
                "s3:GetObject"
            ],
            "Resource": [
                "arn:aws:s3:::bucketname/*"
            ],
            "Effect": "Allow"
        },
        {
            "Action": [
                "s3:ListBucket"
            ],
            "Resource": [
                "arn:aws:s3:::bucketname"
            ],
            "Effect": "Allow"
        }
]

Loading liquid template...

Loading configuration schema...