interface ReferenceStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Events.ReferenceStoreEvents.ReferenceStatusChange.ReferenceStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/events#ReferenceStoreEvents_ReferenceStatusChange_ReferenceStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.events.ReferenceStoreEvents.ReferenceStatusChange.ReferenceStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_omics.events.ReferenceStoreEvents.ReferenceStatusChange.ReferenceStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_omics ยป events ยป ReferenceStoreEvents ยป ReferenceStatusChange ยป ReferenceStatusChangeProps |
Props type for ReferenceStore aws.omics@ReferenceStatusChange 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 referenceStatusChangeProps: omics_events.ReferenceStoreEvents.ReferenceStatusChange.ReferenceStatusChangeProps = {
arn: ['arn'],
creationJobId: ['creationJobId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
id: ['id'],
omicsVersion: ['omicsVersion'],
referenceStoreId: ['referenceStoreId'],
status: ['status'],
};
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. |
| reference | string[] | referenceStoreId property. |
| status? | string[] | status 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.
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.

.NET
Go
Java
Python
TypeScript