Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Environment

import type { Environment } from "https://aws-api.deno.dev/v0.4/services/cloud9.ts?docs=full";

Information about an Cloud9 development environment.

interface Environment {
arn: string;
connectionType?: ConnectionType | null;
description?: string | null;
id?: string | null;
lifecycle?: EnvironmentLifecycle | null;
managedCredentialsStatus?: ManagedCredentialsStatus | null;
name?: string | null;
ownerArn: string;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the environment.

§
connectionType?: ConnectionType | null
[src]

The connection type used for connecting to an Amazon EC2 environment. CONNECT_SSH is selected by default.

§
description?: string | null
[src]

The description for the environment.

§
id?: string | null
[src]

The ID of the environment.

§
lifecycle?: EnvironmentLifecycle | null
[src]

The state of the environment in its creation or deletion lifecycle.

§
managedCredentialsStatus?: ManagedCredentialsStatus | null
[src]

Describes the status of Amazon Web Services managed temporary credentials for the Cloud9 environment. Available values are:

  • ENABLED_ON_CREATE
    
  • ENABLED_BY_OWNER
    
  • DISABLED_BY_DEFAULT
    
  • DISABLED_BY_OWNER
    
  • DISABLED_BY_COLLABORATOR
    
  • PENDING_REMOVAL_BY_COLLABORATOR
    
  • PENDING_REMOVAL_BY_OWNER
    
  • FAILED_REMOVAL_BY_COLLABORATOR
    
  • ENABLED_BY_OWNER
    
  • DISABLED_BY_DEFAULT
    
§
name?: string | null
[src]

The name of the environment.

§
ownerArn: string
[src]

The Amazon Resource Name (ARN) of the environment owner.

§

The type of environment. Valid values include the following:

  • ec2: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment.
  • ssh: Your own server connects to the environment.