aws-iam 0.2.2

A Rust crate for dealing with AWS IAM Policy resources
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "Version": "2012-10-17",
  "Statement": {
    "Effect": "Allow",
    "Action": "dynamodb:GetItem",
    "Resource": "arn:aws:dynamodb:*:*:table/Thread",
    "Condition": {
      "ForAllValues:StringEquals": {
        "dynamodb:Attributes": [
          "PostDateTime",
          "Message",
          "Tags"
        ]
      }
    }
  }
}