Struct aws_smithy_runtime::client::identity::LazyCacheBuilder
source · pub struct LazyCacheBuilder { /* private fields */ }
Expand description
Builder for lazy identity caching.
Implementations§
source§impl LazyCacheBuilder
impl LazyCacheBuilder
sourcepub fn time_source(self, time_source: impl TimeSource + 'static) -> Self
pub fn time_source(self, time_source: impl TimeSource + 'static) -> Self
Set the time source for this cache.
sourcepub fn set_time_source(&mut self, time_source: SharedTimeSource) -> &mut Self
pub fn set_time_source(&mut self, time_source: SharedTimeSource) -> &mut Self
Set the time source for this cache.
sourcepub fn sleep_impl(self, sleep_impl: impl AsyncSleep + 'static) -> Self
pub fn sleep_impl(self, sleep_impl: impl AsyncSleep + 'static) -> Self
Set the async sleep implementation for this cache.
sourcepub fn set_sleep_impl(&mut self, sleep_impl: SharedAsyncSleep) -> &mut Self
pub fn set_sleep_impl(&mut self, sleep_impl: SharedAsyncSleep) -> &mut Self
Set the async sleep implementation for this cache.
sourcepub fn load_timeout(self, timeout: Duration) -> Self
pub fn load_timeout(self, timeout: Duration) -> Self
Timeout for identity resolution.
Defaults to 5 seconds.
sourcepub fn set_load_timeout(&mut self, timeout: Option<Duration>) -> &mut Self
pub fn set_load_timeout(&mut self, timeout: Option<Duration>) -> &mut Self
Timeout for identity resolution.
Defaults to 5 seconds.
sourcepub fn buffer_time(self, buffer_time: Duration) -> Self
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.
sourcepub fn set_buffer_time(&mut self, buffer_time: Option<Duration>) -> &mut Self
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.
sourcepub fn default_expiration(self, duration: Duration) -> Self
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.
sourcepub fn set_default_expiration(
&mut self,
duration: Option<Duration>,
) -> &mut Self
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.
sourcepub fn build(self) -> SharedIdentityCache
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.