Struct aws_smithy_runtime::client::identity::LazyCacheBuilder

source ·
pub struct LazyCacheBuilder { /* private fields */ }
Available on crate feature client only.
Expand description

Builder for lazy identity caching.

Implementations§

source§

impl LazyCacheBuilder

source

pub fn new() -> Self

Create a new builder.

source

pub fn time_source(self, time_source: impl TimeSource + 'static) -> Self

Set the time source for this cache.

source

pub fn set_time_source(&mut self, time_source: SharedTimeSource) -> &mut Self

Set the time source for this cache.

source

pub fn sleep_impl(self, sleep_impl: impl AsyncSleep + 'static) -> Self

Set the async sleep implementation for this cache.

source

pub fn set_sleep_impl(&mut self, sleep_impl: SharedAsyncSleep) -> &mut Self

Set the async sleep implementation for this cache.

source

pub fn load_timeout(self, timeout: Duration) -> Self

Timeout for identity resolution.

Defaults to 5 seconds.

source

pub fn set_load_timeout(&mut self, timeout: Option<Duration>) -> &mut Self

Timeout for identity resolution.

Defaults to 5 seconds.

source

pub fn buffer_time(self, buffer_time: Duration) -> Self

Amount of time before the actual identity expiration time where the identity is considered expired.

For example, if the identity are expiring in 15 minutes, and the buffer time is 10 seconds, then any requests made after 14 minutes and 50 seconds will load a new identity.

Note: random jitter value between [0.0, 0.5] is multiplied to this buffer time.

Defaults to 10 seconds.

source

pub fn set_buffer_time(&mut self, buffer_time: Option<Duration>) -> &mut Self

Amount of time before the actual identity expiration time where the identity is considered expired.

For example, if the identity are expiring in 15 minutes, and the buffer time is 10 seconds, then any requests made after 14 minutes and 50 seconds will load a new identity.

Note: random jitter value between [0.0, 0.5] is multiplied to this buffer time.

Defaults to 10 seconds.

source

pub fn default_expiration(self, duration: Duration) -> Self

Default expiration time to set on an identity if it doesn’t have an expiration time.

This is only used if the resolved identity doesn’t have an expiration time set. This must be at least 15 minutes.

Defaults to 15 minutes.

source

pub fn set_default_expiration( &mut self, duration: Option<Duration> ) -> &mut Self

Default expiration time to set on an identity if it doesn’t have an expiration time.

This is only used if the resolved identity doesn’t have an expiration time set. This must be at least 15 minutes.

Defaults to 15 minutes.

source

pub fn build(self) -> SharedIdentityCache

Builds a SharedIdentityCache from this builder.

§Panics

This builder will panic if required fields are not given, or if given values are not valid.

Trait Implementations§

source§

impl Debug for LazyCacheBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LazyCacheBuilder

source§

fn default() -> LazyCacheBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more