Struct aws_sdk_cloud9::input::UpdateEnvironmentInput [−][src]
#[non_exhaustive]pub struct UpdateEnvironmentInput {
pub environment_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub managed_credentials_action: Option<ManagedCredentialsAction>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.environment_id: Option<String>
The ID of the environment to change settings.
name: Option<String>
A replacement name for the environment.
description: Option<String>
Any new or replacement description for the environment.
managed_credentials_action: Option<ManagedCredentialsAction>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironment, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateEnvironment, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateEnvironment
>
Creates a new builder-style object to manufacture UpdateEnvironmentInput
The ID of the environment to change settings.
Any new or replacement description for the environment.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateEnvironmentInput
impl Send for UpdateEnvironmentInput
impl Sync for UpdateEnvironmentInput
impl Unpin for UpdateEnvironmentInput
impl UnwindSafe for UpdateEnvironmentInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more