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§
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() -> Builder
pub fn builder() -> Builder
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 ==
.