interface GuardDutyMalwareProtectionObjectScanResultProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#GuardDutyMalwareProtectionObjectScanResult_GuardDutyMalwareProtectionObjectScanResultProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps |
Python | aws_cdk.mixins_preview.aws_guardduty.events.GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป GuardDutyMalwareProtectionObjectScanResult ยป GuardDutyMalwareProtectionObjectScanResultProps |
Props type for aws.guardduty@GuardDutyMalwareProtectionObjectScanResult event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as guardduty_events } from '@aws-cdk/mixins-preview/aws-guardduty';
const guardDutyMalwareProtectionObjectScanResultProps: guardduty_events.GuardDutyMalwareProtectionObjectScanResult.GuardDutyMalwareProtectionObjectScanResultProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
resourceType: ['resourceType'],
s3ObjectDetails: {
bucketName: ['bucketName'],
eTag: ['eTag'],
objectKey: ['objectKey'],
s3Throttled: ['s3Throttled'],
versionId: ['versionId'],
},
scanResultDetails: {
scanResultStatus: ['scanResultStatus'],
threats: [{
name: ['name'],
}],
},
scanStatus: ['scanStatus'],
schemaVersion: ['schemaVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| resource | string[] | resourceType property. |
| s3 | S3 | s3ObjectDetails property. |
| scan | Scan | scanResultDetails property. |
| scan | string[] | scanStatus property. |
| schema | string[] | schemaVersion property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
resourceType?
Type:
string[]
(optional, default: Do not filter on this field)
resourceType property.
Specify an array of string values to match this event if the actual value of resourceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3ObjectDetails?
Type:
S3
(optional, default: Do not filter on this field)
s3ObjectDetails property.
Specify an array of string values to match this event if the actual value of s3ObjectDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scanResultDetails?
Type:
Scan
(optional, default: Do not filter on this field)
scanResultDetails property.
Specify an array of string values to match this event if the actual value of scanResultDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
scanStatus?
Type:
string[]
(optional, default: Do not filter on this field)
scanStatus property.
Specify an array of string values to match this event if the actual value of scanStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
schemaVersion?
Type:
string[]
(optional, default: Do not filter on this field)
schemaVersion property.
Specify an array of string values to match this event if the actual value of schemaVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript