Struct aws_sdk_finspace::client::fluent_builders::UpdateEnvironment
source · pub struct UpdateEnvironment { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateEnvironment.
Update your FinSpace environment.
Implementations§
source§impl UpdateEnvironment
impl UpdateEnvironment
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateEnvironment, AwsResponseRetryClassifier>, SdkError<UpdateEnvironmentError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateEnvironment, AwsResponseRetryClassifier>, SdkError<UpdateEnvironmentError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateEnvironmentOutput, SdkError<UpdateEnvironmentError>>
pub async fn send(
self
) -> Result<UpdateEnvironmentOutput, SdkError<UpdateEnvironmentError>>
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 fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
The identifier of the FinSpace environment.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
The identifier of the FinSpace environment.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the environment.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the environment.
sourcepub fn federation_mode(self, input: FederationMode) -> Self
pub fn federation_mode(self, input: FederationMode) -> Self
Authentication mode for the environment.
-
FEDERATED- Users access FinSpace through Single Sign On (SSO) via your Identity provider. -
LOCAL- Users access FinSpace via email and password managed within the FinSpace environment.
sourcepub fn set_federation_mode(self, input: Option<FederationMode>) -> Self
pub fn set_federation_mode(self, input: Option<FederationMode>) -> Self
Authentication mode for the environment.
-
FEDERATED- Users access FinSpace through Single Sign On (SSO) via your Identity provider. -
LOCAL- Users access FinSpace via email and password managed within the FinSpace environment.
sourcepub fn federation_parameters(self, input: FederationParameters) -> Self
pub fn federation_parameters(self, input: FederationParameters) -> Self
Configuration information when authentication mode is FEDERATED.
sourcepub fn set_federation_parameters(
self,
input: Option<FederationParameters>
) -> Self
pub fn set_federation_parameters(
self,
input: Option<FederationParameters>
) -> Self
Configuration information when authentication mode is FEDERATED.
Trait Implementations§
source§impl Clone for UpdateEnvironment
impl Clone for UpdateEnvironment
source§fn clone(&self) -> UpdateEnvironment
fn clone(&self) -> UpdateEnvironment
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more