interface CfnReferenceStoreProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Omics.CfnReferenceStoreProps | 
  Java | software.amazon.awscdk.services.omics.CfnReferenceStoreProps | 
  Python | aws_cdk.aws_omics.CfnReferenceStoreProps | 
  TypeScript  | @aws-cdk/aws-omics » CfnReferenceStoreProps | 
Properties for defining a CfnReferenceStore.
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';
const cfnReferenceStoreProps: omics.CfnReferenceStoreProps = {
  name: 'name',
  // the properties below are optional
  description: 'description',
  sseConfig: {
    type: 'type',
    // the properties below are optional
    keyArn: 'keyArn',
  },
  tags: {
    tagsKey: 'tags',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | A name for the store. | 
| description? | string | A description for the store. | 
| sse | IResolvable | Sse | Server-side encryption (SSE) settings for the store. | 
| tags? | { [string]: string } | Tags for the store. | 
name
Type:
string
A name for the store.
description?
Type:
string
(optional)
A description for the store.
sseConfig?
Type:
IResolvable | Sse
(optional)
Server-side encryption (SSE) settings for the store.
tags?
Type:
{ [string]: string }
(optional)
Tags for the store.

 .NET
 Java
 Python
 TypeScript