1 個回答
- 最新
- 最多得票
- 最多評論
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!
相關內容
已提問 1 年前

Cool. I'll give that a shot. Thxs