interface TsvStoreOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Omics.CfnAnnotationStore.TsvStoreOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnAnnotationStore_TsvStoreOptionsProperty | 
  Java | software.amazon.awscdk.services.omics.CfnAnnotationStore.TsvStoreOptionsProperty | 
  Python | aws_cdk.aws_omics.CfnAnnotationStore.TsvStoreOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_omics » CfnAnnotationStore » TsvStoreOptionsProperty | 
The store's 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 tsvStoreOptionsProperty: omics.CfnAnnotationStore.TsvStoreOptionsProperty = {
  annotationType: 'annotationType',
  formatToHeader: {
    formatToHeaderKey: 'formatToHeader',
  },
  schema: schema,
};
Properties
| Name | Type | Description | 
|---|---|---|
| annotation | string | The store's annotation type. | 
| format | { [string]: string } | IResolvable | The store's header key to column name mapping. | 
| schema? | any | The schema of an annotation store. | 
annotationType?
Type:
string
(optional)
The store's annotation type.
formatToHeader?
Type:
{ [string]: string } | IResolvable
(optional)
The store's header key to column name mapping.
schema?
Type:
any
(optional)
The schema of an annotation store.

 .NET
 Go
 Java
 Python
 TypeScript