Struct aws_sdk_grafana::types::AuthenticationSummary
source · #[non_exhaustive]pub struct AuthenticationSummary {
pub providers: Option<Vec<AuthenticationProviderTypes>>,
pub saml_configuration_status: Option<SamlConfigurationStatus>,
}
Expand description
A structure that describes whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication, and whether that authentication is fully configured.
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.providers: Option<Vec<AuthenticationProviderTypes>>
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
saml_configuration_status: Option<SamlConfigurationStatus>
Specifies whether the workplace's user authentication method is fully configured.
Implementations§
source§impl AuthenticationSummary
impl AuthenticationSummary
sourcepub fn providers(&self) -> Option<&[AuthenticationProviderTypes]>
pub fn providers(&self) -> Option<&[AuthenticationProviderTypes]>
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
sourcepub fn saml_configuration_status(&self) -> Option<&SamlConfigurationStatus>
pub fn saml_configuration_status(&self) -> Option<&SamlConfigurationStatus>
Specifies whether the workplace's user authentication method is fully configured.
source§impl AuthenticationSummary
impl AuthenticationSummary
sourcepub fn builder() -> AuthenticationSummaryBuilder
pub fn builder() -> AuthenticationSummaryBuilder
Creates a new builder-style object to manufacture AuthenticationSummary
.
Trait Implementations§
source§impl Clone for AuthenticationSummary
impl Clone for AuthenticationSummary
source§fn clone(&self) -> AuthenticationSummary
fn clone(&self) -> AuthenticationSummary
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 AuthenticationSummary
impl Debug for AuthenticationSummary
source§impl PartialEq<AuthenticationSummary> for AuthenticationSummary
impl PartialEq<AuthenticationSummary> for AuthenticationSummary
source§fn eq(&self, other: &AuthenticationSummary) -> bool
fn eq(&self, other: &AuthenticationSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthenticationSummary
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationSummary
impl Send for AuthenticationSummary
impl Sync for AuthenticationSummary
impl Unpin for AuthenticationSummary
impl UnwindSafe for AuthenticationSummary
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