interface SseConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Omics.CfnAnnotationStorePropsMixin.SseConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsomics#CfnAnnotationStorePropsMixin_SseConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.omics.CfnAnnotationStorePropsMixin.SseConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_omics.CfnAnnotationStorePropsMixin.SseConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_omics » CfnAnnotationStorePropsMixin » 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/cfn-property-mixins';
const sseConfigProperty: omics.CfnAnnotationStorePropsMixin.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