interface S3BucketProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMalwareProtectionPlanPropsMixin.S3BucketProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMalwareProtectionPlanPropsMixin_S3BucketProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.S3BucketProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.S3BucketProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMalwareProtectionPlanPropsMixin » S3BucketProperty |
Information about the protected S3 bucket 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 s3BucketProperty: guardduty_mixins.CfnMalwareProtectionPlanPropsMixin.S3BucketProperty = {
bucketName: 'bucketName',
objectPrefixes: ['objectPrefixes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Name of the S3 bucket. |
| object | string[] | Information about the specified object prefixes. |
bucketName?
Type:
string
(optional)
Name of the S3 bucket.
objectPrefixes?
Type:
string[]
(optional)
Information about the specified object prefixes.
An S3 object will be scanned only if it belongs to any of the specified object prefixes.

.NET
Go
Java
Python
TypeScript