Class CfnSequenceStorePropsMixin.SseConfigProperty
Server-side encryption (SSE) settings for a store.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Omics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSequenceStorePropsMixin.SseConfigProperty : CfnSequenceStorePropsMixin.ISseConfigProperty
Syntax (vb)
Public Class CfnSequenceStorePropsMixin.SseConfigProperty Implements CfnSequenceStorePropsMixin.ISseConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Omics;
var sseConfigProperty = new SseConfigProperty {
KeyArn = "keyArn",
Type = "type"
};
Synopsis
Constructors
| SseConfigProperty() | Server-side encryption (SSE) settings for a store. |
Properties
| KeyArn | An encryption key ARN. |
| Type | The encryption type. |
Constructors
SseConfigProperty()
Server-side encryption (SSE) settings for a store.
public SseConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Omics;
var sseConfigProperty = new SseConfigProperty {
KeyArn = "keyArn",
Type = "type"
};
Properties
KeyArn
An encryption key ARN.
public string? KeyArn { get; set; }
Property Value
Remarks
Type
The encryption type.
public string? Type { get; set; }