interface SnapshotExportFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Events.SnapshotExportFailed.SnapshotExportFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/events#SnapshotExportFailed_SnapshotExportFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.events.SnapshotExportFailed.SnapshotExportFailedProps |
Python | aws_cdk.mixins_preview.aws_elasticache.events.SnapshotExportFailed.SnapshotExportFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_elasticache ยป events ยป SnapshotExportFailed ยป SnapshotExportFailedProps |
Props type for aws.elasticache@SnapshotExportFailed event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as elasticache_events } from '@aws-cdk/mixins-preview/aws-elasticache';
const snapshotExportFailedProps: elasticache_events.SnapshotExportFailed.SnapshotExportFailedProps = {
eventCategories: ['eventCategories'],
eventId: ['eventId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
message: ['message'],
sourceArn: ['sourceArn'],
sourceIdentifier: ['sourceIdentifier'],
sourceType: ['sourceType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string[] | EventCategories property. |
| event | string[] | EventID property. |
| event | AWSEvent | EventBridge event metadata. |
| message? | string[] | Message property. |
| source | string[] | SourceArn property. |
| source | string[] | SourceIdentifier property. |
| source | string[] | SourceType property. |
eventCategories?
Type:
string[]
(optional, default: Do not filter on this field)
EventCategories property.
Specify an array of string values to match this event if the actual value of EventCategories is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventId?
Type:
string[]
(optional, default: Do not filter on this field)
EventID property.
Specify an array of string values to match this event if the actual value of EventID 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.
message?
Type:
string[]
(optional, default: Do not filter on this field)
Message property.
Specify an array of string values to match this event if the actual value of Message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceArn?
Type:
string[]
(optional, default: Do not filter on this field)
SourceArn property.
Specify an array of string values to match this event if the actual value of SourceArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceIdentifier?
Type:
string[]
(optional, default: Do not filter on this field)
SourceIdentifier property.
Specify an array of string values to match this event if the actual value of SourceIdentifier is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceType?
Type:
string[]
(optional, default: Do not filter on this field)
SourceType property.
Specify an array of string values to match this event if the actual value of SourceType 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