Struct aws_sdk_finspace::operation::update_environment::builders::UpdateEnvironmentFluentBuilder
source ยท pub struct UpdateEnvironmentFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateEnvironment.
Update your FinSpace environment.
Implementationsยง
sourceยงimpl UpdateEnvironmentFluentBuilder
impl UpdateEnvironmentFluentBuilder
sourcepub fn as_input(&self) -> &UpdateEnvironmentInputBuilder
pub fn as_input(&self) -> &UpdateEnvironmentInputBuilder
Access the UpdateEnvironment as a reference.
sourcepub async fn send(
self
) -> Result<UpdateEnvironmentOutput, SdkError<UpdateEnvironmentError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateEnvironmentOutput, SdkError<UpdateEnvironmentError, 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 fn customize(
self
) -> CustomizableOperation<UpdateEnvironmentOutput, UpdateEnvironmentError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateEnvironmentOutput, UpdateEnvironmentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
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 get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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 get_federation_mode(&self) -> &Option<FederationMode>
pub fn get_federation_mode(&self) -> &Option<FederationMode>
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.
sourcepub fn get_federation_parameters(&self) -> &Option<FederationParameters>
pub fn get_federation_parameters(&self) -> &Option<FederationParameters>
Configuration information when authentication mode is FEDERATED.
Trait Implementationsยง
sourceยงimpl Clone for UpdateEnvironmentFluentBuilder
impl Clone for UpdateEnvironmentFluentBuilder
sourceยงfn clone(&self) -> UpdateEnvironmentFluentBuilder
fn clone(&self) -> UpdateEnvironmentFluentBuilder
1.0.0 ยท sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementationsยง
impl Freeze for UpdateEnvironmentFluentBuilder
impl !RefUnwindSafe for UpdateEnvironmentFluentBuilder
impl Send for UpdateEnvironmentFluentBuilder
impl Sync for UpdateEnvironmentFluentBuilder
impl Unpin for UpdateEnvironmentFluentBuilder
impl !UnwindSafe for UpdateEnvironmentFluentBuilder
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
sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more