Interface CfnAnnotationStoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnnotationStoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:25.812Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnnotationStorePropsstatic final classAn implementation forCfnAnnotationStoreProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the store.getName()The name of the Annotation Store.default ObjectThe genome reference for the store's annotations.default ObjectThe store's server-side encryption (SSE) settings.The annotation file format of the store.default ObjectFile 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.- See Also:
-
getStoreFormat
The annotation file format of the store.- See Also:
-
getDescription
A description for the store.- See Also:
-
getReference
The genome reference for the store's annotations.Returns union: either
IResolvableorCfnAnnotationStore.ReferenceItemProperty- See Also:
-
getSseConfig
The store's server-side encryption (SSE) settings.Returns union: either
IResolvableorCfnAnnotationStore.SseConfigProperty- See Also:
-
getStoreOptions
File parsing options for the annotation store.Returns union: either
IResolvableorCfnAnnotationStore.StoreOptionsProperty- See Also:
-
getTags
Tags for the store.- See Also:
-
builder
- Returns:
- a
CfnAnnotationStoreProps.BuilderofCfnAnnotationStoreProps
-