aws-cdk-lib.aws_omics.CfnVariantStoreProps

interface CfnVariantStoreProps

LanguageType name
.NETAmazon.CDK.AWS.Omics.CfnVariantStoreProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnVariantStoreProps
Javasoftware.amazon.awscdk.services.omics.CfnVariantStoreProps
Pythonaws_cdk.aws_omics.CfnVariantStoreProps
TypeScript aws-cdk-lib » aws_omics » CfnVariantStoreProps

Properties for defining a CfnVariantStore.

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';
const cfnVariantStoreProps: omics.CfnVariantStoreProps = {
  name: 'name',
  reference: {
    referenceArn: 'referenceArn',
  },

  // the properties below are optional
  description: 'description',
  sseConfig: {
    type: 'type',

    // the properties below are optional
    keyArn: 'keyArn',
  },
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
namestringA name for the store.
referenceIResolvable | ReferenceItemPropertyThe genome reference for the store's variants.
description?stringA description for the store.
sseConfig?IResolvable | SseConfigPropertyServer-side encryption (SSE) settings for the store.
tags?{ [string]: string }Tags for the store.

name

Type: string

A name for the store.


reference

Type: IResolvable | ReferenceItemProperty

The genome reference for the store's variants.


description?

Type: string (optional)

A description for the store.


sseConfig?

Type: IResolvable | SseConfigProperty (optional)

Server-side encryption (SSE) settings for the store.


tags?

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

Tags for the store.