interface CFNProtectedResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMalwareProtectionPlanPropsMixin_CFNProtectedResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMalwareProtectionPlanPropsMixin » CFNProtectedResourceProperty |
Information about the protected resource.
Presently, S3Bucket is the only supported protected resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as guardduty_mixins } from '@aws-cdk/mixins-preview/aws-guardduty';
const cFNProtectedResourceProperty: guardduty_mixins.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty = {
s3Bucket: {
bucketName: 'bucketName',
objectPrefixes: ['objectPrefixes'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Information about the protected S3 bucket resource. |
s3Bucket?
Type:
IResolvable | S3
(optional)
Information about the protected S3 bucket resource.

.NET
Go
Java
Python
TypeScript