interface ImageSetUpdatingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthImaging.Events.DatastoreEvents.ImageSetUpdating.ImageSetUpdatingProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthimaging/events#DatastoreEvents_ImageSetUpdating_ImageSetUpdatingProps |
Java | software.amazon.awscdk.mixins.preview.services.healthimaging.events.DatastoreEvents.ImageSetUpdating.ImageSetUpdatingProps |
Python | aws_cdk.mixins_preview.aws_healthimaging.events.DatastoreEvents.ImageSetUpdating.ImageSetUpdatingProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthimaging ยป events ยป DatastoreEvents ยป ImageSetUpdating ยป ImageSetUpdatingProps |
Props type for Datastore aws.healthimaging@ImageSetUpdating 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 imageSetUpdatingProps: healthimaging_events.DatastoreEvents.ImageSetUpdating.ImageSetUpdatingProps = {
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