Update Environment
cloud9_update_environment | R Documentation |
Changes the settings of an existing Cloud9 development environment¶
Description¶
Changes the settings of an existing Cloud9 development environment.
Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"
Usage¶
cloud9_update_environment(environmentId, name, description,
managedCredentialsAction)
Arguments¶
environmentId |
[required] The ID of the environment to change settings. |
name |
A replacement name for the environment. |
description |
Any new or replacement description for the environment. |
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:
Only the environment owner can change the status of managed temporary
credentials. An |
Value¶
An empty list.
Request syntax¶
svc$update_environment(
environmentId = "string",
name = "string",
description = "string",
managedCredentialsAction = "ENABLE"|"DISABLE"
)
Examples¶
## Not run:
#
svc$update_environment(
name = "my-changed-demo-environment",
description = "This is my changed demonstration environment.",
environmentId = "8d9967e2f0624182b74e7690ad69ebEX"
)
## End(Not run)