/SEMI1-1S2023

Seminario de sistemas 1 - A

Primary LanguageTypeScript

Seminario de sistemas 1

Seccion A

Estructura de una politica S3

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "PublicReadGetObject",
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:GetObject",
      "Resource": "{cambiar por el arn de su bucket}/*"
    }
  ]
}

Ejemplo

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "PublicReadGetObject",
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::ejemplosemi/*"
    }
  ]
}