Statement
The Statement element is the main element for a policy. This element is required. The Statement element is an array of individual statements. Each individual statement block must be enclosed in curly braces { }. The array must be enclosed in square brackets [ ].
The following example shows a policy that contains an array of one statement inside a single Statement element.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "*"
}
]
}