Skip to main content

Export Session Recordings to S3

You can configure your own S3 bucket to store the redacted logs after task execution.

  • In AWS, create a new IAM user, and attach the following policy to it:
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::{bucket-name}",
"arn:aws:s3:::{bucket-name}/*"
]
}
]
}