Struct aws_sdk_codepipeline::model::EncryptionKey
source · #[non_exhaustive]pub struct EncryptionKey { /* private fields */ }
Expand description
Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.
Implementations§
source§impl EncryptionKey
impl EncryptionKey
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The ID used to identify the key. 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 customer master key (CMK). For cross-account actions, you can only use the key ID or key ARN to identify the key.
sourcepub fn type(&self) -> Option<&EncryptionKeyType>
pub fn type(&self) -> Option<&EncryptionKeyType>
The type of encryption key, such as an AWS Key Management Service (AWS KMS) key. When creating or updating a pipeline, the value must be set to 'KMS'.
source§impl EncryptionKey
impl EncryptionKey
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EncryptionKey
.
Trait Implementations§
source§impl Clone for EncryptionKey
impl Clone for EncryptionKey
source§fn clone(&self) -> EncryptionKey
fn clone(&self) -> EncryptionKey
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EncryptionKey
impl Debug for EncryptionKey
source§impl PartialEq<EncryptionKey> for EncryptionKey
impl PartialEq<EncryptionKey> for EncryptionKey
source§fn eq(&self, other: &EncryptionKey) -> bool
fn eq(&self, other: &EncryptionKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.