Struct aws_runtime::auth::SigV4SessionTokenNameOverride
source · pub struct SigV4SessionTokenNameOverride { /* private fields */ }
Expand description
Custom config that provides the alternative session token name for SigningSettings
Implementations§
source§impl SigV4SessionTokenNameOverride
impl SigV4SessionTokenNameOverride
sourcepub fn name_override(
&self,
settings: &SigningSettings,
config_bag: &ConfigBag,
) -> Result<Option<&'static str>, BoxError>
pub fn name_override( &self, settings: &SigningSettings, config_bag: &ConfigBag, ) -> Result<Option<&'static str>, BoxError>
Provides a session token name override
Trait Implementations§
source§impl Storable for SigV4SessionTokenNameOverride
impl Storable for SigV4SessionTokenNameOverride
source§type Storer = StoreReplace<SigV4SessionTokenNameOverride>
type Storer = StoreReplace<SigV4SessionTokenNameOverride>
Specify how an item is stored in the config bag, e.g.
StoreReplace
and StoreAppend
Auto Trait Implementations§
impl Freeze for SigV4SessionTokenNameOverride
impl !RefUnwindSafe for SigV4SessionTokenNameOverride
impl Send for SigV4SessionTokenNameOverride
impl Sync for SigV4SessionTokenNameOverride
impl Unpin for SigV4SessionTokenNameOverride
impl !UnwindSafe for SigV4SessionTokenNameOverride
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
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>
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 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>
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 moreCreates a shared type from an unshared type.