Struct aws_sdk_connect::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 access_token(self, input: impl Into<String>) -> Self
pub fn access_token(self, input: impl Into<String>) -> Self
An access token generated for a federated user to access Amazon Connect.
sourcepub fn set_access_token(self, input: Option<String>) -> Self
pub fn set_access_token(self, input: Option<String>) -> Self
An access token generated for a federated user to access Amazon Connect.
sourcepub fn get_access_token(&self) -> &Option<String>
pub fn get_access_token(&self) -> &Option<String>
An access token generated for a federated user to access Amazon Connect.
sourcepub fn access_token_expiration(self, input: DateTime) -> Self
pub fn access_token_expiration(self, input: DateTime) -> Self
A token generated with an expiration time for the session a user is logged in to Amazon Connect.
sourcepub fn set_access_token_expiration(self, input: Option<DateTime>) -> Self
pub fn set_access_token_expiration(self, input: Option<DateTime>) -> Self
A token generated with an expiration time for the session a user is logged in to Amazon Connect.
sourcepub fn get_access_token_expiration(&self) -> &Option<DateTime>
pub fn get_access_token_expiration(&self) -> &Option<DateTime>
A token generated with an expiration time for the session a user is logged in to Amazon Connect.
sourcepub fn refresh_token(self, input: impl Into<String>) -> Self
pub fn refresh_token(self, input: impl Into<String>) -> Self
Renews a token generated for a user to access the Amazon Connect instance.
sourcepub fn set_refresh_token(self, input: Option<String>) -> Self
pub fn set_refresh_token(self, input: Option<String>) -> Self
Renews a token generated for a user to access the Amazon Connect instance.
sourcepub fn get_refresh_token(&self) -> &Option<String>
pub fn get_refresh_token(&self) -> &Option<String>
Renews a token generated for a user to access the Amazon Connect instance.
sourcepub fn refresh_token_expiration(self, input: DateTime) -> Self
pub fn refresh_token_expiration(self, input: DateTime) -> Self
Renews the expiration timer for a generated token.
sourcepub fn set_refresh_token_expiration(self, input: Option<DateTime>) -> Self
pub fn set_refresh_token_expiration(self, input: Option<DateTime>) -> Self
Renews the expiration timer for a generated token.
sourcepub fn get_refresh_token_expiration(&self) -> &Option<DateTime>
pub fn get_refresh_token_expiration(&self) -> &Option<DateTime>
Renews the expiration timer for a generated token.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for CredentialsBuilder
impl PartialEq for CredentialsBuilder
source§fn eq(&self, other: &CredentialsBuilder) -> bool
fn eq(&self, other: &CredentialsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CredentialsBuilder
Auto Trait Implementations§
impl Freeze for CredentialsBuilder
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
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