#[non_exhaustive]pub struct CreateAwsKmsMrkMultiKeyringInput {
pub client_supplier: Option<ClientSupplierRef>,
pub generator: Option<String>,
pub grant_tokens: Option<Vec<String>>,
pub kms_key_ids: Option<Vec<String>>,
}Expand description
Inputs for for creating a AWS KMS MRK Multi-Keyring.
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.client_supplier: Option<ClientSupplierRef>The Client Supplier which will be used to get KMS Clients for use with this Keyring. The Client Supplier will create a client for each region specified in the generator and kmsKeyIds ARNs. If not specified on input, the Default Client Supplier is used.
generator: Option<String>A symmetric AWS KMS Key or AWS KMS Multi-Region Key responsible for wrapping and unwrapping data keys. KMS.GenerateDataKey may be called with this key if the data key has not already been generated by another Keyring.
grant_tokens: Option<Vec<String>>A list of grant tokens to be used when calling KMS.
kms_key_ids: Option<Vec<String>>A list of identifiers for the symmetric AWS KMS Keys and/or AWS KMS Multi-Region Keys (other than the generator) responsible for wrapping and unwrapping data keys.
Implementations§
Source§impl CreateAwsKmsMrkMultiKeyringInput
impl CreateAwsKmsMrkMultiKeyringInput
Sourcepub fn client_supplier(&self) -> &Option<ClientSupplierRef>
pub fn client_supplier(&self) -> &Option<ClientSupplierRef>
The Client Supplier which will be used to get KMS Clients for use with this Keyring. The Client Supplier will create a client for each region specified in the generator and kmsKeyIds ARNs. If not specified on input, the Default Client Supplier is used.
Sourcepub fn generator(&self) -> &Option<String>
pub fn generator(&self) -> &Option<String>
A symmetric AWS KMS Key or AWS KMS Multi-Region Key responsible for wrapping and unwrapping data keys. KMS.GenerateDataKey may be called with this key if the data key has not already been generated by another Keyring.
Sourcepub fn grant_tokens(&self) -> &Option<Vec<String>>
pub fn grant_tokens(&self) -> &Option<Vec<String>>
A list of grant tokens to be used when calling KMS.
Sourcepub fn kms_key_ids(&self) -> &Option<Vec<String>>
pub fn kms_key_ids(&self) -> &Option<Vec<String>>
A list of identifiers for the symmetric AWS KMS Keys and/or AWS KMS Multi-Region Keys (other than the generator) responsible for wrapping and unwrapping data keys.
Source§impl CreateAwsKmsMrkMultiKeyringInput
impl CreateAwsKmsMrkMultiKeyringInput
Sourcepub fn builder() -> CreateAwsKmsMrkMultiKeyringInputBuilder
pub fn builder() -> CreateAwsKmsMrkMultiKeyringInputBuilder
Creates a new builder-style object to manufacture CreateAwsKmsMrkMultiKeyringInput.
Trait Implementations§
Source§impl Clone for CreateAwsKmsMrkMultiKeyringInput
impl Clone for CreateAwsKmsMrkMultiKeyringInput
Source§fn clone(&self) -> CreateAwsKmsMrkMultiKeyringInput
fn clone(&self) -> CreateAwsKmsMrkMultiKeyringInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for CreateAwsKmsMrkMultiKeyringInput
impl PartialEq for CreateAwsKmsMrkMultiKeyringInput
Source§fn eq(&self, other: &CreateAwsKmsMrkMultiKeyringInput) -> bool
fn eq(&self, other: &CreateAwsKmsMrkMultiKeyringInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateAwsKmsMrkMultiKeyringInput
Auto Trait Implementations§
impl Freeze for CreateAwsKmsMrkMultiKeyringInput
impl RefUnwindSafe for CreateAwsKmsMrkMultiKeyringInput
impl Send for CreateAwsKmsMrkMultiKeyringInput
impl Sync for CreateAwsKmsMrkMultiKeyringInput
impl Unpin for CreateAwsKmsMrkMultiKeyringInput
impl UnwindSafe for CreateAwsKmsMrkMultiKeyringInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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