Interface CfnAnnotationStore.StoreOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnnotationStore.StoreOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnnotationStore
@Stability(Stable)
public static interface CfnAnnotationStore.StoreOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
Object schema;
StoreOptionsProperty storeOptionsProperty = StoreOptionsProperty.builder()
.tsvStoreOptions(TsvStoreOptionsProperty.builder()
.annotationType("annotationType")
.formatToHeader(Map.of(
"formatToHeaderKey", "formatToHeader"))
.schema(schema)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnnotationStore.StoreOptionsPropertystatic final classAn implementation forCfnAnnotationStore.StoreOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTsvStoreOptions
Formatting options for a TSV file.Returns union: either
IResolvableorCfnAnnotationStore.TsvStoreOptionsProperty- See Also:
-
builder
-