interface MalwareProtectionPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GuardDuty.MalwareProtectionPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#MalwareProtectionPlanReference |
Java | software.amazon.awscdk.services.guardduty.MalwareProtectionPlanReference |
Python | aws_cdk.aws_guardduty.MalwareProtectionPlanReference |
TypeScript | aws-cdk-lib » aws_guardduty » MalwareProtectionPlanReference |
A reference to a MalwareProtectionPlan 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-lib';
const malwareProtectionPlanReference: guardduty.MalwareProtectionPlanReference = {
malwareProtectionPlanArn: 'malwareProtectionPlanArn',
malwareProtectionPlanId: 'malwareProtectionPlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| malware | string | The ARN of the MalwareProtectionPlan resource. |
| malware | string | The MalwareProtectionPlanId of the MalwareProtectionPlan resource. |
malwareProtectionPlanArn
Type:
string
The ARN of the MalwareProtectionPlan resource.
malwareProtectionPlanId
Type:
string
The MalwareProtectionPlanId of the MalwareProtectionPlan resource.

.NET
Go
Java
Python
TypeScript