Interface CfnReferenceStore.SseConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReferenceStore.SseConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnReferenceStore
@Stability(Stable)
public static interface CfnReferenceStore.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReferenceStore.SseConfigPropertystatic final classAn implementation forCfnReferenceStore.SseConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The encryption type. -
getKeyArn
An encryption key ARN. -
builder
-