interface ExportJobCompletedWithErrorsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthLake.Events.ExportJobCompletedWithErrors.ExportJobCompletedWithErrorsProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthlake/events#ExportJobCompletedWithErrors_ExportJobCompletedWithErrorsProps |
Java | software.amazon.awscdk.mixins.preview.services.healthlake.events.ExportJobCompletedWithErrors.ExportJobCompletedWithErrorsProps |
Python | aws_cdk.mixins_preview.aws_healthlake.events.ExportJobCompletedWithErrors.ExportJobCompletedWithErrorsProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthlake ยป events ยป ExportJobCompletedWithErrors ยป ExportJobCompletedWithErrorsProps |
Props type for aws.healthlake@ExportJobCompletedWithErrors 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 exportJobCompletedWithErrorsProps: healthlake_events.ExportJobCompletedWithErrors.ExportJobCompletedWithErrorsProps = {
datastoreId: ['datastoreId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
jobId: ['jobId'],
outputDataConfig: {
s3Uri: ['s3Uri'],
},
submitTime: ['submitTime'],
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string[] | datastoreId property. |
| event | AWSEvent | EventBridge event metadata. |
| job | string[] | jobId property. |
| output | Output | outputDataConfig 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.
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.
outputDataConfig?
Type:
Output
(optional, default: Do not filter on this field)
outputDataConfig property.
Specify an array of string values to match this event if the actual value of outputDataConfig 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