Interface CfnApplication.ApplicationEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.ApplicationEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.ApplicationEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the configuration to manage encryption at rest.
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.kinesisanalyticsv2.*; ApplicationEncryptionConfigurationProperty applicationEncryptionConfigurationProperty = ApplicationEncryptionConfigurationProperty.builder() .keyType("keyType") // the properties below are optional .keyId("keyId") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnApplication.ApplicationEncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyType
Specifies the type of key used for encryption at rest.- See Also:
-
getKeyId
The key ARN, key ID, alias ARN, or alias name of the KMS key used for encryption at rest.- See Also:
-
builder
@Stability(Stable) static CfnApplication.ApplicationEncryptionConfigurationProperty.Builder builder()
-