interface ObjectType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Events.BucketEvents.ObjectACLUpdated.ObjectType |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/events#BucketEvents_ObjectACLUpdated_ObjectType |
Java | software.amazon.awscdk.mixins.preview.services.s3.events.BucketEvents.ObjectACLUpdated.ObjectType |
Python | aws_cdk.mixins_preview.aws_s3.events.BucketEvents.ObjectACLUpdated.ObjectType |
TypeScript | @aws-cdk/mixins-preview ยป aws_s3 ยป events ยป BucketEvents ยป ObjectACLUpdated ยป ObjectType |
Type definition for Object.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as s3_events } from '@aws-cdk/mixins-preview/aws-s3';
const objectType: s3_events.BucketEvents.ObjectACLUpdated.ObjectType = {
etag: ['etag'],
key: ['key'],
versionId: ['versionId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| etag? | string[] | etag property. |
| key? | string[] | key property. |
| version | string[] | version-id property. |
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.
key?
Type:
string[]
(optional, default: Do not filter on this field)
key property.
Specify an array of string values to match this event if the actual value of key 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)
version-id property.
Specify an array of string values to match this event if the actual value of version-id 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