Interface CfnVariantStore.SseConfigProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnVariantStore.SseConfigProperty.Jsii$Proxy
- Enclosing class:
 CfnVariantStore
@Stability(Stable)
public static interface CfnVariantStore.SseConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
 SseConfigProperty sseConfigProperty = SseConfigProperty.builder()
         .type("type")
         // the properties below are optional
         .keyArn("keyArn")
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVariantStore.SseConfigPropertystatic final classAn implementation forCfnVariantStore.SseConfigProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getType
The encryption type.- See Also:
 
 - 
getKeyArn
An encryption key ARN.- See Also:
 
 - 
builder
 
 -