Struct aws_sdk_cloud9::client::fluent_builders::UpdateEnvironment
source · pub struct UpdateEnvironment { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateEnvironment
.
Changes the settings of an existing Cloud9 development 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 ID of the environment to change settings.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
The ID of the environment to change settings.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Any new or replacement description for the environment.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Any new or replacement description for the environment.
sourcepub fn managed_credentials_action(self, input: ManagedCredentialsAction) -> Self
pub fn managed_credentials_action(self, input: ManagedCredentialsAction) -> Self
Allows the environment owner to turn on or turn off the Amazon Web Services managed temporary credentials for an Cloud9 environment by using one of the following values:
-
ENABLE
-
DISABLE
Only the environment owner can change the status of managed temporary credentials. An AccessDeniedException
is thrown if an attempt to turn on or turn off managed temporary credentials is made by an account that's not the environment owner.
sourcepub fn set_managed_credentials_action(
self,
input: Option<ManagedCredentialsAction>
) -> Self
pub fn set_managed_credentials_action(
self,
input: Option<ManagedCredentialsAction>
) -> Self
Allows the environment owner to turn on or turn off the Amazon Web Services managed temporary credentials for an Cloud9 environment by using one of the following values:
-
ENABLE
-
DISABLE
Only the environment owner can change the status of managed temporary credentials. An AccessDeniedException
is thrown if an attempt to turn on or turn off managed temporary credentials is made by an account that's not the environment owner.
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