interface StorageGatewayObjectUploadEventProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StorageGateway.Events.StorageGatewayObjectUploadEvent.StorageGatewayObjectUploadEventProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstoragegateway/events#StorageGatewayObjectUploadEvent_StorageGatewayObjectUploadEventProps |
Java | software.amazon.awscdk.mixins.preview.services.storagegateway.events.StorageGatewayObjectUploadEvent.StorageGatewayObjectUploadEventProps |
Python | aws_cdk.mixins_preview.aws_storagegateway.events.StorageGatewayObjectUploadEvent.StorageGatewayObjectUploadEventProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_storagegateway ยป events ยป StorageGatewayObjectUploadEvent ยป StorageGatewayObjectUploadEventProps |
Props type for aws.storagegateway@StorageGatewayObjectUploadEvent event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as storagegateway_events } from '@aws-cdk/mixins-preview/aws-storagegateway';
const storageGatewayObjectUploadEventProps: storagegateway_events.StorageGatewayObjectUploadEvent.StorageGatewayObjectUploadEventProps = {
bucketName: ['bucketName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventType: ['eventType'],
modificationTime: ['modificationTime'],
objectKey: ['objectKey'],
objectSize: ['objectSize'],
prefix: ['prefix'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string[] | bucket-name property. |
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | event-type property. |
| modification | string[] | modification-time property. |
| object | string[] | object-key property. |
| object | string[] | object-size property. |
| prefix? | string[] | prefix property. |
bucketName?
Type:
string[]
(optional, default: Do not filter on this field)
bucket-name property.
Specify an array of string values to match this event if the actual value of bucket-name 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.
eventType?
Type:
string[]
(optional, default: Do not filter on this field)
event-type property.
Specify an array of string values to match this event if the actual value of event-type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
modificationTime?
Type:
string[]
(optional, default: Do not filter on this field)
modification-time property.
Specify an array of string values to match this event if the actual value of modification-time 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)
object-key property.
Specify an array of string values to match this event if the actual value of object-key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
objectSize?
Type:
string[]
(optional, default: Do not filter on this field)
object-size property.
Specify an array of string values to match this event if the actual value of object-size is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
prefix?
Type:
string[]
(optional, default: Do not filter on this field)
prefix property.
Specify an array of string values to match this event if the actual value of prefix 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