interface S3ObjectDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.GuardDutyMalwareProtectionPostScanActionFailed.S3ObjectDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#GuardDutyMalwareProtectionPostScanActionFailed_S3ObjectDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.GuardDutyMalwareProtectionPostScanActionFailed.S3ObjectDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.GuardDutyMalwareProtectionPostScanActionFailed.S3ObjectDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป GuardDutyMalwareProtectionPostScanActionFailed ยป S3ObjectDetails |
Type definition for S3ObjectDetails.
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 s3ObjectDetails: guardduty_events.GuardDutyMalwareProtectionPostScanActionFailed.S3ObjectDetails = {
bucketName: ['bucketName'],
eTag: ['eTag'],
objectKey: ['objectKey'],
versionId: ['versionId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string[] | bucketName property. |
| e | string[] | eTag property. |
| object | string[] | objectKey property. |
| version | string[] | versionId property. |
bucketName?
Type:
string[]
(optional, default: Do not filter on this field)
bucketName property.
Specify an array of string values to match this event if the actual value of bucketName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eTag?
Type:
string[]
(optional, default: Do not filter on this field)
eTag property.
Specify an array of string values to match this event if the actual value of eTag is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
objectKey?
Type:
string[]
(optional, default: Do not filter on this field)
objectKey property.
Specify an array of string values to match this event if the actual value of objectKey is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
versionId?
Type:
string[]
(optional, default: Do not filter on this field)
versionId property.
Specify an array of string values to match this event if the actual value of versionId 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