interface ObjectACLUpdatedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Events.BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/events#BucketEvents_ObjectACLUpdated_ObjectACLUpdatedProps |
Java | software.amazon.awscdk.mixins.preview.services.s3.events.BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps |
Python | aws_cdk.mixins_preview.aws_s3.events.BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_s3 ยป events ยป BucketEvents ยป ObjectACLUpdated ยป ObjectACLUpdatedProps |
Props type for Bucket aws.s3@ObjectACLUpdated event.
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 objectACLUpdatedProps: s3_events.BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps = {
bucket: {
name: ['name'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
object: {
etag: ['etag'],
key: ['key'],
versionId: ['versionId'],
},
requester: ['requester'],
requestId: ['requestId'],
sourceIpAddress: ['sourceIpAddress'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | Bucket | bucket property. |
| event | AWSEvent | EventBridge event metadata. |
| object? | Object | object property. |
| request | string[] | request-id property. |
| requester? | string[] | requester property. |
| source | string[] | source-ip-address property. |
| version? | string[] | version property. |
bucket?
Type:
Bucket
(optional, default: Do not filter on this field)
bucket property.
Specify an array of string values to match this event if the actual value of bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
object?
Type:
Object
(optional, default: Do not filter on this field)
object property.
Specify an array of string values to match this event if the actual value of object is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
requestId?
Type:
string[]
(optional, default: Do not filter on this field)
request-id property.
Specify an array of string values to match this event if the actual value of request-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
requester?
Type:
string[]
(optional, default: Do not filter on this field)
requester property.
Specify an array of string values to match this event if the actual value of requester is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceIpAddress?
Type:
string[]
(optional, default: Do not filter on this field)
source-ip-address property.
Specify an array of string values to match this event if the actual value of source-ip-address is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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