{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Description": "Simple S3 bucket",
  "Resources": {
    "MyBucket": {
      "Type": "AWS::S3::Bucket",
      "Properties": {
        "BucketName": "my-simple-bucket"
      }
    }
  }
}
