Interface CfnApplicationV2.ApplicationEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.ApplicationEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.kinesisanalytics.*; 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 forCfnApplicationV2.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 CfnApplicationV2.ApplicationEncryptionConfigurationProperty.Builder builder()
-