interface StoreOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Omics.CfnAnnotationStore.StoreOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnAnnotationStore_StoreOptionsProperty | 
  Java | software.amazon.awscdk.services.omics.CfnAnnotationStore.StoreOptionsProperty | 
  Python | aws_cdk.aws_omics.CfnAnnotationStore.StoreOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_omics » CfnAnnotationStore » StoreOptionsProperty | 
The store's file parsing options.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as omics } from 'aws-cdk-lib';
declare const schema: any;
const storeOptionsProperty: omics.CfnAnnotationStore.StoreOptionsProperty = {
  tsvStoreOptions: {
    annotationType: 'annotationType',
    formatToHeader: {
      formatToHeaderKey: 'formatToHeader',
    },
    schema: schema,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| tsv | IResolvable | Tsv | Formatting options for a TSV file. | 
tsvStoreOptions
Type:
IResolvable | Tsv
Formatting options for a TSV file.

 .NET
 Go
 Java
 Python
 TypeScript