/dhall-aws-cloudformation/sam/policy-template/SESEmailTemplateCrudPolicy.dhall

Copy path to clipboard

Source

let JSON = (./../../Prelude.dhall).JSON

let Fn = ./../../Fn.dhall

in JSON.object
( toMap
{ Statement =
JSON.array
[ JSON.object
( toMap
{ Effect = JSON.string "Allow"
, Action =
JSON.array
[ JSON.string "ses:CreateTemplate"
, JSON.string "ses:GetTemplate"
, JSON.string "ses:ListTemplates"
, JSON.string "ses:UpdateTemplate"
, JSON.string "ses:DeleteTemplate"
, JSON.string "ses:TestRenderTemplate"
]
, Resource = JSON.array [ JSON.string "*" ]
, Condition = JSON.null
}
)
]
}
)