Describe Environments
cloud9_describe_environments | R Documentation |
Gets information about Cloud9 development environments¶
Description¶
Gets information about Cloud9 development environments.
Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"
Usage¶
Arguments¶
environmentIds
[required] The IDs of individual environments to get information about.
Value¶
A list with the following syntax:
list(
environments = list(
list(
id = "string",
name = "string",
description = "string",
type = "ssh"|"ec2",
connectionType = "CONNECT_SSH"|"CONNECT_SSM",
arn = "string",
ownerArn = "string",
lifecycle = list(
status = "CREATING"|"CREATED"|"CREATE_FAILED"|"DELETING"|"DELETE_FAILED",
reason = "string",
failureResource = "string"
),
managedCredentialsStatus = "ENABLED_ON_CREATE"|"ENABLED_BY_OWNER"|"DISABLED_BY_DEFAULT"|"DISABLED_BY_OWNER"|"DISABLED_BY_COLLABORATOR"|"PENDING_REMOVAL_BY_COLLABORATOR"|"PENDING_START_REMOVAL_BY_COLLABORATOR"|"PENDING_REMOVAL_BY_OWNER"|"PENDING_START_REMOVAL_BY_OWNER"|"FAILED_REMOVAL_BY_COLLABORATOR"|"FAILED_REMOVAL_BY_OWNER"
)
)
)