Struct aws_sdk_chime::types::builders::CredentialBuilder
source · #[non_exhaustive]pub struct CredentialBuilder { /* private fields */ }Expand description
A builder for Credential.
Implementations§
source§impl CredentialBuilder
impl CredentialBuilder
sourcepub fn username(self, input: impl Into<String>) -> Self
pub fn username(self, input: impl Into<String>) -> Self
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
sourcepub fn set_username(self, input: Option<String>) -> Self
pub fn set_username(self, input: Option<String>) -> Self
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
sourcepub fn password(self, input: impl Into<String>) -> Self
pub fn password(self, input: impl Into<String>) -> Self
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
sourcepub fn set_password(self, input: Option<String>) -> Self
pub fn set_password(self, input: Option<String>) -> Self
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
sourcepub fn build(self) -> Credential
pub fn build(self) -> Credential
Consumes the builder and constructs a Credential.
Trait Implementations§
source§impl Clone for CredentialBuilder
impl Clone for CredentialBuilder
source§fn clone(&self) -> CredentialBuilder
fn clone(&self) -> CredentialBuilder
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 CredentialBuilder
impl Debug for CredentialBuilder
source§impl Default for CredentialBuilder
impl Default for CredentialBuilder
source§fn default() -> CredentialBuilder
fn default() -> CredentialBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CredentialBuilder> for CredentialBuilder
impl PartialEq<CredentialBuilder> for CredentialBuilder
source§fn eq(&self, other: &CredentialBuilder) -> bool
fn eq(&self, other: &CredentialBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CredentialBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CredentialBuilder
impl Send for CredentialBuilder
impl Sync for CredentialBuilder
impl Unpin for CredentialBuilder
impl UnwindSafe for CredentialBuilder
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