interface ReadSetExportJobStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Events.SequenceStoreEvents.ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/events#SequenceStoreEvents_ReadSetExportJobStatusChange_ReadSetExportJobStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.events.SequenceStoreEvents.ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_omics.events.SequenceStoreEvents.ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_omics ยป events ยป SequenceStoreEvents ยป ReadSetExportJobStatusChange ยป ReadSetExportJobStatusChangeProps |
Props type for SequenceStore aws.omics@ReadSetExportJobStatusChange 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 readSetExportJobStatusChangeProps: omics_events.SequenceStoreEvents.ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
id: ['id'],
omicsVersion: ['omicsVersion'],
sequenceStoreId: ['sequenceStoreId'],
status: ['status'],
statusMessage: ['statusMessage'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| id? | string[] | id property. |
| omics | string[] | omicsVersion property. |
| sequence | string[] | sequenceStoreId 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.
sequenceStoreId?
Type:
string[]
(optional, default: Filter with the SequenceStore reference)
sequenceStoreId property.
Specify an array of string values to match this event if the actual value of sequenceStoreId 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