#[non_exhaustive]pub struct KmsGrantConfiguration { /* private fields */ }Expand description
A proposed grant configuration for a KMS key. For more information, see CreateGrant.
Implementations
sourceimpl KmsGrantConfiguration
impl KmsGrantConfiguration
sourcepub fn operations(&self) -> Option<&[KmsGrantOperation]>
pub fn operations(&self) -> Option<&[KmsGrantOperation]>
A list of operations that the grant permits.
sourcepub fn grantee_principal(&self) -> Option<&str>
pub fn grantee_principal(&self) -> Option<&str>
The principal that is given permission to perform the operations that the grant permits.
sourcepub fn retiring_principal(&self) -> Option<&str>
pub fn retiring_principal(&self) -> Option<&str>
The principal that is given permission to retire the grant by using RetireGrant operation.
sourcepub fn constraints(&self) -> Option<&KmsGrantConstraints>
pub fn constraints(&self) -> Option<&KmsGrantConstraints>
Use this structure to propose allowing cryptographic operations in the grant only when the operation request includes the specified encryption context.
sourcepub fn issuing_account(&self) -> Option<&str>
pub fn issuing_account(&self) -> Option<&str>
The Amazon Web Services account under which the grant was issued. The account is used to propose KMS grants issued by accounts other than the owner of the key.
sourceimpl KmsGrantConfiguration
impl KmsGrantConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture KmsGrantConfiguration.
Trait Implementations
sourceimpl Clone for KmsGrantConfiguration
impl Clone for KmsGrantConfiguration
sourcefn clone(&self) -> KmsGrantConfiguration
fn clone(&self) -> KmsGrantConfiguration
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 KmsGrantConfiguration
impl Debug for KmsGrantConfiguration
sourceimpl PartialEq<KmsGrantConfiguration> for KmsGrantConfiguration
impl PartialEq<KmsGrantConfiguration> for KmsGrantConfiguration
sourcefn eq(&self, other: &KmsGrantConfiguration) -> bool
fn eq(&self, other: &KmsGrantConfiguration) -> bool
impl StructuralPartialEq for KmsGrantConfiguration
Auto Trait Implementations
impl RefUnwindSafe for KmsGrantConfiguration
impl Send for KmsGrantConfiguration
impl Sync for KmsGrantConfiguration
impl Unpin for KmsGrantConfiguration
impl UnwindSafe for KmsGrantConfiguration
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