interface ImageSetDeletedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthImaging.Events.DatastoreEvents.ImageSetDeleted.ImageSetDeletedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthimaging/events#DatastoreEvents_ImageSetDeleted_ImageSetDeletedProps |
Java | software.amazon.awscdk.mixins.preview.services.healthimaging.events.DatastoreEvents.ImageSetDeleted.ImageSetDeletedProps |
Python | aws_cdk.mixins_preview.aws_healthimaging.events.DatastoreEvents.ImageSetDeleted.ImageSetDeletedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthimaging ยป events ยป DatastoreEvents ยป ImageSetDeleted ยป ImageSetDeletedProps |
Props type for Datastore aws.healthimaging@ImageSetDeleted 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 imageSetDeletedProps: healthimaging_events.DatastoreEvents.ImageSetDeleted.ImageSetDeletedProps = {
datastoreId: ['datastoreId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
imageSetId: ['imageSetId'],
imageSetState: ['imageSetState'],
imageSetWorkflowStatus: ['imageSetWorkflowStatus'],
imagingVersion: ['imagingVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string[] | datastoreId property. |
| event | AWSEvent | EventBridge event metadata. |
| image | string[] | imageSetId property. |
| image | string[] | imageSetState property. |
| image | string[] | imageSetWorkflowStatus property. |
| 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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
imageSetId?
Type:
string[]
(optional, default: Do not filter on this field)
imageSetId property.
Specify an array of string values to match this event if the actual value of imageSetId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageSetState?
Type:
string[]
(optional, default: Do not filter on this field)
imageSetState property.
Specify an array of string values to match this event if the actual value of imageSetState is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageSetWorkflowStatus?
Type:
string[]
(optional, default: Do not filter on this field)
imageSetWorkflowStatus property.
Specify an array of string values to match this event if the actual value of imageSetWorkflowStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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