Struct aws_sdk_grafana::types::AssertionAttributes
source · #[non_exhaustive]pub struct AssertionAttributes { /* private fields */ }Expand description
A structure that defines which attributes in the IdP assertion are to be used to define information about the users authenticated by the IdP to use the workspace.
Implementations§
source§impl AssertionAttributes
impl AssertionAttributes
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users.
sourcepub fn login(&self) -> Option<&str>
pub fn login(&self) -> Option<&str>
The name of the attribute within the SAML assertion to use as the login names for SAML users.
sourcepub fn email(&self) -> Option<&str>
pub fn email(&self) -> Option<&str>
The name of the attribute within the SAML assertion to use as the email names for SAML users.
sourcepub fn groups(&self) -> Option<&str>
pub fn groups(&self) -> Option<&str>
The name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups.
source§impl AssertionAttributes
impl AssertionAttributes
sourcepub fn builder() -> AssertionAttributesBuilder
pub fn builder() -> AssertionAttributesBuilder
Creates a new builder-style object to manufacture AssertionAttributes.
Trait Implementations§
source§impl Clone for AssertionAttributes
impl Clone for AssertionAttributes
source§fn clone(&self) -> AssertionAttributes
fn clone(&self) -> AssertionAttributes
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 AssertionAttributes
impl Debug for AssertionAttributes
source§impl PartialEq<AssertionAttributes> for AssertionAttributes
impl PartialEq<AssertionAttributes> for AssertionAttributes
source§fn eq(&self, other: &AssertionAttributes) -> bool
fn eq(&self, other: &AssertionAttributes) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssertionAttributes
Auto Trait Implementations§
impl RefUnwindSafe for AssertionAttributes
impl Send for AssertionAttributes
impl Sync for AssertionAttributes
impl Unpin for AssertionAttributes
impl UnwindSafe for AssertionAttributes
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