pub struct AwsIamConfig {
pub signing_region: Option<String>,
pub signing_service_name: Option<String>,
}
Expand description
The AWS IAM configuration.
Fields§
§signing_region: Option<String>
The signing region for AWS IAM authorization.
signing_service_name: Option<String>
The signing service name for AWS IAM authorization.
Trait Implementations§
Source§impl Clone for AwsIamConfig
impl Clone for AwsIamConfig
Source§fn clone(&self) -> AwsIamConfig
fn clone(&self) -> AwsIamConfig
Returns a duplicate 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 Debug for AwsIamConfig
impl Debug for AwsIamConfig
Source§impl Default for AwsIamConfig
impl Default for AwsIamConfig
Source§fn default() -> AwsIamConfig
fn default() -> AwsIamConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsIamConfig
impl<'de> Deserialize<'de> for AwsIamConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsIamConfig
impl PartialEq for AwsIamConfig
Source§impl Serialize for AwsIamConfig
impl Serialize for AwsIamConfig
impl StructuralPartialEq for AwsIamConfig
Auto Trait Implementations§
impl Freeze for AwsIamConfig
impl RefUnwindSafe for AwsIamConfig
impl Send for AwsIamConfig
impl Sync for AwsIamConfig
impl Unpin for AwsIamConfig
impl UnwindSafe for AwsIamConfig
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