interface TsvStoreOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Omics.CfnAnnotationStore.TsvStoreOptionsProperty |
Java | software.amazon.awscdk.services.omics.CfnAnnotationStore.TsvStoreOptionsProperty |
Python | aws_cdk.aws_omics.CfnAnnotationStore.TsvStoreOptionsProperty |
TypeScript | @aws-cdk/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 * as omics from '@aws-cdk/aws-omics';
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 | IResolvable | { [string]: string } | 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:
IResolvable
| { [string]: string }
(optional)
The store's header key to column name mapping.
schema?
Type:
any
(optional)
The schema of an annotation store.