interface ApplicationEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationV2.ApplicationEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationV2_ApplicationEncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationV2.ApplicationEncryptionConfigurationProperty |
Python | aws_cdk.aws_kinesisanalytics.CfnApplicationV2.ApplicationEncryptionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisanalytics » CfnApplicationV2 » 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_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const applicationEncryptionConfigurationProperty: kinesisanalytics.CfnApplicationV2.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