Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nivleshc/fa04c3b6854620c939e64b3f39bff834 to your computer and use it in GitHub Desktop.
Save nivleshc/fa04c3b6854620c939e64b3f39bff834 to your computer and use it in GitHub Desktop.
An AWS IAM Policy for AWS Step Functions to access the Amazon S3 Bucket that contains the training and validation data. The model artifacts will also be uploaded to the Amazon S3 Bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:ListBucket"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::bucketName"
]
},
{
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::bucketName/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment