aws-cdk-lib.aws_omics.CfnSequenceStoreProps

interface CfnSequenceStoreProps

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

Properties for defining a CfnSequenceStore.

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 cfnSequenceStoreProps: omics.CfnSequenceStoreProps = {
  name: 'name',

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

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

Properties

NameTypeDescription
namestringA name for the store.
description?stringA description for the store.
fallbackLocation?stringAWS::Omics::SequenceStore.FallbackLocation.
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.


description?

Type: string (optional)

A description for the store.


fallbackLocation?

Type: string (optional)

AWS::Omics::SequenceStore.FallbackLocation.


sseConfig?

Type: IResolvable | SseConfigProperty (optional)

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


tags?

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

Tags for the store.