interface SseConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Omics.CfnVariantStore.SseConfigProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnVariantStore_SseConfigProperty | 
  Java | software.amazon.awscdk.services.omics.CfnVariantStore.SseConfigProperty | 
  Python | aws_cdk.aws_omics.CfnVariantStore.SseConfigProperty | 
  TypeScript  | aws-cdk-lib » aws_omics » CfnVariantStore » 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 { aws_omics as omics } from 'aws-cdk-lib';
const sseConfigProperty: omics.CfnVariantStore.SseConfigProperty = {
  type: 'type',
  // the properties below are optional
  keyArn: 'keyArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| type | string | The encryption type. | 
| key | string | An encryption key ARN. | 
type
Type:
string
The encryption type.
keyArn?
Type:
string
(optional)
An encryption key ARN.

 .NET
 Go
 Java
 Python
 TypeScript