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
- Accepted Answerasked a month ago
- asked 6 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 2 years ago
Cool. I'll give that a shot. Thxs