Struct aws_sdk_accessanalyzer::model::KmsKeyConfiguration
source · [−]#[non_exhaustive]pub struct KmsKeyConfiguration {
pub key_policies: Option<HashMap<String, String>>,
pub grants: Option<Vec<KmsGrantConfiguration>>,
}
Expand description
Proposed access control configuration for a KMS key. You can propose a configuration for a new KMS key or an existing KMS key that you own by specifying the key policy and KMS grant configuration. If the configuration is for an existing key and you do not specify the key policy, the access preview uses the existing policy for the key. If the access preview is for a new resource and you do not specify the key policy, then the access preview uses the default key policy. The proposed key policy cannot be an empty string. For more information, see Default key policy. For more information about key policy limits, see Resource quotas.
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.key_policies: Option<HashMap<String, String>>
Resource policy configuration for the KMS key. The only valid value for the name of the key policy is default
. For more information, see Default key policy.
grants: Option<Vec<KmsGrantConfiguration>>
A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing key, the access preview uses the proposed list of grant configurations in place of the existing grants. Otherwise, the access preview uses the existing grants for the key.
Implementations
sourceimpl KmsKeyConfiguration
impl KmsKeyConfiguration
sourcepub fn key_policies(&self) -> Option<&HashMap<String, String>>
pub fn key_policies(&self) -> Option<&HashMap<String, String>>
Resource policy configuration for the KMS key. The only valid value for the name of the key policy is default
. For more information, see Default key policy.
sourcepub fn grants(&self) -> Option<&[KmsGrantConfiguration]>
pub fn grants(&self) -> Option<&[KmsGrantConfiguration]>
A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing key, the access preview uses the proposed list of grant configurations in place of the existing grants. Otherwise, the access preview uses the existing grants for the key.
sourceimpl KmsKeyConfiguration
impl KmsKeyConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture KmsKeyConfiguration
.
Trait Implementations
sourceimpl Clone for KmsKeyConfiguration
impl Clone for KmsKeyConfiguration
sourcefn clone(&self) -> KmsKeyConfiguration
fn clone(&self) -> KmsKeyConfiguration
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 more
sourceimpl Debug for KmsKeyConfiguration
impl Debug for KmsKeyConfiguration
sourceimpl PartialEq<KmsKeyConfiguration> for KmsKeyConfiguration
impl PartialEq<KmsKeyConfiguration> for KmsKeyConfiguration
sourcefn eq(&self, other: &KmsKeyConfiguration) -> bool
fn eq(&self, other: &KmsKeyConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &KmsKeyConfiguration) -> bool
fn ne(&self, other: &KmsKeyConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for KmsKeyConfiguration
Auto Trait Implementations
impl RefUnwindSafe for KmsKeyConfiguration
impl Send for KmsKeyConfiguration
impl Sync for KmsKeyConfiguration
impl Unpin for KmsKeyConfiguration
impl UnwindSafe for KmsKeyConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more