interface ReadSetStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Events.SequenceStoreEvents.ReadSetStatusChange.ReadSetStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/events#SequenceStoreEvents_ReadSetStatusChange_ReadSetStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.events.SequenceStoreEvents.ReadSetStatusChange.ReadSetStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_omics.events.SequenceStoreEvents.ReadSetStatusChange.ReadSetStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_omics ยป events ยป SequenceStoreEvents ยป ReadSetStatusChange ยป ReadSetStatusChangeProps |
Props type for SequenceStore aws.omics@ReadSetStatusChange 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 readSetStatusChangeProps: omics_events.SequenceStoreEvents.ReadSetStatusChange.ReadSetStatusChangeProps = {
arn: ['arn'],
creationJobId: ['creationJobId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
id: ['id'],
omicsVersion: ['omicsVersion'],
sequenceStoreId: ['sequenceStoreId'],
status: ['status'],
statusMessage: ['statusMessage'],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string[] | arn property. |
| creation | string[] | creationJobId property. |
| 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. |
arn?
Type:
string[]
(optional, default: Do not filter on this field)
arn property.
Specify an array of string values to match this event if the actual value of arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
creationJobId?
Type:
string[]
(optional, default: Do not filter on this field)
creationJobId property.
Specify an array of string values to match this event if the actual value of creationJobId 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.
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