aws-cdk-lib.aws_omics.CfnAnnotationStoreProps

interface CfnAnnotationStoreProps

LanguageType name
.NETAmazon.CDK.AWS.Omics.CfnAnnotationStoreProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnAnnotationStoreProps
Javasoftware.amazon.awscdk.services.omics.CfnAnnotationStoreProps
Pythonaws_cdk.aws_omics.CfnAnnotationStoreProps
TypeScript aws-cdk-lib » 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 { aws_omics as omics } from 'aws-cdk-lib';

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

NameTypeDescription
namestringThe name of the Annotation Store.
storeFormatstringThe annotation file format of the store.
description?stringA description for the store.
reference?IResolvable | ReferenceItemPropertyThe genome reference for the store's annotations.
sseConfig?IResolvable | SseConfigPropertyThe store's server-side encryption (SSE) settings.
storeOptions?IResolvable | StoreOptionsPropertyFile 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: IResolvable | ReferenceItemProperty (optional)

The genome reference for the store's annotations.


sseConfig?

Type: IResolvable | SseConfigProperty (optional)

The store's server-side encryption (SSE) settings.


storeOptions?

Type: IResolvable | StoreOptionsProperty (optional)

File parsing options for the annotation store.


tags?

Type: { [string]: string } (optional)

Tags for the store.