interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppRunner.CfnServicePropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapprunner#CfnServicePropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apprunner.CfnServicePropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_apprunner.CfnServicePropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apprunner » 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 { aws_apprunner as apprunner } from '@aws-cdk/cfn-property-mixins';
const encryptionConfigurationProperty: apprunner.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