#[non_exhaustive]pub struct KmsGrantConfiguration {
pub operations: Vec<KmsGrantOperation>,
pub grantee_principal: String,
pub retiring_principal: Option<String>,
pub constraints: Option<KmsGrantConstraints>,
pub issuing_account: String,
}
Expand description
A proposed grant configuration for a KMS key. For more information, see CreateGrant.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.operations: Vec<KmsGrantOperation>
A list of operations that the grant permits.
grantee_principal: String
The principal that is given permission to perform the operations that the grant permits.
retiring_principal: Option<String>
The principal that is given permission to retire the grant by using RetireGrant operation.
constraints: Option<KmsGrantConstraints>
Use this structure to propose allowing cryptographic operations in the grant only when the operation request includes the specified encryption context.
issuing_account: String
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.
Implementations§
source§impl KmsGrantConfiguration
impl KmsGrantConfiguration
sourcepub fn operations(&self) -> &[KmsGrantOperation]
pub fn operations(&self) -> &[KmsGrantOperation]
A list of operations that the grant permits.
sourcepub fn grantee_principal(&self) -> &str
pub fn grantee_principal(&self) -> &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) -> &str
pub fn issuing_account(&self) -> &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() -> KmsGrantConfigurationBuilder
pub fn builder() -> KmsGrantConfigurationBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for KmsGrantConfiguration
impl Debug for KmsGrantConfiguration
source§impl PartialEq for KmsGrantConfiguration
impl PartialEq for KmsGrantConfiguration
source§fn eq(&self, other: &KmsGrantConfiguration) -> bool
fn eq(&self, other: &KmsGrantConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for KmsGrantConfiguration
Auto Trait Implementations§
impl Freeze for KmsGrantConfiguration
impl RefUnwindSafe for KmsGrantConfiguration
impl Send for KmsGrantConfiguration
impl Sync for KmsGrantConfiguration
impl Unpin for KmsGrantConfiguration
impl UnwindSafe for KmsGrantConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more