interface ImportJobCompletedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthLake.Events.ImportJobCompleted.ImportJobCompletedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthlake/events#ImportJobCompleted_ImportJobCompletedProps |
Java | software.amazon.awscdk.mixins.preview.services.healthlake.events.ImportJobCompleted.ImportJobCompletedProps |
Python | aws_cdk.mixins_preview.aws_healthlake.events.ImportJobCompleted.ImportJobCompletedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthlake ยป events ยป ImportJobCompleted ยป ImportJobCompletedProps |
Props type for aws.healthlake@ImportJobCompleted event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as healthlake_events } from '@aws-cdk/mixins-preview/aws-healthlake';
const importJobCompletedProps: healthlake_events.ImportJobCompleted.ImportJobCompletedProps = {
datastoreId: ['datastoreId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
inputDataConfig: {
s3Uri: ['s3Uri'],
},
jobId: ['jobId'],
submitTime: ['submitTime'],
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string[] | datastoreId property. |
| event | AWSEvent | EventBridge event metadata. |
| input | Input | inputDataConfig property. |
| job | string[] | jobId property. |
| submit | string[] | submitTime property. |
datastoreId?
Type:
string[]
(optional, default: Do not filter on this field)
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.
inputDataConfig?
Type:
Input
(optional, default: Do not filter on this field)
inputDataConfig property.
Specify an array of string values to match this event if the actual value of inputDataConfig 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.
submitTime?
Type:
string[]
(optional, default: Do not filter on this field)
submitTime property.
Specify an array of string values to match this event if the actual value of submitTime 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