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