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 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. -
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.BuilderofCfnAnnotationStoreProps
-