1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
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!
Contenus pertinents
demandé il y a 9 mois
demandé il y a 9 mois
demandé il y a un an
- AWS OFFICIELA mis à jour il y a 3 ans

Cool. I'll give that a shot. Thxs