Struct aws_sdk_appsync::types::AwsIamConfig
source · #[non_exhaustive]pub struct AwsIamConfig {
pub signing_region: Option<String>,
pub signing_service_name: Option<String>,
}
Expand description
The Identity and Access Management (IAM) configuration.
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.signing_region: Option<String>
The signing Amazon Web Services Region for IAM authorization.
signing_service_name: Option<String>
The signing service name for IAM authorization.
Implementations§
source§impl AwsIamConfig
impl AwsIamConfig
sourcepub fn signing_region(&self) -> Option<&str>
pub fn signing_region(&self) -> Option<&str>
The signing Amazon Web Services Region for IAM authorization.
sourcepub fn signing_service_name(&self) -> Option<&str>
pub fn signing_service_name(&self) -> Option<&str>
The signing service name for IAM authorization.
source§impl AwsIamConfig
impl AwsIamConfig
sourcepub fn builder() -> AwsIamConfigBuilder
pub fn builder() -> AwsIamConfigBuilder
Creates a new builder-style object to manufacture AwsIamConfig
.
Trait Implementations§
source§impl Clone for AwsIamConfig
impl Clone for AwsIamConfig
source§fn clone(&self) -> AwsIamConfig
fn clone(&self) -> AwsIamConfig
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 Debug for AwsIamConfig
impl Debug for AwsIamConfig
source§impl PartialEq for AwsIamConfig
impl PartialEq for AwsIamConfig
source§fn eq(&self, other: &AwsIamConfig) -> bool
fn eq(&self, other: &AwsIamConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsIamConfig
Auto Trait Implementations§
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
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>
Creates a shared type from an unshared type.