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