pub struct AccountAccessKeyBuilder { /* private fields */ }
Expand description
Builder for AccountAccessKey
.
Implementations§
Source§impl AccountAccessKeyBuilder
impl AccountAccessKeyBuilder
Sourcepub fn account_id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn account_id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The name of the user that the access key is associated with.
Sourcepub fn build(&self) -> Result<AccountAccessKey, AccountAccessKeyBuilderError>
pub fn build(&self) -> Result<AccountAccessKey, AccountAccessKeyBuilderError>
Trait Implementations§
Source§impl Clone for AccountAccessKeyBuilder
impl Clone for AccountAccessKeyBuilder
Source§fn clone(&self) -> AccountAccessKeyBuilder
fn clone(&self) -> AccountAccessKeyBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for AccountAccessKeyBuilder
impl RefUnwindSafe for AccountAccessKeyBuilder
impl Send for AccountAccessKeyBuilder
impl Sync for AccountAccessKeyBuilder
impl Unpin for AccountAccessKeyBuilder
impl UnwindSafe for AccountAccessKeyBuilder
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
Mutably borrows from an owned value. Read more