interface CfnSequenceStoreProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Omics.CfnSequenceStoreProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnSequenceStoreProps | 
|  Java | software.amazon.awscdk.services.omics.CfnSequenceStoreProps | 
|  Python | aws_cdk.aws_omics.CfnSequenceStoreProps | 
|  TypeScript | aws-cdk-lib»aws_omics»CfnSequenceStoreProps | 
Properties for defining a CfnSequenceStore.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html
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 s3AccessPolicy: any;
const cfnSequenceStoreProps: omics.CfnSequenceStoreProps = {
  name: 'name',
  // the properties below are optional
  accessLogLocation: 'accessLogLocation',
  description: 'description',
  eTagAlgorithmFamily: 'eTagAlgorithmFamily',
  fallbackLocation: 'fallbackLocation',
  propagatedSetLevelTags: ['propagatedSetLevelTags'],
  s3AccessPolicy: s3AccessPolicy,
  sseConfig: {
    type: 'type',
    // the properties below are optional
    keyArn: 'keyArn',
  },
  tags: {
    tagsKey: 'tags',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | A name for the store. | 
| access | string | Location of the access logs. | 
| description? | string | A description for the store. | 
| e | string | The algorithm family of the ETag. | 
| fallback | string | An S3 location that is used to store files that have failed a direct upload. | 
| propagated | string[] | The tags keys to propagate to the S3 objects associated with read sets in the sequence store. | 
| s3 | any | The resource policy that controls S3 access on 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.
accessLogLocation?
Type:
string
(optional)
Location of the access logs.
description?
Type:
string
(optional)
A description for the store.
eTagAlgorithmFamily?
Type:
string
(optional)
The algorithm family of the ETag.
fallbackLocation?
Type:
string
(optional)
An S3 location that is used to store files that have failed a direct upload.
propagatedSetLevelTags?
Type:
string[]
(optional)
The tags keys to propagate to the S3 objects associated with read sets in the sequence store.
s3AccessPolicy?
Type:
any
(optional)
The resource policy that controls S3 access on the store.
sseConfig?
Type:
IResolvable | Sse
(optional)
Server-side encryption (SSE) settings for the store.
tags?
Type:
{ [string]: string }
(optional)
Tags for the store.
