Struct aws_sig_auth::signer::OperationSigningConfig
source · #[non_exhaustive]pub struct OperationSigningConfig {
pub algorithm: SigningAlgorithm,
pub signature_type: HttpSignatureType,
pub signing_options: SigningOptions,
pub signing_requirements: SigningRequirements,
pub expires_in: Option<Duration>,
}
Expand description
Signing Configuration for an Operation
Although these fields MAY be customized on a per request basis, they are generally static for a given operation
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.algorithm: SigningAlgorithm
§signature_type: HttpSignatureType
§signing_options: SigningOptions
§signing_requirements: SigningRequirements
§expires_in: Option<Duration>
Implementations§
source§impl OperationSigningConfig
impl OperationSigningConfig
sourcepub fn default_config() -> Self
pub fn default_config() -> Self
Placeholder method to provide a the signing configuration used for most operation
In the future, we will code-generate a default configuration for each service
Trait Implementations§
source§impl Clone for OperationSigningConfig
impl Clone for OperationSigningConfig
source§fn clone(&self) -> OperationSigningConfig
fn clone(&self) -> OperationSigningConfig
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 PartialEq for OperationSigningConfig
impl PartialEq for OperationSigningConfig
source§fn eq(&self, other: &OperationSigningConfig) -> bool
fn eq(&self, other: &OperationSigningConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OperationSigningConfig
impl StructuralEq for OperationSigningConfig
impl StructuralPartialEq for OperationSigningConfig
Auto Trait Implementations§
impl RefUnwindSafe for OperationSigningConfig
impl Send for OperationSigningConfig
impl Sync for OperationSigningConfig
impl Unpin for OperationSigningConfig
impl UnwindSafe for OperationSigningConfig
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.