Struct aws_sdk_datasync::types::builders::CredentialsBuilder
source · #[non_exhaustive]pub struct CredentialsBuilder { /* private fields */ }
Expand description
A builder for Credentials
.
Implementations§
source§impl CredentialsBuilder
impl CredentialsBuilder
sourcepub fn username(self, input: impl Into<String>) -> Self
pub fn username(self, input: impl Into<String>) -> Self
Specifies the user name for your storage system's management interface.
sourcepub fn set_username(self, input: Option<String>) -> Self
pub fn set_username(self, input: Option<String>) -> Self
Specifies the user name for your storage system's management interface.
sourcepub fn get_username(&self) -> &Option<String>
pub fn get_username(&self) -> &Option<String>
Specifies the user name for your storage system's management interface.
sourcepub fn password(self, input: impl Into<String>) -> Self
pub fn password(self, input: impl Into<String>) -> Self
Specifies the password for your storage system's management interface.
sourcepub fn set_password(self, input: Option<String>) -> Self
pub fn set_password(self, input: Option<String>) -> Self
Specifies the password for your storage system's management interface.
sourcepub fn get_password(&self) -> &Option<String>
pub fn get_password(&self) -> &Option<String>
Specifies the password for your storage system's management interface.
sourcepub fn build(self) -> Credentials
pub fn build(self) -> Credentials
Consumes the builder and constructs a Credentials
.
Trait Implementations§
source§impl Clone for CredentialsBuilder
impl Clone for CredentialsBuilder
source§fn clone(&self) -> CredentialsBuilder
fn clone(&self) -> CredentialsBuilder
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 moresource§impl Debug for CredentialsBuilder
impl Debug for CredentialsBuilder
source§impl Default for CredentialsBuilder
impl Default for CredentialsBuilder
source§fn default() -> CredentialsBuilder
fn default() -> CredentialsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CredentialsBuilder
impl PartialEq for CredentialsBuilder
source§fn eq(&self, other: &CredentialsBuilder) -> bool
fn eq(&self, other: &CredentialsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CredentialsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CredentialsBuilder
impl Send for CredentialsBuilder
impl Sync for CredentialsBuilder
impl Unpin for CredentialsBuilder
impl UnwindSafe for CredentialsBuilder
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