Interface CfnPipeline.EncryptionKeyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.EncryptionKeyProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.EncryptionKeyProperty extends software.amazon.jsii.JsiiSerializable
Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service ( AWS KMS) key.

EncryptionKey is a property of the ArtifactStore property type.

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.codepipeline.*;
 EncryptionKeyProperty encryptionKeyProperty = EncryptionKeyProperty.builder()
         .id("id")
         .type("type")
         .build();
 

See Also: