#[non_exhaustive]pub struct KmsGrantConfiguration { /* private fields */ }
Expand description
A proposed grant configuration for a KMS key. For more information, see CreateGrant.
Implementations§
source§impl 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.
source§impl KmsGrantConfiguration
impl KmsGrantConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture KmsGrantConfiguration
.
Trait Implementations§
source§impl Clone for KmsGrantConfiguration
impl Clone for KmsGrantConfiguration
source§fn clone(&self) -> KmsGrantConfiguration
fn clone(&self) -> KmsGrantConfiguration
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 KmsGrantConfiguration
impl Debug for KmsGrantConfiguration
source§impl PartialEq<KmsGrantConfiguration> for KmsGrantConfiguration
impl PartialEq<KmsGrantConfiguration> for KmsGrantConfiguration
source§fn eq(&self, other: &KmsGrantConfiguration) -> bool
fn eq(&self, other: &KmsGrantConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.