interface SseConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnSequenceStorePropsMixin.SseConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnSequenceStorePropsMixin_SseConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnSequenceStorePropsMixin.SseConfigProperty |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnSequenceStorePropsMixin.SseConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnSequenceStorePropsMixin » SseConfigProperty |
Server-side encryption (SSE) settings for a store.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
const sseConfigProperty: omics_mixins.CfnSequenceStorePropsMixin.SseConfigProperty = {
keyArn: 'keyArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | An encryption key ARN. |
| type? | string | The encryption type. |
keyArn?
Type:
string
(optional)
An encryption key ARN.
type?
Type:
string
(optional)
The encryption type.

.NET
Go
Java
Python
TypeScript