1 Answer
- Newest
- Most votes
- Most comments
0
Here is a link to the CloudFormation documentation for GuardDuty Malware Protection
{ "Type" : "AWS::GuardDuty::MalwareProtectionPlan", "Properties" : { "Actions" : CFNActions, "ProtectedResource" : CFNProtectedResource, "Role" : String, "Tags" : [ TagItem, ... ] } }
In your case, you are wanting to protect S3 so the code would look like the following to specify the S3 Bucket.
{ "Type" : "AWS::GuardDuty::MalwareProtectionPlan", "Properties" : { "Actions" : CFNActions, "ProtectedResource" : { "S3Bucket" : S3Bucket }, "Role" : String, "Tags" : [ TagItem, ... ] } }
Hope this helps!
Relevant content
- asked a year ago
- asked 10 months ago
- AWS OFFICIALUpdated 3 years ago

Cool. I'll give that a shot. Thxs