#[non_exhaustive]pub struct UpdateWorkspaceAuthenticationInput { /* private fields */ }
Implementations
sourceimpl UpdateWorkspaceAuthenticationInput
impl UpdateWorkspaceAuthenticationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateWorkspaceAuthentication, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateWorkspaceAuthentication, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateWorkspaceAuthentication
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateWorkspaceAuthenticationInput
.
sourceimpl UpdateWorkspaceAuthenticationInput
impl UpdateWorkspaceAuthenticationInput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace to update the authentication for.
sourcepub fn authentication_providers(&self) -> Option<&[AuthenticationProviderTypes]>
pub fn authentication_providers(&self) -> Option<&[AuthenticationProviderTypes]>
Specifies whether this workspace uses SAML 2.0, Amazon Web Services Single Sign On, or both to authenticate users for using the Grafana console within a workspace. For more information, see User authentication in Amazon Managed Grafana.
sourcepub fn saml_configuration(&self) -> Option<&SamlConfiguration>
pub fn saml_configuration(&self) -> Option<&SamlConfiguration>
If the workspace uses SAML, use this structure to map SAML assertion attributes to workspace user information and define which groups in the assertion attribute are to have the Admin
and Editor
roles in the workspace.
Trait Implementations
sourceimpl Clone for UpdateWorkspaceAuthenticationInput
impl Clone for UpdateWorkspaceAuthenticationInput
sourcefn clone(&self) -> UpdateWorkspaceAuthenticationInput
fn clone(&self) -> UpdateWorkspaceAuthenticationInput
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 PartialEq<UpdateWorkspaceAuthenticationInput> for UpdateWorkspaceAuthenticationInput
impl PartialEq<UpdateWorkspaceAuthenticationInput> for UpdateWorkspaceAuthenticationInput
sourcefn eq(&self, other: &UpdateWorkspaceAuthenticationInput) -> bool
fn eq(&self, other: &UpdateWorkspaceAuthenticationInput) -> bool
impl StructuralPartialEq for UpdateWorkspaceAuthenticationInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateWorkspaceAuthenticationInput
impl Send for UpdateWorkspaceAuthenticationInput
impl Sync for UpdateWorkspaceAuthenticationInput
impl Unpin for UpdateWorkspaceAuthenticationInput
impl UnwindSafe for UpdateWorkspaceAuthenticationInput
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