interface GuardDutyMalwareProtectionResourceStatusWarningProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.GuardDutyMalwareProtectionResourceStatusWarning.GuardDutyMalwareProtectionResourceStatusWarningProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#GuardDutyMalwareProtectionResourceStatusWarning_GuardDutyMalwareProtectionResourceStatusWarningProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.GuardDutyMalwareProtectionResourceStatusWarning.GuardDutyMalwareProtectionResourceStatusWarningProps |
Python | aws_cdk.mixins_preview.aws_guardduty.events.GuardDutyMalwareProtectionResourceStatusWarning.GuardDutyMalwareProtectionResourceStatusWarningProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป GuardDutyMalwareProtectionResourceStatusWarning ยป GuardDutyMalwareProtectionResourceStatusWarningProps |
Props type for aws.guardduty@GuardDutyMalwareProtectionResourceStatusWarning 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 guardDutyMalwareProtectionResourceStatusWarningProps: guardduty_events.GuardDutyMalwareProtectionResourceStatusWarning.GuardDutyMalwareProtectionResourceStatusWarningProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventTime: ['eventTime'],
resourceStatus: ['resourceStatus'],
s3BucketDetails: {
bucketName: ['bucketName'],
},
schemaVersion: ['schemaVersion'],
statusReasons: [{
code: ['code'],
}],
};
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. |
| status | Status[] | statusReasons 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.
statusReasons?
Type:
Status[]
(optional, default: Do not filter on this field)
statusReasons property.
Specify an array of string values to match this event if the actual value of statusReasons 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