#[non_exhaustive]pub struct CreateAwsKmsMultiKeyringInput {
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 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 identifier for a symmetric AWS KMS 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. This should not be a AWS KMS Multi-Region Key.
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 (other than the generator) responsible for wrapping and unwrapping data keys. This list should not contain AWS KMS Multi-Region Keys.
Implementations§
Source§impl CreateAwsKmsMultiKeyringInput
impl CreateAwsKmsMultiKeyringInput
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 identifier for a symmetric AWS KMS 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. This should not be a AWS KMS Multi-Region Key.
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 (other than the generator) responsible for wrapping and unwrapping data keys. This list should not contain AWS KMS Multi-Region Keys.
Source§impl CreateAwsKmsMultiKeyringInput
impl CreateAwsKmsMultiKeyringInput
Sourcepub fn builder() -> CreateAwsKmsMultiKeyringInputBuilder
pub fn builder() -> CreateAwsKmsMultiKeyringInputBuilder
Creates a new builder-style object to manufacture CreateAwsKmsMultiKeyringInput
.
Trait Implementations§
Source§impl Clone for CreateAwsKmsMultiKeyringInput
impl Clone for CreateAwsKmsMultiKeyringInput
Source§fn clone(&self) -> CreateAwsKmsMultiKeyringInput
fn clone(&self) -> CreateAwsKmsMultiKeyringInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for CreateAwsKmsMultiKeyringInput
impl PartialEq for CreateAwsKmsMultiKeyringInput
Source§fn eq(&self, other: &CreateAwsKmsMultiKeyringInput) -> bool
fn eq(&self, other: &CreateAwsKmsMultiKeyringInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateAwsKmsMultiKeyringInput
Auto Trait Implementations§
impl Freeze for CreateAwsKmsMultiKeyringInput
impl RefUnwindSafe for CreateAwsKmsMultiKeyringInput
impl Send for CreateAwsKmsMultiKeyringInput
impl Sync for CreateAwsKmsMultiKeyringInput
impl Unpin for CreateAwsKmsMultiKeyringInput
impl UnwindSafe for CreateAwsKmsMultiKeyringInput
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