interface GuardDutyMalwareProtectionPostScanActionFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#GuardDutyMalwareProtectionPostScanActionFailed_GuardDutyMalwareProtectionPostScanActionFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps |
Python | aws_cdk.mixins_preview.aws_guardduty.events.GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป GuardDutyMalwareProtectionPostScanActionFailed ยป GuardDutyMalwareProtectionPostScanActionFailedProps |
Props type for aws.guardduty@GuardDutyMalwareProtectionPostScanActionFailed 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 guardDutyMalwareProtectionPostScanActionFailedProps: guardduty_events.GuardDutyMalwareProtectionPostScanActionFailed.GuardDutyMalwareProtectionPostScanActionFailedProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventTime: ['eventTime'],
postScanActions: [{
actionType: ['actionType'],
failureReason: ['failureReason'],
status: ['status'],
}],
s3ObjectDetails: {
bucketName: ['bucketName'],
eTag: ['eTag'],
objectKey: ['objectKey'],
versionId: ['versionId'],
},
schemaVersion: ['schemaVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | eventTime property. |
| post | Post[] | postScanActions property. |
| s3 | S3 | s3ObjectDetails property. |
| schema | string[] | schemaVersion property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
eventTime?
Type:
string[]
(optional, default: Do not filter on this field)
eventTime property.
Specify an array of string values to match this event if the actual value of eventTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
postScanActions?
Type:
Post[]
(optional, default: Do not filter on this field)
postScanActions property.
Specify an array of string values to match this event if the actual value of postScanActions 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.
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