Struct aws_sdk_grafana::types::AuthenticationDescription
source · #[non_exhaustive]pub struct AuthenticationDescription { /* private fields */ }
Expand description
A structure containing information about the user authentication methods used by the workspace.
Implementations§
source§impl AuthenticationDescription
impl AuthenticationDescription
sourcepub fn providers(&self) -> Option<&[AuthenticationProviderTypes]>
pub fn providers(&self) -> Option<&[AuthenticationProviderTypes]>
Specifies whether this workspace uses IAM Identity Center, SAML, or both methods to authenticate users to use the Grafana console in the Amazon Managed Grafana workspace.
sourcepub fn saml(&self) -> Option<&SamlAuthentication>
pub fn saml(&self) -> Option<&SamlAuthentication>
A structure containing information about how this workspace works with SAML, including what attributes within the assertion are to be mapped to user information in the workspace.
sourcepub fn aws_sso(&self) -> Option<&AwsSsoAuthentication>
pub fn aws_sso(&self) -> Option<&AwsSsoAuthentication>
A structure containing information about how this workspace works with IAM Identity Center.
source§impl AuthenticationDescription
impl AuthenticationDescription
sourcepub fn builder() -> AuthenticationDescriptionBuilder
pub fn builder() -> AuthenticationDescriptionBuilder
Creates a new builder-style object to manufacture AuthenticationDescription
.
Trait Implementations§
source§impl Clone for AuthenticationDescription
impl Clone for AuthenticationDescription
source§fn clone(&self) -> AuthenticationDescription
fn clone(&self) -> AuthenticationDescription
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 AuthenticationDescription
impl Debug for AuthenticationDescription
source§impl PartialEq<AuthenticationDescription> for AuthenticationDescription
impl PartialEq<AuthenticationDescription> for AuthenticationDescription
source§fn eq(&self, other: &AuthenticationDescription) -> bool
fn eq(&self, other: &AuthenticationDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.