interface CfnAnnotationStoreProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Omics.CfnAnnotationStoreProps |
Java | software.amazon.awscdk.services.omics.CfnAnnotationStoreProps |
Python | aws_cdk.aws_omics.CfnAnnotationStoreProps |
TypeScript | @aws-cdk/aws-omics » CfnAnnotationStoreProps |
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 * as omics from '@aws-cdk/aws-omics';
declare const schema: any;
const cfnAnnotationStoreProps: omics.CfnAnnotationStoreProps = {
name: 'name',
storeFormat: 'storeFormat',
// the properties below are optional
description: 'description',
reference: {
referenceArn: 'referenceArn',
},
sseConfig: {
type: 'type',
// the properties below are optional
keyArn: 'keyArn',
},
storeOptions: {
tsvStoreOptions: {
annotationType: 'annotationType',
formatToHeader: {
formatToHeaderKey: 'formatToHeader',
},
schema: schema,
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the Annotation Store. |
store | string | The annotation file format of the store. |
description? | string | A description for the store. |
reference? | Reference | IResolvable | The genome reference for the store's annotations. |
sse | IResolvable | Sse | The store's server-side encryption (SSE) settings. |
store | IResolvable | Store | File parsing options for the annotation store. |
tags? | { [string]: string } | Tags for the store. |
name
Type:
string
The name of the Annotation Store.
storeFormat
Type:
string
The annotation file format of the store.
description?
Type:
string
(optional)
A description for the store.
reference?
Type:
Reference
|
IResolvable
(optional)
The genome reference for the store's annotations.
sseConfig?
Type:
IResolvable
|
Sse
(optional)
The store's server-side encryption (SSE) settings.
storeOptions?
Type:
IResolvable
|
Store
(optional)
File parsing options for the annotation store.
tags?
Type:
{ [string]: string }
(optional)
Tags for the store.