# Configuring S3 Buckets for Call Log Exports #1. Setup S3 bucket in your AWS account. #2. Add bucket policy for this bucket, using the TIBCO Mashery account information: "arn:aws:iam::809167139867:user/ecleuser". Replace "", "", and "" with your information. #3. Create ECLE profile via the TIBCO Mashery Control Center via Analyze -> Call Log Exports # #Example: # { "Version": "2012-10-17", "Statement": [ { "Sid": "AllowWritesWhileMaintainingOwnership", "Effect": "Allow", "Principal": { "AWS": [ "arn:aws:iam::809167139867:user/ecleuser", "arn:aws:iam:::user/" ] }, "Action": [ "s3:DeleteObject", "s3:GetBucketLocation", "s3:GetObject", "s3:ListBucket", "s3:ListBucketMultipartUploads", "s3:ListMultipartUploadParts", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::", "arn:aws:s3:::/*" ] } ] }