Interface CfnAnnotationStore.TsvStoreOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnnotationStore.TsvStoreOptionsProperty.Jsii$Proxy
Enclosing class:
CfnAnnotationStore

@Stability(Stable) public static interface CfnAnnotationStore.TsvStoreOptionsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
 Object schema;
 TsvStoreOptionsProperty tsvStoreOptionsProperty = TsvStoreOptionsProperty.builder()
         .annotationType("annotationType")
         .formatToHeader(Map.of(
                 "formatToHeaderKey", "formatToHeader"))
         .schema(schema)
         .build();