interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppRunner.CfnService.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.apprunner.CfnService.EncryptionConfigurationProperty |
Python | aws_cdk.aws_apprunner.CfnService.EncryptionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_apprunner » CfnService » EncryptionConfigurationProperty |
Describes a custom encryption key that AWS App Runner uses to encrypt copies of the source repository and service logs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apprunner as apprunner } from 'aws-cdk-lib';
const encryptionConfigurationProperty: apprunner.CfnService.EncryptionConfigurationProperty = {
kmsKey: 'kmsKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ARN of the KMS key that's used for encryption. |
kmsKey
Type:
string
The ARN of the KMS key that's used for encryption.

.NET
Go
Java
Python
TypeScript