Struct aws_sdk_quicksight::operation::update_key_registration::builders::UpdateKeyRegistrationInputBuilder
source · #[non_exhaustive]pub struct UpdateKeyRegistrationInputBuilder { /* private fields */ }Expand description
A builder for UpdateKeyRegistrationInput.
Implementations§
source§impl UpdateKeyRegistrationInputBuilder
impl UpdateKeyRegistrationInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.
sourcepub fn key_registration(self, input: RegisteredCustomerManagedKey) -> Self
pub fn key_registration(self, input: RegisteredCustomerManagedKey) -> Self
Appends an item to key_registration.
To override the contents of this collection use set_key_registration.
A list of RegisteredCustomerManagedKey objects to be updated to the Amazon QuickSight account.
sourcepub fn set_key_registration(
self,
input: Option<Vec<RegisteredCustomerManagedKey>>,
) -> Self
pub fn set_key_registration( self, input: Option<Vec<RegisteredCustomerManagedKey>>, ) -> Self
A list of RegisteredCustomerManagedKey objects to be updated to the Amazon QuickSight account.
sourcepub fn get_key_registration(&self) -> &Option<Vec<RegisteredCustomerManagedKey>>
pub fn get_key_registration(&self) -> &Option<Vec<RegisteredCustomerManagedKey>>
A list of RegisteredCustomerManagedKey objects to be updated to the Amazon QuickSight account.
sourcepub fn build(self) -> Result<UpdateKeyRegistrationInput, BuildError>
pub fn build(self) -> Result<UpdateKeyRegistrationInput, BuildError>
Consumes the builder and constructs a UpdateKeyRegistrationInput.
source§impl UpdateKeyRegistrationInputBuilder
impl UpdateKeyRegistrationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateKeyRegistrationOutput, SdkError<UpdateKeyRegistrationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateKeyRegistrationOutput, SdkError<UpdateKeyRegistrationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateKeyRegistrationInputBuilder
impl Clone for UpdateKeyRegistrationInputBuilder
source§fn clone(&self) -> UpdateKeyRegistrationInputBuilder
fn clone(&self) -> UpdateKeyRegistrationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateKeyRegistrationInputBuilder
impl Default for UpdateKeyRegistrationInputBuilder
source§fn default() -> UpdateKeyRegistrationInputBuilder
fn default() -> UpdateKeyRegistrationInputBuilder
source§impl PartialEq for UpdateKeyRegistrationInputBuilder
impl PartialEq for UpdateKeyRegistrationInputBuilder
source§fn eq(&self, other: &UpdateKeyRegistrationInputBuilder) -> bool
fn eq(&self, other: &UpdateKeyRegistrationInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateKeyRegistrationInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateKeyRegistrationInputBuilder
impl RefUnwindSafe for UpdateKeyRegistrationInputBuilder
impl Send for UpdateKeyRegistrationInputBuilder
impl Sync for UpdateKeyRegistrationInputBuilder
impl Unpin for UpdateKeyRegistrationInputBuilder
impl UnwindSafe for UpdateKeyRegistrationInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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