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