Struct aws_sdk_quicksight::operation::update_key_registration::builders::UpdateKeyRegistrationOutputBuilder
source · #[non_exhaustive]pub struct UpdateKeyRegistrationOutputBuilder { /* private fields */ }Expand description
A builder for UpdateKeyRegistrationOutput.
Implementations§
source§impl UpdateKeyRegistrationOutputBuilder
impl UpdateKeyRegistrationOutputBuilder
sourcepub fn failed_key_registration(self, input: FailedKeyRegistrationEntry) -> Self
pub fn failed_key_registration(self, input: FailedKeyRegistrationEntry) -> Self
Appends an item to failed_key_registration.
To override the contents of this collection use set_failed_key_registration.
A list of all customer managed key registrations that failed to update.
sourcepub fn set_failed_key_registration(
self,
input: Option<Vec<FailedKeyRegistrationEntry>>
) -> Self
pub fn set_failed_key_registration( self, input: Option<Vec<FailedKeyRegistrationEntry>> ) -> Self
A list of all customer managed key registrations that failed to update.
sourcepub fn get_failed_key_registration(
&self
) -> &Option<Vec<FailedKeyRegistrationEntry>>
pub fn get_failed_key_registration( &self ) -> &Option<Vec<FailedKeyRegistrationEntry>>
A list of all customer managed key registrations that failed to update.
sourcepub fn successful_key_registration(
self,
input: SuccessfulKeyRegistrationEntry
) -> Self
pub fn successful_key_registration( self, input: SuccessfulKeyRegistrationEntry ) -> Self
Appends an item to successful_key_registration.
To override the contents of this collection use set_successful_key_registration.
A list of all customer managed key registrations that were successfully updated.
sourcepub fn set_successful_key_registration(
self,
input: Option<Vec<SuccessfulKeyRegistrationEntry>>
) -> Self
pub fn set_successful_key_registration( self, input: Option<Vec<SuccessfulKeyRegistrationEntry>> ) -> Self
A list of all customer managed key registrations that were successfully updated.
sourcepub fn get_successful_key_registration(
&self
) -> &Option<Vec<SuccessfulKeyRegistrationEntry>>
pub fn get_successful_key_registration( &self ) -> &Option<Vec<SuccessfulKeyRegistrationEntry>>
A list of all customer managed key registrations that were successfully updated.
sourcepub fn request_id(self, input: impl Into<String>) -> Self
pub fn request_id(self, input: impl Into<String>) -> Self
The Amazon Web Services request ID for this operation.
sourcepub fn set_request_id(self, input: Option<String>) -> Self
pub fn set_request_id(self, input: Option<String>) -> Self
The Amazon Web Services request ID for this operation.
sourcepub fn get_request_id(&self) -> &Option<String>
pub fn get_request_id(&self) -> &Option<String>
The Amazon Web Services request ID for this operation.
sourcepub fn build(self) -> UpdateKeyRegistrationOutput
pub fn build(self) -> UpdateKeyRegistrationOutput
Consumes the builder and constructs a UpdateKeyRegistrationOutput.
Trait Implementations§
source§impl Clone for UpdateKeyRegistrationOutputBuilder
impl Clone for UpdateKeyRegistrationOutputBuilder
source§fn clone(&self) -> UpdateKeyRegistrationOutputBuilder
fn clone(&self) -> UpdateKeyRegistrationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateKeyRegistrationOutputBuilder
impl Default for UpdateKeyRegistrationOutputBuilder
source§fn default() -> UpdateKeyRegistrationOutputBuilder
fn default() -> UpdateKeyRegistrationOutputBuilder
source§impl PartialEq for UpdateKeyRegistrationOutputBuilder
impl PartialEq for UpdateKeyRegistrationOutputBuilder
source§fn eq(&self, other: &UpdateKeyRegistrationOutputBuilder) -> bool
fn eq(&self, other: &UpdateKeyRegistrationOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKeyRegistrationOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateKeyRegistrationOutputBuilder
impl RefUnwindSafe for UpdateKeyRegistrationOutputBuilder
impl Send for UpdateKeyRegistrationOutputBuilder
impl Sync for UpdateKeyRegistrationOutputBuilder
impl Unpin for UpdateKeyRegistrationOutputBuilder
impl UnwindSafe for UpdateKeyRegistrationOutputBuilder
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