interface ApplicationEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.ApplicationEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_ApplicationEncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.ApplicationEncryptionConfigurationProperty |
Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.ApplicationEncryptionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplication » ApplicationEncryptionConfigurationProperty |
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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const applicationEncryptionConfigurationProperty: kinesisanalyticsv2.CfnApplication.ApplicationEncryptionConfigurationProperty = {
keyType: 'keyType',
// the properties below are optional
keyId: 'keyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | Specifies the type of key used for encryption at rest. |
| key | string | The key ARN, key ID, alias ARN, or alias name of the KMS key used for encryption at rest. |
keyType
Type:
string
Specifies the type of key used for encryption at rest.
keyId?
Type:
string
(optional)
The key ARN, key ID, alias ARN, or alias name of the KMS key used for encryption at rest.

.NET
Go
Java
Python
TypeScript