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