interface CfnMalwareProtectionPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMalwareProtectionPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMalwareProtectionPlanMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMalwareProtectionPlanMixinProps |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMalwareProtectionPlanMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMalwareProtectionPlanMixinProps |
Properties for CfnMalwareProtectionPlanPropsMixin.
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 cfnMalwareProtectionPlanMixinProps: guardduty_mixins.CfnMalwareProtectionPlanMixinProps = {
actions: {
tagging: {
status: 'status',
},
},
protectedResource: {
s3Bucket: {
bucketName: 'bucketName',
objectPrefixes: ['objectPrefixes'],
},
},
role: 'role',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | CFNActions | Specifies the action that is to be applied to the Malware Protection plan resource. |
| protected | IResolvable | CFNProtected | Information about the protected resource. |
| role? | string | Amazon Resource Name (ARN) of the IAM role that includes the permissions required to scan and (optionally) add tags to the associated protected resource. |
| tags? | Tag[] | The tags to be added to the created Malware Protection plan resource. |
actions?
Type:
IResolvable | CFNActions
(optional)
Specifies the action that is to be applied to the Malware Protection plan resource.
protectedResource?
Type:
IResolvable | CFNProtected
(optional)
Information about the protected resource.
Presently, S3Bucket is the only supported protected resource.
role?
Type:
string
(optional)
Amazon Resource Name (ARN) of the IAM role that includes the permissions required to scan and (optionally) add tags to the associated protected resource.
To find the ARN of your IAM role, go to the IAM console, and select the role name for details.
tags?
Type:
Tag[]
(optional)
The tags to be added to the created Malware Protection plan resource.
Each tag consists of a key and an optional value, both of which you need to specify.

.NET
Go
Java
Python
TypeScript