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
sourceimpl 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'.
sourceimpl EncryptionKey
impl EncryptionKey
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EncryptionKey
.
Trait Implementations
sourceimpl Clone for EncryptionKey
impl Clone for EncryptionKey
sourcefn clone(&self) -> EncryptionKey
fn clone(&self) -> EncryptionKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EncryptionKey
impl Debug for EncryptionKey
sourceimpl PartialEq<EncryptionKey> for EncryptionKey
impl PartialEq<EncryptionKey> for EncryptionKey
sourcefn eq(&self, other: &EncryptionKey) -> bool
fn eq(&self, other: &EncryptionKey) -> bool
impl StructuralPartialEq for EncryptionKey
Auto Trait Implementations
impl RefUnwindSafe for EncryptionKey
impl Send for EncryptionKey
impl Sync for EncryptionKey
impl Unpin for EncryptionKey
impl UnwindSafe for EncryptionKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more