interface CFNProtectedResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsguardduty#CfnMalwareProtectionPlanPropsMixin_CFNProtectedResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.guardduty.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_guardduty.CfnMalwareProtectionPlanPropsMixin.CFNProtectedResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_guardduty » 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 { aws_guardduty as guardduty } from '@aws-cdk/cfn-property-mixins';
const cFNProtectedResourceProperty: guardduty.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