1 Risposta
- Più recenti
- Maggior numero di voti
- Maggior numero di commenti
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!

Cool. I'll give that a shot. Thxs