interface DataStoreCreationFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthImaging.Events.DatastoreEvents.DataStoreCreationFailed.DataStoreCreationFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthimaging/events#DatastoreEvents_DataStoreCreationFailed_DataStoreCreationFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.healthimaging.events.DatastoreEvents.DataStoreCreationFailed.DataStoreCreationFailedProps |
Python | aws_cdk.mixins_preview.aws_healthimaging.events.DatastoreEvents.DataStoreCreationFailed.DataStoreCreationFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthimaging ยป events ยป DatastoreEvents ยป DataStoreCreationFailed ยป DataStoreCreationFailedProps |
Props type for Datastore aws.healthimaging@DataStoreCreationFailed event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as healthimaging_events } from '@aws-cdk/mixins-preview/aws-healthimaging';
const dataStoreCreationFailedProps: healthimaging_events.DatastoreEvents.DataStoreCreationFailed.DataStoreCreationFailedProps = {
datastoreId: ['datastoreId'],
datastoreName: ['datastoreName'],
datastoreStatus: ['datastoreStatus'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
imagingVersion: ['imagingVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string[] | datastoreId property. |
| datastore | string[] | datastoreName property. |
| datastore | string[] | datastoreStatus property. |
| event | AWSEvent | EventBridge event metadata. |
| imaging | string[] | imagingVersion property. |
datastoreId?
Type:
string[]
(optional, default: Filter with the Datastore reference)
datastoreId property.
Specify an array of string values to match this event if the actual value of datastoreId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreName?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreName property.
Specify an array of string values to match this event if the actual value of datastoreName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreStatus?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreStatus property.
Specify an array of string values to match this event if the actual value of datastoreStatus 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.
imagingVersion?
Type:
string[]
(optional, default: Do not filter on this field)
imagingVersion property.
Specify an array of string values to match this event if the actual value of imagingVersion 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