Struct aws_sdk_grafana::model::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
sourceimpl 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.
sourceimpl AssertionAttributes
impl AssertionAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AssertionAttributes
.
Trait Implementations
sourceimpl Clone for AssertionAttributes
impl Clone for AssertionAttributes
sourcefn clone(&self) -> AssertionAttributes
fn clone(&self) -> AssertionAttributes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AssertionAttributes
impl Debug for AssertionAttributes
sourceimpl PartialEq<AssertionAttributes> for AssertionAttributes
impl PartialEq<AssertionAttributes> for AssertionAttributes
sourcefn eq(&self, other: &AssertionAttributes) -> bool
fn eq(&self, other: &AssertionAttributes) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more