Interface CfnAnnotationStoreProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.535Z") @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();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the Annotation Store.
    • getStoreFormat

      @Stability(Stable) @NotNull String getStoreFormat()
      The annotation file format of the store.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description for the store.
    • getReference

      @Stability(Stable) @Nullable default Object getReference()
      The genome reference for the store's annotations.
    • getSseConfig

      @Stability(Stable) @Nullable default Object getSseConfig()
      The store's server-side encryption (SSE) settings.
    • getStoreOptions

      @Stability(Stable) @Nullable default Object getStoreOptions()
      File parsing options for the annotation store.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Tags for the store.
    • builder

      @Stability(Stable) static CfnAnnotationStoreProps.Builder builder()
      Returns:
      a CfnAnnotationStoreProps.Builder of CfnAnnotationStoreProps