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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnnotationStoreProps
static final class
An implementation forCfnAnnotationStoreProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A description for the store.getName()
The name of the Annotation Store.default Object
The genome reference for the store's annotations.default Object
The store's server-side encryption (SSE) settings.The annotation file format of the store.default Object
File parsing options for the annotation store.getTags()
Tags for the store.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the Annotation Store. -
getStoreFormat
The annotation file format of the store. -
getDescription
A description for the store. -
getReference
The genome reference for the store's annotations. -
getSseConfig
The store's server-side encryption (SSE) settings. -
getStoreOptions
File parsing options for the annotation store. -
getTags
Tags for the store. -
builder
- Returns:
- a
CfnAnnotationStoreProps.Builder
ofCfnAnnotationStoreProps
-