interface CfnAnnotationStoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnAnnotationStoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnAnnotationStoreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnAnnotationStoreMixinProps |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnAnnotationStoreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnAnnotationStoreMixinProps |
Properties for CfnAnnotationStorePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
declare const schema: any;
const cfnAnnotationStoreMixinProps: omics_mixins.CfnAnnotationStoreMixinProps = {
description: 'description',
name: 'name',
reference: {
referenceArn: 'referenceArn',
},
sseConfig: {
keyArn: 'keyArn',
type: 'type',
},
storeFormat: 'storeFormat',
storeOptions: {
tsvStoreOptions: {
annotationType: 'annotationType',
formatToHeader: {
formatToHeaderKey: 'formatToHeader',
},
schema: schema,
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the store. |
| name? | string | The name of the Annotation Store. |
| reference? | IResolvable | Reference | The genome reference for the store's annotations. |
| sse | IResolvable | Sse | The store's server-side encryption (SSE) settings. |
| store | string | The annotation file format of the store. |
| store | IResolvable | Store | File parsing options for the annotation store. |
| tags? | { [string]: string } | Tags for the store. |
description?
Type:
string
(optional)
A description for the store.
name?
Type:
string
(optional)
The name of the Annotation Store.
reference?
Type:
IResolvable | Reference
(optional)
The genome reference for the store's annotations.
sseConfig?
Type:
IResolvable | Sse
(optional)
The store's server-side encryption (SSE) settings.
storeFormat?
Type:
string
(optional)
The annotation file format of the store.
storeOptions?
Type:
IResolvable | Store
(optional)
File parsing options for the annotation store.
tags?
Type:
{ [string]: string }
(optional)
Tags for the store.

.NET
Go
Java
Python
TypeScript