Interface CfnAnnotationStoreProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnnotationStoreProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:20.016Z") @Stability(Stable) public interface CfnAnnotationStoreProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAnnotationStore.

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;
 CfnAnnotationStoreProps cfnAnnotationStoreProps = CfnAnnotationStoreProps.builder()
         .name("name")
         .storeFormat("storeFormat")
         // the properties below are optional
         .description("description")
         .reference(ReferenceItemProperty.builder()
                 .referenceArn("referenceArn")
                 .build())
         .sseConfig(SseConfigProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .keyArn("keyArn")
                 .build())
         .storeOptions(StoreOptionsProperty.builder()
                 .tsvStoreOptions(TsvStoreOptionsProperty.builder()
                         .annotationType("annotationType")
                         .formatToHeader(Map.of(
                                 "formatToHeaderKey", "formatToHeader"))
                         .schema(schema)
                         .build())
                 .build())
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: