interface ReferenceImportJobStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Events.ReferenceStoreEvents.ReferenceImportJobStatusChange.ReferenceImportJobStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/events#ReferenceStoreEvents_ReferenceImportJobStatusChange_ReferenceImportJobStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.events.ReferenceStoreEvents.ReferenceImportJobStatusChange.ReferenceImportJobStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_omics.events.ReferenceStoreEvents.ReferenceImportJobStatusChange.ReferenceImportJobStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_omics ยป events ยป ReferenceStoreEvents ยป ReferenceImportJobStatusChange ยป ReferenceImportJobStatusChangeProps |
Props type for ReferenceStore aws.omics@ReferenceImportJobStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as omics_events } from '@aws-cdk/mixins-preview/aws-omics';
const referenceImportJobStatusChangeProps: omics_events.ReferenceStoreEvents.ReferenceImportJobStatusChange.ReferenceImportJobStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
id: ['id'],
omicsVersion: ['omicsVersion'],
referenceStoreId: ['referenceStoreId'],
status: ['status'],
statusMessage: ['statusMessage'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| id? | string[] | id property. |
| omics | string[] | omicsVersion property. |
| reference | string[] | referenceStoreId property. |
| status? | string[] | status property. |
| status | string[] | statusMessage property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
id?
Type:
string[]
(optional, default: Do not filter on this field)
id property.
Specify an array of string values to match this event if the actual value of id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
omicsVersion?
Type:
string[]
(optional, default: Do not filter on this field)
omicsVersion property.
Specify an array of string values to match this event if the actual value of omicsVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
referenceStoreId?
Type:
string[]
(optional, default: Filter with the ReferenceStore reference)
referenceStoreId property.
Specify an array of string values to match this event if the actual value of referenceStoreId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusMessage?
Type:
string[]
(optional, default: Do not filter on this field)
statusMessage property.
Specify an array of string values to match this event if the actual value of statusMessage 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