Interface CfnService.EncryptionConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnService.EncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnService
@Stability(Stable)
public static interface CfnService.EncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.apprunner.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
         .kmsKey("kmsKey")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.EncryptionConfigurationPropertystatic final classAn implementation forCfnService.EncryptionConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getKmsKeyThe ARN of the KMS key that's used for encryption.- See Also:
 
- 
builder
 
-