public static interface CfnPipeline.EncryptionKeyProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPipeline.EncryptionKeyProperty.Builder
A builder for
CfnPipeline.EncryptionKeyProperty |
static class |
CfnPipeline.EncryptionKeyProperty.Jsii$Proxy
An implementation for
CfnPipeline.EncryptionKeyProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPipeline.EncryptionKeyProperty.Builder |
builder() |
java.lang.String |
getId()
The ID used to identify the key.
|
java.lang.String |
getType()
The type of encryption key, such as an AWS KMS key.
|
java.lang.String getId()
For an AWS KMS key, you can use the key ID, the key ARN, or the alias ARN.
Aliases are recognized only in the account that created the AWS KMS key. For cross-account actions, you can only use the key ID or key ARN to identify the key. Cross-account actions involve using the role from the other account (AccountB), so specifying the key ID will use the key from the other account (AccountB).
java.lang.String getType()
When creating or updating a pipeline, the value must be set to 'KMS'.
static CfnPipeline.EncryptionKeyProperty.Builder builder()