Struct aws_sdk_grafana::operation::update_workspace_authentication::builders::UpdateWorkspaceAuthenticationFluentBuilder
source · pub struct UpdateWorkspaceAuthenticationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateWorkspaceAuthentication
.
Use this operation to define the identity provider (IdP) that this workspace authenticates users from, using SAML. You can also 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.
Changes to the authentication method for a workspace may take a few minutes to take effect.
Implementations§
source§impl UpdateWorkspaceAuthenticationFluentBuilder
impl UpdateWorkspaceAuthenticationFluentBuilder
sourcepub fn as_input(&self) -> &UpdateWorkspaceAuthenticationInputBuilder
pub fn as_input(&self) -> &UpdateWorkspaceAuthenticationInputBuilder
Access the UpdateWorkspaceAuthentication as a reference.
sourcepub async fn send(
self
) -> Result<UpdateWorkspaceAuthenticationOutput, SdkError<UpdateWorkspaceAuthenticationError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateWorkspaceAuthenticationOutput, SdkError<UpdateWorkspaceAuthenticationError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateWorkspaceAuthenticationOutput, UpdateWorkspaceAuthenticationError>, SdkError<UpdateWorkspaceAuthenticationError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateWorkspaceAuthenticationOutput, UpdateWorkspaceAuthenticationError>, SdkError<UpdateWorkspaceAuthenticationError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace to update the authentication for.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace to update the authentication for.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace to update the authentication for.
sourcepub fn authentication_providers(
self,
input: AuthenticationProviderTypes
) -> Self
pub fn authentication_providers( self, input: AuthenticationProviderTypes ) -> Self
Appends an item to authenticationProviders
.
To override the contents of this collection use set_authentication_providers
.
Specifies whether this workspace uses SAML 2.0, IAM Identity Center (successor to 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 set_authentication_providers(
self,
input: Option<Vec<AuthenticationProviderTypes>>
) -> Self
pub fn set_authentication_providers( self, input: Option<Vec<AuthenticationProviderTypes>> ) -> Self
Specifies whether this workspace uses SAML 2.0, IAM Identity Center (successor to 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 get_authentication_providers(
&self
) -> &Option<Vec<AuthenticationProviderTypes>>
pub fn get_authentication_providers( &self ) -> &Option<Vec<AuthenticationProviderTypes>>
Specifies whether this workspace uses SAML 2.0, IAM Identity Center (successor to 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, input: SamlConfiguration) -> Self
pub fn saml_configuration(self, input: SamlConfiguration) -> Self
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.
sourcepub fn set_saml_configuration(self, input: Option<SamlConfiguration>) -> Self
pub fn set_saml_configuration(self, input: Option<SamlConfiguration>) -> Self
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.
sourcepub fn get_saml_configuration(&self) -> &Option<SamlConfiguration>
pub fn get_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§
source§impl Clone for UpdateWorkspaceAuthenticationFluentBuilder
impl Clone for UpdateWorkspaceAuthenticationFluentBuilder
source§fn clone(&self) -> UpdateWorkspaceAuthenticationFluentBuilder
fn clone(&self) -> UpdateWorkspaceAuthenticationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more