interface StorageGatewayFileUploadEventProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StorageGateway.Events.StorageGatewayFileUploadEvent.StorageGatewayFileUploadEventProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstoragegateway/events#StorageGatewayFileUploadEvent_StorageGatewayFileUploadEventProps |
Java | software.amazon.awscdk.mixins.preview.services.storagegateway.events.StorageGatewayFileUploadEvent.StorageGatewayFileUploadEventProps |
Python | aws_cdk.mixins_preview.aws_storagegateway.events.StorageGatewayFileUploadEvent.StorageGatewayFileUploadEventProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_storagegateway ยป events ยป StorageGatewayFileUploadEvent ยป StorageGatewayFileUploadEventProps |
Props type for aws.storagegateway@StorageGatewayFileUploadEvent 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 storageGatewayFileUploadEventProps: storagegateway_events.StorageGatewayFileUploadEvent.StorageGatewayFileUploadEventProps = {
completed: ['completed'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventType: ['eventType'],
notificationId: ['notificationId'],
requestReceived: ['requestReceived'],
};
Properties
| Name | Type | Description |
|---|---|---|
| completed? | string[] | completed property. |
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | event-type property. |
| notification | string[] | notification-id property. |
| request | string[] | request-received property. |
completed?
Type:
string[]
(optional, default: Do not filter on this field)
completed property.
Specify an array of string values to match this event if the actual value of completed 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.
notificationId?
Type:
string[]
(optional, default: Do not filter on this field)
notification-id property.
Specify an array of string values to match this event if the actual value of notification-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
requestReceived?
Type:
string[]
(optional, default: Do not filter on this field)
request-received property.
Specify an array of string values to match this event if the actual value of request-received 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