interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnServicePropsMixin » 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 { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const encryptionConfigurationProperty: apprunner_mixins.CfnServicePropsMixin.EncryptionConfigurationProperty = {
kmsKey: 'kmsKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ARN of the KMS key that's used for encryption. |
kmsKey?
Type:
string
(optional)
The ARN of the KMS key that's used for encryption.

.NET
Go
Java
Python
TypeScript